diff --git a/Cargo.toml b/Cargo.toml index 424d03b..c53446b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ exclude = ["rust-mc-bot", "tools/stresser", "tools/packet_inspector"] resolver = "2" [workspace.package] -version = "0.2.0-dev+mc.1.19.4" +version = "0.2.0-dev+mc.1.20.1" edition = "2021" repository = "https://github.com/valence-rs/valence" documentation = "https://docs.rs/valence/" diff --git a/crates/valence/benches/packet.rs b/crates/valence/benches/packet.rs index 30cdc6d..32c9b4b 100644 --- a/crates/valence/benches/packet.rs +++ b/crates/valence/benches/packet.rs @@ -28,7 +28,6 @@ pub fn packet(c: &mut Criterion) { }), blocks_and_biomes: BLOCKS_AND_BIOMES.as_slice(), block_entities: Cow::Borrowed(&[]), - trust_edges: false, sky_light_mask: Cow::Borrowed(&[]), block_light_mask: Cow::Borrowed(&[]), empty_sky_light_mask: Cow::Borrowed(&[]), diff --git a/crates/valence/examples/death.rs b/crates/valence/examples/death.rs index 3fa5e7e..6213010 100644 --- a/crates/valence/examples/death.rs +++ b/crates/valence/examples/death.rs @@ -68,7 +68,7 @@ fn squat_and_die(mut clients: Query<&mut Client>, mut events: EventReader UpdateAdvancementCachedBytesQuery<'w, 's> { display_data: None, criteria: vec![], requirements: vec![], + sends_telemetry_data: false, }; if let Some(a_parent) = a_parent { diff --git a/crates/valence_advancement/src/packet.rs b/crates/valence_advancement/src/packet.rs index cb58fd5..e782e49 100644 --- a/crates/valence_advancement/src/packet.rs +++ b/crates/valence_advancement/src/packet.rs @@ -25,6 +25,7 @@ pub struct Advancement<'a, I> { pub display_data: Option>, pub criteria: Vec<(Ident>, ())>, pub requirements: Vec>, + pub sends_telemetry_data: bool, } #[derive(Clone, PartialEq, Eq, Debug, Encode, Decode)] diff --git a/crates/valence_client/src/lib.rs b/crates/valence_client/src/lib.rs index caebc3f..c06f036 100644 --- a/crates/valence_client/src/lib.rs +++ b/crates/valence_client/src/lib.rs @@ -330,10 +330,9 @@ impl Client { /// Kills the client and shows `message` on the death screen. If an entity /// killed the player, you should supply it as `killer`. - pub fn kill(&mut self, killer: Option, message: impl Into) { + pub fn kill(&mut self, message: impl Into) { self.write_packet(&DeathMessageS2c { player_id: VarInt(0), - entity_id: killer.map(|id| id.get()).unwrap_or(-1), message: message.into().into(), }); } @@ -725,6 +724,7 @@ fn initial_join( is_debug: q.is_debug.0, is_flat: q.is_flat.0, last_death_location, + portal_cooldown: VarInt(0), // TODO. }); q.client.enc.append_bytes(tags.sync_tags_packet()); @@ -785,6 +785,7 @@ fn respawn( is_flat: is_flat.0, copy_metadata: true, last_death_location, + portal_cooldown: VarInt(0), // TODO }); } } diff --git a/crates/valence_client/src/packet.rs b/crates/valence_client/src/packet.rs index ffa0e6e..989826f 100644 --- a/crates/valence_client/src/packet.rs +++ b/crates/valence_client/src/packet.rs @@ -179,6 +179,7 @@ pub enum UpdatePlayerAbilitiesC2s { #[packet(id = packet_id::UPDATE_SIGN_C2S)] pub struct UpdateSignC2s<'a> { pub position: BlockPos, + pub is_front_text: bool, pub lines: [&'a str; 4], } @@ -249,8 +250,6 @@ pub mod structure_block { #[packet(id = packet_id::DEATH_MESSAGE_S2C)] pub struct DeathMessageS2c<'a> { pub player_id: VarInt, - /// Killer's entity ID, -1 if no killer - pub entity_id: i32, pub message: Cow<'a, Text>, } @@ -286,7 +285,6 @@ pub struct EnterCombatS2c; #[packet(id = packet_id::END_COMBAT_S2C)] pub struct EndCombatS2c { pub duration: VarInt, - pub entity_id: i32, } #[derive(Copy, Clone, Debug, Encode, Decode, Packet)] @@ -324,6 +322,7 @@ pub struct GameJoinS2c<'a> { pub is_debug: bool, pub is_flat: bool, pub last_death_location: Option>, + pub portal_cooldown: VarInt, } #[derive(Copy, Clone, Debug, Encode, Decode, Packet)] @@ -388,6 +387,7 @@ pub struct PlayerRespawnS2c<'a> { pub is_flat: bool, pub copy_metadata: bool, pub last_death_location: Option>, + pub portal_cooldown: VarInt, } #[derive(Copy, Clone, Debug, Encode, Decode, Packet)] diff --git a/crates/valence_core/src/lib.rs b/crates/valence_core/src/lib.rs index 85e3ff9..dddb56d 100644 --- a/crates/valence_core/src/lib.rs +++ b/crates/valence_core/src/lib.rs @@ -59,11 +59,11 @@ pub mod __private { extern crate self as valence_core; /// The Minecraft protocol version this library currently targets. -pub const PROTOCOL_VERSION: i32 = 762; +pub const PROTOCOL_VERSION: i32 = 763; /// The stringified name of the Minecraft version this library currently /// targets. -pub const MINECRAFT_VERSION: &str = "1.19.4"; +pub const MINECRAFT_VERSION: &str = "1.20.1"; /// Minecraft's standard ticks per second (TPS). pub const DEFAULT_TPS: NonZeroU32 = match NonZeroU32::new(20) { diff --git a/crates/valence_entity/build.rs b/crates/valence_entity/build.rs index 09ac95c..80ae7d6 100644 --- a/crates/valence_entity/build.rs +++ b/crates/valence_entity/build.rs @@ -170,7 +170,7 @@ impl Value { quote!(None) } Value::ItemStack(stack) => { - assert_eq!(stack, "1 air"); + assert_eq!(stack, "0 air"); quote!(valence_core::item::ItemStack::default()) } Value::Boolean(b) => quote!(#b), diff --git a/crates/valence_instance/src/chunk.rs b/crates/valence_instance/src/chunk.rs index 4e364a1..49a30de 100644 --- a/crates/valence_instance/src/chunk.rs +++ b/crates/valence_instance/src/chunk.rs @@ -357,7 +357,6 @@ impl Chunk { writer.write_packet(&ChunkDeltaUpdateS2c { chunk_section_position, - invert_trust_edges: false, blocks: Cow::Borrowed(§.section_updates), }); } @@ -457,7 +456,6 @@ impl Chunk { heightmaps: Cow::Owned(heightmaps), blocks_and_biomes: scratch, block_entities: Cow::Borrowed(&block_entities), - trust_edges: true, sky_light_mask: Cow::Borrowed(&info.filler_sky_light_mask), block_light_mask: Cow::Borrowed(&[]), empty_sky_light_mask: Cow::Borrowed(&[]), diff --git a/crates/valence_instance/src/packet.rs b/crates/valence_instance/src/packet.rs index d9b8bef..6cc8f70 100644 --- a/crates/valence_instance/src/packet.rs +++ b/crates/valence_instance/src/packet.rs @@ -95,7 +95,6 @@ pub struct ChunkDataS2c<'a> { pub heightmaps: Cow<'a, Compound>, pub blocks_and_biomes: &'a [u8], pub block_entities: Cow<'a, [ChunkDataBlockEntity<'a>]>, - pub trust_edges: bool, pub sky_light_mask: Cow<'a, [u64]>, pub block_light_mask: Cow<'a, [u64]>, pub empty_sky_light_mask: Cow<'a, [u64]>, @@ -116,7 +115,6 @@ pub struct ChunkDataBlockEntity<'a> { #[packet(id = packet_id::CHUNK_DELTA_UPDATE_S2C)] pub struct ChunkDeltaUpdateS2c<'a> { pub chunk_section_position: i64, - pub invert_trust_edges: bool, pub blocks: Cow<'a, [VarLong]>, } @@ -144,7 +142,6 @@ pub struct ChunkRenderDistanceCenterS2c { pub struct LightUpdateS2c { pub chunk_x: VarInt, pub chunk_z: VarInt, - pub trust_edges: bool, pub sky_light_mask: Vec, pub block_light_mask: Vec, pub empty_sky_light_mask: Vec, diff --git a/crates/valence_inventory/src/packet.rs b/crates/valence_inventory/src/packet.rs index 19f38a3..56f80b4 100644 --- a/crates/valence_inventory/src/packet.rs +++ b/crates/valence_inventory/src/packet.rs @@ -395,12 +395,19 @@ pub mod synchronize_recipes { ingredient: Ingredient, result: Option, }, - Smithing { + SmithingTransform { recipe_id: Ident>, + template: Ingredient, base: Ingredient, addition: Ingredient, result: Option, }, + SmithingTrim { + recipe_id: Ident>, + template: Ingredient, + base: Ingredient, + addition: Ingredient, + }, } #[derive(Copy, Clone, PartialEq, Eq, Debug)] @@ -600,17 +607,31 @@ pub mod synchronize_recipes { ingredient.encode(&mut w)?; result.encode(w) } - Recipe::Smithing { + Recipe::SmithingTransform { recipe_id, + template, base, addition, result, } => { - "smithing".encode(&mut w)?; + "smithing_transform".encode(&mut w)?; recipe_id.encode(&mut w)?; + template.encode(&mut w)?; base.encode(&mut w)?; addition.encode(&mut w)?; - result.encode(w) + result.encode(&mut w) + } + Recipe::SmithingTrim { + recipe_id, + template, + base, + addition, + } => { + "smithing_trim".encode(&mut w)?; + recipe_id.encode(&mut w)?; + template.encode(&mut w)?; + base.encode(&mut w)?; + addition.encode(&mut w) } } } @@ -690,12 +711,19 @@ pub mod synchronize_recipes { ingredient: Decode::decode(r)?, result: Decode::decode(r)?, }, - "minecraft:smithing" => Self::Smithing { + "minecraft:smithing_transform" => Self::SmithingTransform { recipe_id: Decode::decode(r)?, + template: Decode::decode(r)?, base: Decode::decode(r)?, addition: Decode::decode(r)?, result: Decode::decode(r)?, }, + "minecraft:smithing_trim" => Self::SmithingTrim { + recipe_id: Decode::decode(r)?, + template: Decode::decode(r)?, + base: Decode::decode(r)?, + addition: Decode::decode(r)?, + }, other => Self::CraftingSpecial { kind: match other { "minecraft:crafting_special_armordye" => SpecialCraftingKind::ArmorDye, diff --git a/crates/valence_registry/src/codec.rs b/crates/valence_registry/src/codec.rs index e3d56bf..0627c87 100644 --- a/crates/valence_registry/src/codec.rs +++ b/crates/valence_registry/src/codec.rs @@ -51,7 +51,7 @@ impl RegistryCodec { impl Default for RegistryCodec { fn default() -> Self { - let codec = include_bytes!("../../../extracted/registry_codec_1.19.4.dat"); + let codec = include_bytes!("../../../extracted/registry_codec_1.20.dat"); let compound = Compound::from_binary(&mut codec.as_slice()) .expect("failed to decode vanilla registry codec") .0; diff --git a/extracted/blocks.json b/extracted/blocks.json index 59caa8b..eb1b546 100644 --- a/extracted/blocks.json +++ b/extracted/blocks.json @@ -177,26 +177,31 @@ }, { "id": 35, + "ident": "minecraft:calibrated_sculk_sensor", + "name": "calibrated_sculk_sensor" + }, + { + "id": 36, "ident": "minecraft:sculk_catalyst", "name": "sculk_catalyst" }, { - "id": 36, + "id": 37, "ident": "minecraft:sculk_shrieker", "name": "sculk_shrieker" }, { - "id": 37, + "id": 38, "ident": "minecraft:chiseled_bookshelf", "name": "chiseled_bookshelf" }, { - "id": 38, - "ident": "minecraft:suspicious_sand", - "name": "suspicious_sand" + "id": 39, + "ident": "minecraft:brushable_block", + "name": "brushable_block" }, { - "id": 39, + "id": 40, "ident": "minecraft:decorated_pot", "name": "decorated_pot" } @@ -1962,6 +1967,22 @@ "max_y": 0.8125, "max_z": 0.8125 }, + { + "min_x": 0.3125, + "min_y": -0.0625, + "min_z": 0.3125, + "max_x": 0.6875, + "max_y": 0.1875, + "max_z": 0.6875 + }, + { + "min_x": 0.1875, + "min_y": -0.0625, + "min_z": 0.1875, + "max_x": 0.8125, + "max_y": 0.3125, + "max_z": 0.8125 + }, { "min_x": 0.1875, "min_y": 0.0, @@ -1978,6 +1999,14 @@ "max_y": 0.4375, "max_z": 0.9375 }, + { + "min_x": 0.0625, + "min_y": 0.0, + "min_z": 0.125, + "max_x": 0.9375, + "max_y": 1.0, + "max_z": 0.875 + }, { "min_x": 0.375, "min_y": 0.0, @@ -4299,7 +4328,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 38 + "block_entity_type": 39 }, { "id": 114, @@ -4309,7 +4338,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 38 + "block_entity_type": 39 }, { "id": 115, @@ -4319,7 +4348,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 38 + "block_entity_type": 39 }, { "id": 116, @@ -4329,7 +4358,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 38 + "block_entity_type": 39 } ] }, @@ -4337,7 +4366,7 @@ "id": 36, "name": "red_sand", "translation_key": "block.minecraft.red_sand", - "item_id": 46, + "item_id": 47, "properties": [], "default_state_id": 117, "states": [ @@ -4356,7 +4385,7 @@ "id": 37, "name": "gravel", "translation_key": "block.minecraft.gravel", - "item_id": 47, + "item_id": 48, "properties": [], "default_state_id": 118, "states": [ @@ -4373,10 +4402,20 @@ }, { "id": 38, - "name": "gold_ore", - "translation_key": "block.minecraft.gold_ore", - "item_id": 54, - "properties": [], + "name": "suspicious_gravel", + "translation_key": "block.minecraft.suspicious_gravel", + "item_id": 46, + "properties": [ + { + "name": "dusted", + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], "default_state_id": 119, "states": [ { @@ -4386,18 +4425,9 @@ "replaceable": false, "collision_shapes": [ 0 - ] - } - ] - }, - { - "id": 39, - "name": "deepslate_gold_ore", - "translation_key": "block.minecraft.deepslate_gold_ore", - "item_id": 55, - "properties": [], - "default_state_id": 120, - "states": [ + ], + "block_entity_type": 39 + }, { "id": 120, "luminance": 0, @@ -4405,18 +4435,9 @@ "replaceable": false, "collision_shapes": [ 0 - ] - } - ] - }, - { - "id": 40, - "name": "iron_ore", - "translation_key": "block.minecraft.iron_ore", - "item_id": 50, - "properties": [], - "default_state_id": 121, - "states": [ + ], + "block_entity_type": 39 + }, { "id": 121, "luminance": 0, @@ -4424,18 +4445,9 @@ "replaceable": false, "collision_shapes": [ 0 - ] - } - ] - }, - { - "id": 41, - "name": "deepslate_iron_ore", - "translation_key": "block.minecraft.deepslate_iron_ore", - "item_id": 51, - "properties": [], - "default_state_id": 122, - "states": [ + ], + "block_entity_type": 39 + }, { "id": 122, "luminance": 0, @@ -4443,15 +4455,16 @@ "replaceable": false, "collision_shapes": [ 0 - ] + ], + "block_entity_type": 39 } ] }, { - "id": 42, - "name": "coal_ore", - "translation_key": "block.minecraft.coal_ore", - "item_id": 48, + "id": 39, + "name": "gold_ore", + "translation_key": "block.minecraft.gold_ore", + "item_id": 55, "properties": [], "default_state_id": 123, "states": [ @@ -4467,10 +4480,10 @@ ] }, { - "id": 43, - "name": "deepslate_coal_ore", - "translation_key": "block.minecraft.deepslate_coal_ore", - "item_id": 49, + "id": 40, + "name": "deepslate_gold_ore", + "translation_key": "block.minecraft.deepslate_gold_ore", + "item_id": 56, "properties": [], "default_state_id": 124, "states": [ @@ -4486,10 +4499,10 @@ ] }, { - "id": 44, - "name": "nether_gold_ore", - "translation_key": "block.minecraft.nether_gold_ore", - "item_id": 64, + "id": 41, + "name": "iron_ore", + "translation_key": "block.minecraft.iron_ore", + "item_id": 51, "properties": [], "default_state_id": 125, "states": [ @@ -4505,21 +4518,12 @@ ] }, { - "id": 45, - "name": "oak_log", - "translation_key": "block.minecraft.oak_log", - "item_id": 109, - "properties": [ - { - "name": "axis", - "values": [ - "x", - "y", - "z" - ] - } - ], - "default_state_id": 127, + "id": 42, + "name": "deepslate_iron_ore", + "translation_key": "block.minecraft.deepslate_iron_ore", + "item_id": 52, + "properties": [], + "default_state_id": 126, "states": [ { "id": 126, @@ -4529,7 +4533,17 @@ "collision_shapes": [ 0 ] - }, + } + ] + }, + { + "id": 43, + "name": "coal_ore", + "translation_key": "block.minecraft.coal_ore", + "item_id": 49, + "properties": [], + "default_state_id": 127, + "states": [ { "id": 127, "luminance": 0, @@ -4538,7 +4552,17 @@ "collision_shapes": [ 0 ] - }, + } + ] + }, + { + "id": 44, + "name": "deepslate_coal_ore", + "translation_key": "block.minecraft.deepslate_coal_ore", + "item_id": 50, + "properties": [], + "default_state_id": 128, + "states": [ { "id": 128, "luminance": 0, @@ -4550,10 +4574,29 @@ } ] }, + { + "id": 45, + "name": "nether_gold_ore", + "translation_key": "block.minecraft.nether_gold_ore", + "item_id": 65, + "properties": [], + "default_state_id": 129, + "states": [ + { + "id": 129, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, { "id": 46, - "name": "spruce_log", - "translation_key": "block.minecraft.spruce_log", + "name": "oak_log", + "translation_key": "block.minecraft.oak_log", "item_id": 110, "properties": [ { @@ -4565,17 +4608,8 @@ ] } ], - "default_state_id": 130, + "default_state_id": 131, "states": [ - { - "id": 129, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 130, "luminance": 0, @@ -4593,13 +4627,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 132, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 47, - "name": "birch_log", - "translation_key": "block.minecraft.birch_log", + "name": "spruce_log", + "translation_key": "block.minecraft.spruce_log", "item_id": 111, "properties": [ { @@ -4611,17 +4654,8 @@ ] } ], - "default_state_id": 133, + "default_state_id": 134, "states": [ - { - "id": 132, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 133, "luminance": 0, @@ -4639,13 +4673,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 135, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 48, - "name": "jungle_log", - "translation_key": "block.minecraft.jungle_log", + "name": "birch_log", + "translation_key": "block.minecraft.birch_log", "item_id": 112, "properties": [ { @@ -4657,17 +4700,8 @@ ] } ], - "default_state_id": 136, + "default_state_id": 137, "states": [ - { - "id": 135, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 136, "luminance": 0, @@ -4685,13 +4719,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 138, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 49, - "name": "acacia_log", - "translation_key": "block.minecraft.acacia_log", + "name": "jungle_log", + "translation_key": "block.minecraft.jungle_log", "item_id": 113, "properties": [ { @@ -4703,17 +4746,8 @@ ] } ], - "default_state_id": 139, + "default_state_id": 140, "states": [ - { - "id": 138, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 139, "luminance": 0, @@ -4731,13 +4765,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 141, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 50, - "name": "cherry_log", - "translation_key": "block.minecraft.cherry_log", + "name": "acacia_log", + "translation_key": "block.minecraft.acacia_log", "item_id": 114, "properties": [ { @@ -4749,17 +4792,8 @@ ] } ], - "default_state_id": 142, + "default_state_id": 143, "states": [ - { - "id": 141, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 142, "luminance": 0, @@ -4777,13 +4811,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 144, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 51, - "name": "dark_oak_log", - "translation_key": "block.minecraft.dark_oak_log", + "name": "cherry_log", + "translation_key": "block.minecraft.cherry_log", "item_id": 115, "properties": [ { @@ -4795,17 +4838,8 @@ ] } ], - "default_state_id": 145, + "default_state_id": 146, "states": [ - { - "id": 144, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 145, "luminance": 0, @@ -4823,13 +4857,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 147, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 52, - "name": "mangrove_log", - "translation_key": "block.minecraft.mangrove_log", + "name": "dark_oak_log", + "translation_key": "block.minecraft.dark_oak_log", "item_id": 116, "properties": [ { @@ -4841,17 +4884,8 @@ ] } ], - "default_state_id": 148, + "default_state_id": 149, "states": [ - { - "id": 147, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 148, "luminance": 0, @@ -4869,50 +4903,23 @@ "collision_shapes": [ 0 ] + }, + { + "id": 150, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 53, - "name": "mangrove_roots", - "translation_key": "block.minecraft.mangrove_roots", + "name": "mangrove_log", + "translation_key": "block.minecraft.mangrove_log", "item_id": 117, - "properties": [ - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 151, - "states": [ - { - "id": 150, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 151, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 54, - "name": "muddy_mangrove_roots", - "translation_key": "block.minecraft.muddy_mangrove_roots", - "item_id": 118, "properties": [ { "name": "axis", @@ -4923,8 +4930,17 @@ ] } ], - "default_state_id": 153, + "default_state_id": 152, "states": [ + { + "id": 151, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, { "id": 152, "luminance": 0, @@ -4942,11 +4958,38 @@ "collision_shapes": [ 0 ] - }, + } + ] + }, + { + "id": 54, + "name": "mangrove_roots", + "translation_key": "block.minecraft.mangrove_roots", + "item_id": 118, + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 155, + "states": [ { "id": 154, "luminance": 0, - "opaque": true, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 155, + "luminance": 0, + "opaque": false, "replaceable": false, "collision_shapes": [ 0 @@ -4956,9 +4999,9 @@ }, { "id": 55, - "name": "bamboo_block", - "translation_key": "block.minecraft.bamboo_block", - "item_id": 121, + "name": "muddy_mangrove_roots", + "translation_key": "block.minecraft.muddy_mangrove_roots", + "item_id": 119, "properties": [ { "name": "axis", @@ -4969,17 +5012,8 @@ ] } ], - "default_state_id": 156, + "default_state_id": 157, "states": [ - { - "id": 155, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 156, "luminance": 0, @@ -4997,14 +5031,23 @@ "collision_shapes": [ 0 ] + }, + { + "id": 158, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 56, - "name": "stripped_spruce_log", - "translation_key": "block.minecraft.stripped_spruce_log", - "item_id": 123, + "name": "bamboo_block", + "translation_key": "block.minecraft.bamboo_block", + "item_id": 122, "properties": [ { "name": "axis", @@ -5015,17 +5058,8 @@ ] } ], - "default_state_id": 159, + "default_state_id": 160, "states": [ - { - "id": 158, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 159, "luminance": 0, @@ -5043,13 +5077,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 161, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 57, - "name": "stripped_birch_log", - "translation_key": "block.minecraft.stripped_birch_log", + "name": "stripped_spruce_log", + "translation_key": "block.minecraft.stripped_spruce_log", "item_id": 124, "properties": [ { @@ -5061,17 +5104,8 @@ ] } ], - "default_state_id": 162, + "default_state_id": 163, "states": [ - { - "id": 161, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 162, "luminance": 0, @@ -5089,13 +5123,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 164, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 58, - "name": "stripped_jungle_log", - "translation_key": "block.minecraft.stripped_jungle_log", + "name": "stripped_birch_log", + "translation_key": "block.minecraft.stripped_birch_log", "item_id": 125, "properties": [ { @@ -5107,17 +5150,8 @@ ] } ], - "default_state_id": 165, + "default_state_id": 166, "states": [ - { - "id": 164, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 165, "luminance": 0, @@ -5135,13 +5169,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 167, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 59, - "name": "stripped_acacia_log", - "translation_key": "block.minecraft.stripped_acacia_log", + "name": "stripped_jungle_log", + "translation_key": "block.minecraft.stripped_jungle_log", "item_id": 126, "properties": [ { @@ -5153,17 +5196,8 @@ ] } ], - "default_state_id": 168, + "default_state_id": 169, "states": [ - { - "id": 167, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 168, "luminance": 0, @@ -5181,13 +5215,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 170, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 60, - "name": "stripped_cherry_log", - "translation_key": "block.minecraft.stripped_cherry_log", + "name": "stripped_acacia_log", + "translation_key": "block.minecraft.stripped_acacia_log", "item_id": 127, "properties": [ { @@ -5199,17 +5242,8 @@ ] } ], - "default_state_id": 171, + "default_state_id": 172, "states": [ - { - "id": 170, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 171, "luminance": 0, @@ -5227,13 +5261,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 173, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 61, - "name": "stripped_dark_oak_log", - "translation_key": "block.minecraft.stripped_dark_oak_log", + "name": "stripped_cherry_log", + "translation_key": "block.minecraft.stripped_cherry_log", "item_id": 128, "properties": [ { @@ -5245,17 +5288,8 @@ ] } ], - "default_state_id": 174, + "default_state_id": 175, "states": [ - { - "id": 173, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 174, "luminance": 0, @@ -5273,14 +5307,23 @@ "collision_shapes": [ 0 ] + }, + { + "id": 176, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 62, - "name": "stripped_oak_log", - "translation_key": "block.minecraft.stripped_oak_log", - "item_id": 122, + "name": "stripped_dark_oak_log", + "translation_key": "block.minecraft.stripped_dark_oak_log", + "item_id": 129, "properties": [ { "name": "axis", @@ -5291,17 +5334,8 @@ ] } ], - "default_state_id": 177, + "default_state_id": 178, "states": [ - { - "id": 176, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 177, "luminance": 0, @@ -5319,14 +5353,23 @@ "collision_shapes": [ 0 ] + }, + { + "id": 179, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 63, - "name": "stripped_mangrove_log", - "translation_key": "block.minecraft.stripped_mangrove_log", - "item_id": 129, + "name": "stripped_oak_log", + "translation_key": "block.minecraft.stripped_oak_log", + "item_id": 123, "properties": [ { "name": "axis", @@ -5337,17 +5380,8 @@ ] } ], - "default_state_id": 180, + "default_state_id": 181, "states": [ - { - "id": 179, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 180, "luminance": 0, @@ -5365,14 +5399,23 @@ "collision_shapes": [ 0 ] + }, + { + "id": 182, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 64, - "name": "stripped_bamboo_block", - "translation_key": "block.minecraft.stripped_bamboo_block", - "item_id": 142, + "name": "stripped_mangrove_log", + "translation_key": "block.minecraft.stripped_mangrove_log", + "item_id": 130, "properties": [ { "name": "axis", @@ -5383,17 +5426,8 @@ ] } ], - "default_state_id": 183, + "default_state_id": 184, "states": [ - { - "id": 182, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 183, "luminance": 0, @@ -5411,13 +5445,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 185, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 65, - "name": "oak_wood", - "translation_key": "block.minecraft.oak_wood", + "name": "stripped_bamboo_block", + "translation_key": "block.minecraft.stripped_bamboo_block", "item_id": 143, "properties": [ { @@ -5429,17 +5472,8 @@ ] } ], - "default_state_id": 186, + "default_state_id": 187, "states": [ - { - "id": 185, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 186, "luminance": 0, @@ -5457,13 +5491,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 188, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 66, - "name": "spruce_wood", - "translation_key": "block.minecraft.spruce_wood", + "name": "oak_wood", + "translation_key": "block.minecraft.oak_wood", "item_id": 144, "properties": [ { @@ -5475,17 +5518,8 @@ ] } ], - "default_state_id": 189, + "default_state_id": 190, "states": [ - { - "id": 188, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 189, "luminance": 0, @@ -5503,13 +5537,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 191, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 67, - "name": "birch_wood", - "translation_key": "block.minecraft.birch_wood", + "name": "spruce_wood", + "translation_key": "block.minecraft.spruce_wood", "item_id": 145, "properties": [ { @@ -5521,17 +5564,8 @@ ] } ], - "default_state_id": 192, + "default_state_id": 193, "states": [ - { - "id": 191, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 192, "luminance": 0, @@ -5549,13 +5583,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 194, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 68, - "name": "jungle_wood", - "translation_key": "block.minecraft.jungle_wood", + "name": "birch_wood", + "translation_key": "block.minecraft.birch_wood", "item_id": 146, "properties": [ { @@ -5567,17 +5610,8 @@ ] } ], - "default_state_id": 195, + "default_state_id": 196, "states": [ - { - "id": 194, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 195, "luminance": 0, @@ -5595,13 +5629,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 197, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 69, - "name": "acacia_wood", - "translation_key": "block.minecraft.acacia_wood", + "name": "jungle_wood", + "translation_key": "block.minecraft.jungle_wood", "item_id": 147, "properties": [ { @@ -5613,17 +5656,8 @@ ] } ], - "default_state_id": 198, + "default_state_id": 199, "states": [ - { - "id": 197, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 198, "luminance": 0, @@ -5641,13 +5675,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 200, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 70, - "name": "cherry_wood", - "translation_key": "block.minecraft.cherry_wood", + "name": "acacia_wood", + "translation_key": "block.minecraft.acacia_wood", "item_id": 148, "properties": [ { @@ -5659,17 +5702,8 @@ ] } ], - "default_state_id": 201, + "default_state_id": 202, "states": [ - { - "id": 200, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 201, "luminance": 0, @@ -5687,13 +5721,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 203, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 71, - "name": "dark_oak_wood", - "translation_key": "block.minecraft.dark_oak_wood", + "name": "cherry_wood", + "translation_key": "block.minecraft.cherry_wood", "item_id": 149, "properties": [ { @@ -5705,17 +5748,8 @@ ] } ], - "default_state_id": 204, + "default_state_id": 205, "states": [ - { - "id": 203, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 204, "luminance": 0, @@ -5733,13 +5767,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 206, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 72, - "name": "mangrove_wood", - "translation_key": "block.minecraft.mangrove_wood", + "name": "dark_oak_wood", + "translation_key": "block.minecraft.dark_oak_wood", "item_id": 150, "properties": [ { @@ -5751,17 +5794,8 @@ ] } ], - "default_state_id": 207, + "default_state_id": 208, "states": [ - { - "id": 206, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 207, "luminance": 0, @@ -5779,14 +5813,23 @@ "collision_shapes": [ 0 ] + }, + { + "id": 209, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 73, - "name": "stripped_oak_wood", - "translation_key": "block.minecraft.stripped_oak_wood", - "item_id": 132, + "name": "mangrove_wood", + "translation_key": "block.minecraft.mangrove_wood", + "item_id": 151, "properties": [ { "name": "axis", @@ -5797,17 +5840,8 @@ ] } ], - "default_state_id": 210, + "default_state_id": 211, "states": [ - { - "id": 209, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 210, "luminance": 0, @@ -5825,13 +5859,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 212, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 74, - "name": "stripped_spruce_wood", - "translation_key": "block.minecraft.stripped_spruce_wood", + "name": "stripped_oak_wood", + "translation_key": "block.minecraft.stripped_oak_wood", "item_id": 133, "properties": [ { @@ -5843,17 +5886,8 @@ ] } ], - "default_state_id": 213, + "default_state_id": 214, "states": [ - { - "id": 212, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 213, "luminance": 0, @@ -5871,13 +5905,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 215, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 75, - "name": "stripped_birch_wood", - "translation_key": "block.minecraft.stripped_birch_wood", + "name": "stripped_spruce_wood", + "translation_key": "block.minecraft.stripped_spruce_wood", "item_id": 134, "properties": [ { @@ -5889,17 +5932,8 @@ ] } ], - "default_state_id": 216, + "default_state_id": 217, "states": [ - { - "id": 215, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 216, "luminance": 0, @@ -5917,13 +5951,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 218, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 76, - "name": "stripped_jungle_wood", - "translation_key": "block.minecraft.stripped_jungle_wood", + "name": "stripped_birch_wood", + "translation_key": "block.minecraft.stripped_birch_wood", "item_id": 135, "properties": [ { @@ -5935,17 +5978,8 @@ ] } ], - "default_state_id": 219, + "default_state_id": 220, "states": [ - { - "id": 218, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 219, "luminance": 0, @@ -5963,13 +5997,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 221, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 77, - "name": "stripped_acacia_wood", - "translation_key": "block.minecraft.stripped_acacia_wood", + "name": "stripped_jungle_wood", + "translation_key": "block.minecraft.stripped_jungle_wood", "item_id": 136, "properties": [ { @@ -5981,17 +6024,8 @@ ] } ], - "default_state_id": 222, + "default_state_id": 223, "states": [ - { - "id": 221, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 222, "luminance": 0, @@ -6009,13 +6043,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 224, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 78, - "name": "stripped_cherry_wood", - "translation_key": "block.minecraft.stripped_cherry_wood", + "name": "stripped_acacia_wood", + "translation_key": "block.minecraft.stripped_acacia_wood", "item_id": 137, "properties": [ { @@ -6027,17 +6070,8 @@ ] } ], - "default_state_id": 225, + "default_state_id": 226, "states": [ - { - "id": 224, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 225, "luminance": 0, @@ -6055,13 +6089,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 227, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 79, - "name": "stripped_dark_oak_wood", - "translation_key": "block.minecraft.stripped_dark_oak_wood", + "name": "stripped_cherry_wood", + "translation_key": "block.minecraft.stripped_cherry_wood", "item_id": 138, "properties": [ { @@ -6073,17 +6116,8 @@ ] } ], - "default_state_id": 228, + "default_state_id": 229, "states": [ - { - "id": 227, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 228, "luminance": 0, @@ -6101,13 +6135,22 @@ "collision_shapes": [ 0 ] + }, + { + "id": 230, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 80, - "name": "stripped_mangrove_wood", - "translation_key": "block.minecraft.stripped_mangrove_wood", + "name": "stripped_dark_oak_wood", + "translation_key": "block.minecraft.stripped_dark_oak_wood", "item_id": 139, "properties": [ { @@ -6119,17 +6162,8 @@ ] } ], - "default_state_id": 231, + "default_state_id": 232, "states": [ - { - "id": 230, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 231, "luminance": 0, @@ -6147,14 +6181,69 @@ "collision_shapes": [ 0 ] + }, + { + "id": 233, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 81, + "name": "stripped_mangrove_wood", + "translation_key": "block.minecraft.stripped_mangrove_wood", + "item_id": 140, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 235, + "states": [ + { + "id": 234, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 235, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 236, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 82, "name": "oak_leaves", "translation_key": "block.minecraft.oak_leaves", - "item_id": 153, + "item_id": 154, "properties": [ { "name": "distance", @@ -6183,44 +6272,8 @@ ] } ], - "default_state_id": 260, + "default_state_id": 264, "states": [ - { - "id": 233, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 234, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 235, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 236, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 237, "luminance": 0, @@ -6436,44 +6489,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 82, - "name": "spruce_leaves", - "translation_key": "block.minecraft.spruce_leaves", - "item_id": 154, - "properties": [ - { - "name": "distance", - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] }, - { - "name": "persistent", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 288, - "states": [ { "id": 261, "luminance": 0, @@ -6509,7 +6525,44 @@ "collision_shapes": [ 0 ] + } + ] + }, + { + "id": 83, + "name": "spruce_leaves", + "translation_key": "block.minecraft.spruce_leaves", + "item_id": 155, + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 292, + "states": [ { "id": 265, "luminance": 0, @@ -6725,44 +6778,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 83, - "name": "birch_leaves", - "translation_key": "block.minecraft.birch_leaves", - "item_id": 155, - "properties": [ - { - "name": "distance", - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] }, - { - "name": "persistent", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 316, - "states": [ { "id": 289, "luminance": 0, @@ -6798,7 +6814,44 @@ "collision_shapes": [ 0 ] + } + ] + }, + { + "id": 84, + "name": "birch_leaves", + "translation_key": "block.minecraft.birch_leaves", + "item_id": 156, + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 320, + "states": [ { "id": 293, "luminance": 0, @@ -7014,44 +7067,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 84, - "name": "jungle_leaves", - "translation_key": "block.minecraft.jungle_leaves", - "item_id": 156, - "properties": [ - { - "name": "distance", - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] }, - { - "name": "persistent", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 344, - "states": [ { "id": 317, "luminance": 0, @@ -7087,7 +7103,44 @@ "collision_shapes": [ 0 ] + } + ] + }, + { + "id": 85, + "name": "jungle_leaves", + "translation_key": "block.minecraft.jungle_leaves", + "item_id": 157, + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 348, + "states": [ { "id": 321, "luminance": 0, @@ -7303,44 +7356,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 85, - "name": "acacia_leaves", - "translation_key": "block.minecraft.acacia_leaves", - "item_id": 157, - "properties": [ - { - "name": "distance", - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] }, - { - "name": "persistent", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 372, - "states": [ { "id": 345, "luminance": 0, @@ -7376,7 +7392,44 @@ "collision_shapes": [ 0 ] + } + ] + }, + { + "id": 86, + "name": "acacia_leaves", + "translation_key": "block.minecraft.acacia_leaves", + "item_id": 158, + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 376, + "states": [ { "id": 349, "luminance": 0, @@ -7592,44 +7645,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 86, - "name": "cherry_leaves", - "translation_key": "block.minecraft.cherry_leaves", - "item_id": 158, - "properties": [ - { - "name": "distance", - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] }, - { - "name": "persistent", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 400, - "states": [ { "id": 373, "luminance": 0, @@ -7665,7 +7681,44 @@ "collision_shapes": [ 0 ] + } + ] + }, + { + "id": 87, + "name": "cherry_leaves", + "translation_key": "block.minecraft.cherry_leaves", + "item_id": 159, + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 404, + "states": [ { "id": 377, "luminance": 0, @@ -7881,44 +7934,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 87, - "name": "dark_oak_leaves", - "translation_key": "block.minecraft.dark_oak_leaves", - "item_id": 159, - "properties": [ - { - "name": "distance", - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] }, - { - "name": "persistent", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 428, - "states": [ { "id": 401, "luminance": 0, @@ -7954,7 +7970,44 @@ "collision_shapes": [ 0 ] + } + ] + }, + { + "id": 88, + "name": "dark_oak_leaves", + "translation_key": "block.minecraft.dark_oak_leaves", + "item_id": 160, + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 432, + "states": [ { "id": 405, "luminance": 0, @@ -8170,44 +8223,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 88, - "name": "mangrove_leaves", - "translation_key": "block.minecraft.mangrove_leaves", - "item_id": 160, - "properties": [ - { - "name": "distance", - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] }, - { - "name": "persistent", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 456, - "states": [ { "id": 429, "luminance": 0, @@ -8243,7 +8259,44 @@ "collision_shapes": [ 0 ] + } + ] + }, + { + "id": 89, + "name": "mangrove_leaves", + "translation_key": "block.minecraft.mangrove_leaves", + "item_id": 161, + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 460, + "states": [ { "id": 433, "luminance": 0, @@ -8459,44 +8512,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 89, - "name": "azalea_leaves", - "translation_key": "block.minecraft.azalea_leaves", - "item_id": 161, - "properties": [ - { - "name": "distance", - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] }, - { - "name": "persistent", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 484, - "states": [ { "id": 457, "luminance": 0, @@ -8532,7 +8548,44 @@ "collision_shapes": [ 0 ] + } + ] + }, + { + "id": 90, + "name": "azalea_leaves", + "translation_key": "block.minecraft.azalea_leaves", + "item_id": 162, + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 488, + "states": [ { "id": 461, "luminance": 0, @@ -8748,44 +8801,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 90, - "name": "flowering_azalea_leaves", - "translation_key": "block.minecraft.flowering_azalea_leaves", - "item_id": 162, - "properties": [ - { - "name": "distance", - "values": [ - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] }, - { - "name": "persistent", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 512, - "states": [ { "id": 485, "luminance": 0, @@ -8821,7 +8837,44 @@ "collision_shapes": [ 0 ] + } + ] + }, + { + "id": 91, + "name": "flowering_azalea_leaves", + "translation_key": "block.minecraft.flowering_azalea_leaves", + "item_id": 163, + "properties": [ + { + "name": "distance", + "values": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] }, + { + "name": "persistent", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 516, + "states": [ { "id": 489, "luminance": 0, @@ -9037,55 +9090,25 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 91, - "name": "sponge", - "translation_key": "block.minecraft.sponge", - "item_id": 163, - "properties": [], - "default_state_id": 513, - "states": [ + }, { "id": 513, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 92, - "name": "wet_sponge", - "translation_key": "block.minecraft.wet_sponge", - "item_id": 164, - "properties": [], - "default_state_id": 514, - "states": [ + }, { "id": 514, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 93, - "name": "glass", - "translation_key": "block.minecraft.glass", - "item_id": 165, - "properties": [], - "default_state_id": 515, - "states": [ + }, { "id": 515, "luminance": 0, @@ -9094,33 +9117,23 @@ "collision_shapes": [ 0 ] + }, + { + "id": 516, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { - "id": 94, - "name": "lapis_ore", - "translation_key": "block.minecraft.lapis_ore", - "item_id": 60, - "properties": [], - "default_state_id": 516, - "states": [ - { - "id": 516, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 95, - "name": "deepslate_lapis_ore", - "translation_key": "block.minecraft.deepslate_lapis_ore", - "item_id": 61, + "id": 92, + "name": "sponge", + "translation_key": "block.minecraft.sponge", + "item_id": 164, "properties": [], "default_state_id": 517, "states": [ @@ -9136,10 +9149,10 @@ ] }, { - "id": 96, - "name": "lapis_block", - "translation_key": "block.minecraft.lapis_block", - "item_id": 167, + "id": 93, + "name": "wet_sponge", + "translation_key": "block.minecraft.wet_sponge", + "item_id": 165, "properties": [], "default_state_id": 518, "states": [ @@ -9154,11 +9167,87 @@ } ] }, + { + "id": 94, + "name": "glass", + "translation_key": "block.minecraft.glass", + "item_id": 166, + "properties": [], + "default_state_id": 519, + "states": [ + { + "id": 519, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 95, + "name": "lapis_ore", + "translation_key": "block.minecraft.lapis_ore", + "item_id": 61, + "properties": [], + "default_state_id": 520, + "states": [ + { + "id": 520, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 96, + "name": "deepslate_lapis_ore", + "translation_key": "block.minecraft.deepslate_lapis_ore", + "item_id": 62, + "properties": [], + "default_state_id": 521, + "states": [ + { + "id": 521, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, { "id": 97, + "name": "lapis_block", + "translation_key": "block.minecraft.lapis_block", + "item_id": 168, + "properties": [], + "default_state_id": 522, + "states": [ + { + "id": 522, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 98, "name": "dispenser", "translation_key": "block.minecraft.dispenser", - "item_id": 643, + "item_id": 646, "properties": [ { "name": "facing", @@ -9179,48 +9268,8 @@ ] } ], - "default_state_id": 520, + "default_state_id": 524, "states": [ - { - "id": 519, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 5 - }, - { - "id": 520, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 5 - }, - { - "id": 521, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 5 - }, - { - "id": 522, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 5 - }, { "id": 523, "luminance": 0, @@ -9300,17 +9349,7 @@ 0 ], "block_entity_type": 5 - } - ] - }, - { - "id": 98, - "name": "sandstone", - "translation_key": "block.minecraft.sandstone", - "item_id": 168, - "properties": [], - "default_state_id": 531, - "states": [ + }, { "id": 531, "luminance": 0, @@ -9318,20 +9357,51 @@ "replaceable": false, "collision_shapes": [ 0 - ] + ], + "block_entity_type": 5 + }, + { + "id": 532, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 5 + }, + { + "id": 533, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 5 + }, + { + "id": 534, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 5 } ] }, { "id": 99, - "name": "chiseled_sandstone", - "translation_key": "block.minecraft.chiseled_sandstone", + "name": "sandstone", + "translation_key": "block.minecraft.sandstone", "item_id": 169, "properties": [], - "default_state_id": 532, + "default_state_id": 535, "states": [ { - "id": 532, + "id": 535, "luminance": 0, "opaque": true, "replaceable": false, @@ -9343,14 +9413,14 @@ }, { "id": 100, - "name": "cut_sandstone", - "translation_key": "block.minecraft.cut_sandstone", + "name": "chiseled_sandstone", + "translation_key": "block.minecraft.chiseled_sandstone", "item_id": 170, "properties": [], - "default_state_id": 533, + "default_state_id": 536, "states": [ { - "id": 533, + "id": 536, "luminance": 0, "opaque": true, "replaceable": false, @@ -9362,9 +9432,28 @@ }, { "id": 101, + "name": "cut_sandstone", + "translation_key": "block.minecraft.cut_sandstone", + "item_id": 171, + "properties": [], + "default_state_id": 537, + "states": [ + { + "id": 537, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 102, "name": "note_block", "translation_key": "block.minecraft.note_block", - "item_id": 655, + "item_id": 659, "properties": [ { "name": "instrument", @@ -9432,44 +9521,8 @@ ] } ], - "default_state_id": 535, + "default_state_id": 539, "states": [ - { - "id": 534, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 535, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 536, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 537, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 538, "luminance": 0, @@ -19783,997 +19836,49 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 102, - "name": "white_bed", - "translation_key": "block.minecraft.white_bed", - "item_id": 920, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "occupied", - "values": [ - "true", - "false" - ] - }, - { - "name": "part", - "values": [ - "head", - "foot" - ] - } - ], - "default_state_id": 1687, - "states": [ { "id": 1684, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 + 0 + ] }, { "id": 1685, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 + 0 + ] }, { "id": 1686, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 + 0 + ] }, { "id": 1687, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1688, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1689, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1690, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1691, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1692, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1693, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1694, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1695, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1696, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1697, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1698, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1699, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 + 0 + ] } ] }, { "id": 103, - "name": "orange_bed", - "translation_key": "block.minecraft.orange_bed", - "item_id": 921, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "values": [ - "true", - "false" - ] - }, - { - "name": "part", - "values": [ - "head", - "foot" - ] - } - ], - "default_state_id": 1703, - "states": [ - { - "id": 1700, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1701, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1702, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1703, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1704, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1705, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1706, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1707, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1708, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1709, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1710, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1711, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1712, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1713, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1714, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1715, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - } - ] - }, - { - "id": 104, - "name": "magenta_bed", - "translation_key": "block.minecraft.magenta_bed", - "item_id": 922, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "values": [ - "true", - "false" - ] - }, - { - "name": "part", - "values": [ - "head", - "foot" - ] - } - ], - "default_state_id": 1719, - "states": [ - { - "id": 1716, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1717, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1718, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1719, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1720, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1721, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1722, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1723, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1724, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1725, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1726, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1727, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1728, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1729, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1730, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1731, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - } - ] - }, - { - "id": 105, - "name": "light_blue_bed", - "translation_key": "block.minecraft.light_blue_bed", - "item_id": 923, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "occupied", - "values": [ - "true", - "false" - ] - }, - { - "name": "part", - "values": [ - "head", - "foot" - ] - } - ], - "default_state_id": 1735, - "states": [ - { - "id": 1732, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1733, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1734, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1735, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1736, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1737, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1738, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1739, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1740, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1741, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1742, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1743, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1744, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1745, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1746, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1747, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - } - ] - }, - { - "id": 106, - "name": "yellow_bed", - "translation_key": "block.minecraft.yellow_bed", + "name": "white_bed", + "translation_key": "block.minecraft.white_bed", "item_id": 924, "properties": [ { @@ -20800,10 +19905,10 @@ ] } ], - "default_state_id": 1751, + "default_state_id": 1691, "states": [ { - "id": 1748, + "id": 1688, "luminance": 0, "opaque": false, "replaceable": false, @@ -20816,7 +19921,7 @@ "block_entity_type": 24 }, { - "id": 1749, + "id": 1689, "luminance": 0, "opaque": false, "replaceable": false, @@ -20829,7 +19934,7 @@ "block_entity_type": 24 }, { - "id": 1750, + "id": 1690, "luminance": 0, "opaque": false, "replaceable": false, @@ -20842,7 +19947,7 @@ "block_entity_type": 24 }, { - "id": 1751, + "id": 1691, "luminance": 0, "opaque": false, "replaceable": false, @@ -20855,7 +19960,7 @@ "block_entity_type": 24 }, { - "id": 1752, + "id": 1692, "luminance": 0, "opaque": false, "replaceable": false, @@ -20868,7 +19973,7 @@ "block_entity_type": 24 }, { - "id": 1753, + "id": 1693, "luminance": 0, "opaque": false, "replaceable": false, @@ -20881,7 +19986,7 @@ "block_entity_type": 24 }, { - "id": 1754, + "id": 1694, "luminance": 0, "opaque": false, "replaceable": false, @@ -20894,7 +19999,7 @@ "block_entity_type": 24 }, { - "id": 1755, + "id": 1695, "luminance": 0, "opaque": false, "replaceable": false, @@ -20907,7 +20012,7 @@ "block_entity_type": 24 }, { - "id": 1756, + "id": 1696, "luminance": 0, "opaque": false, "replaceable": false, @@ -20921,7 +20026,7 @@ "block_entity_type": 24 }, { - "id": 1757, + "id": 1697, "luminance": 0, "opaque": false, "replaceable": false, @@ -20934,7 +20039,7 @@ "block_entity_type": 24 }, { - "id": 1758, + "id": 1698, "luminance": 0, "opaque": false, "replaceable": false, @@ -20948,7 +20053,7 @@ "block_entity_type": 24 }, { - "id": 1759, + "id": 1699, "luminance": 0, "opaque": false, "replaceable": false, @@ -20961,7 +20066,7 @@ "block_entity_type": 24 }, { - "id": 1760, + "id": 1700, "luminance": 0, "opaque": false, "replaceable": false, @@ -20974,7 +20079,7 @@ "block_entity_type": 24 }, { - "id": 1761, + "id": 1701, "luminance": 0, "opaque": false, "replaceable": false, @@ -20988,7 +20093,7 @@ "block_entity_type": 24 }, { - "id": 1762, + "id": 1702, "luminance": 0, "opaque": false, "replaceable": false, @@ -21001,7 +20106,7 @@ "block_entity_type": 24 }, { - "id": 1763, + "id": 1703, "luminance": 0, "opaque": false, "replaceable": false, @@ -21017,9 +20122,9 @@ ] }, { - "id": 107, - "name": "lime_bed", - "translation_key": "block.minecraft.lime_bed", + "id": 104, + "name": "orange_bed", + "translation_key": "block.minecraft.orange_bed", "item_id": 925, "properties": [ { @@ -21046,10 +20151,10 @@ ] } ], - "default_state_id": 1767, + "default_state_id": 1707, "states": [ { - "id": 1764, + "id": 1704, "luminance": 0, "opaque": false, "replaceable": false, @@ -21062,7 +20167,7 @@ "block_entity_type": 24 }, { - "id": 1765, + "id": 1705, "luminance": 0, "opaque": false, "replaceable": false, @@ -21075,7 +20180,7 @@ "block_entity_type": 24 }, { - "id": 1766, + "id": 1706, "luminance": 0, "opaque": false, "replaceable": false, @@ -21088,7 +20193,7 @@ "block_entity_type": 24 }, { - "id": 1767, + "id": 1707, "luminance": 0, "opaque": false, "replaceable": false, @@ -21101,7 +20206,7 @@ "block_entity_type": 24 }, { - "id": 1768, + "id": 1708, "luminance": 0, "opaque": false, "replaceable": false, @@ -21114,7 +20219,7 @@ "block_entity_type": 24 }, { - "id": 1769, + "id": 1709, "luminance": 0, "opaque": false, "replaceable": false, @@ -21127,7 +20232,7 @@ "block_entity_type": 24 }, { - "id": 1770, + "id": 1710, "luminance": 0, "opaque": false, "replaceable": false, @@ -21140,7 +20245,7 @@ "block_entity_type": 24 }, { - "id": 1771, + "id": 1711, "luminance": 0, "opaque": false, "replaceable": false, @@ -21153,7 +20258,7 @@ "block_entity_type": 24 }, { - "id": 1772, + "id": 1712, "luminance": 0, "opaque": false, "replaceable": false, @@ -21167,7 +20272,7 @@ "block_entity_type": 24 }, { - "id": 1773, + "id": 1713, "luminance": 0, "opaque": false, "replaceable": false, @@ -21180,7 +20285,7 @@ "block_entity_type": 24 }, { - "id": 1774, + "id": 1714, "luminance": 0, "opaque": false, "replaceable": false, @@ -21194,7 +20299,7 @@ "block_entity_type": 24 }, { - "id": 1775, + "id": 1715, "luminance": 0, "opaque": false, "replaceable": false, @@ -21207,7 +20312,7 @@ "block_entity_type": 24 }, { - "id": 1776, + "id": 1716, "luminance": 0, "opaque": false, "replaceable": false, @@ -21220,7 +20325,7 @@ "block_entity_type": 24 }, { - "id": 1777, + "id": 1717, "luminance": 0, "opaque": false, "replaceable": false, @@ -21234,7 +20339,7 @@ "block_entity_type": 24 }, { - "id": 1778, + "id": 1718, "luminance": 0, "opaque": false, "replaceable": false, @@ -21247,7 +20352,7 @@ "block_entity_type": 24 }, { - "id": 1779, + "id": 1719, "luminance": 0, "opaque": false, "replaceable": false, @@ -21263,9 +20368,9 @@ ] }, { - "id": 108, - "name": "pink_bed", - "translation_key": "block.minecraft.pink_bed", + "id": 105, + "name": "magenta_bed", + "translation_key": "block.minecraft.magenta_bed", "item_id": 926, "properties": [ { @@ -21292,10 +20397,10 @@ ] } ], - "default_state_id": 1783, + "default_state_id": 1723, "states": [ { - "id": 1780, + "id": 1720, "luminance": 0, "opaque": false, "replaceable": false, @@ -21308,7 +20413,7 @@ "block_entity_type": 24 }, { - "id": 1781, + "id": 1721, "luminance": 0, "opaque": false, "replaceable": false, @@ -21321,7 +20426,7 @@ "block_entity_type": 24 }, { - "id": 1782, + "id": 1722, "luminance": 0, "opaque": false, "replaceable": false, @@ -21334,7 +20439,7 @@ "block_entity_type": 24 }, { - "id": 1783, + "id": 1723, "luminance": 0, "opaque": false, "replaceable": false, @@ -21347,7 +20452,7 @@ "block_entity_type": 24 }, { - "id": 1784, + "id": 1724, "luminance": 0, "opaque": false, "replaceable": false, @@ -21360,7 +20465,7 @@ "block_entity_type": 24 }, { - "id": 1785, + "id": 1725, "luminance": 0, "opaque": false, "replaceable": false, @@ -21373,7 +20478,7 @@ "block_entity_type": 24 }, { - "id": 1786, + "id": 1726, "luminance": 0, "opaque": false, "replaceable": false, @@ -21386,7 +20491,7 @@ "block_entity_type": 24 }, { - "id": 1787, + "id": 1727, "luminance": 0, "opaque": false, "replaceable": false, @@ -21399,7 +20504,7 @@ "block_entity_type": 24 }, { - "id": 1788, + "id": 1728, "luminance": 0, "opaque": false, "replaceable": false, @@ -21413,7 +20518,7 @@ "block_entity_type": 24 }, { - "id": 1789, + "id": 1729, "luminance": 0, "opaque": false, "replaceable": false, @@ -21426,7 +20531,7 @@ "block_entity_type": 24 }, { - "id": 1790, + "id": 1730, "luminance": 0, "opaque": false, "replaceable": false, @@ -21440,7 +20545,7 @@ "block_entity_type": 24 }, { - "id": 1791, + "id": 1731, "luminance": 0, "opaque": false, "replaceable": false, @@ -21453,7 +20558,7 @@ "block_entity_type": 24 }, { - "id": 1792, + "id": 1732, "luminance": 0, "opaque": false, "replaceable": false, @@ -21466,7 +20571,7 @@ "block_entity_type": 24 }, { - "id": 1793, + "id": 1733, "luminance": 0, "opaque": false, "replaceable": false, @@ -21480,7 +20585,7 @@ "block_entity_type": 24 }, { - "id": 1794, + "id": 1734, "luminance": 0, "opaque": false, "replaceable": false, @@ -21493,7 +20598,7 @@ "block_entity_type": 24 }, { - "id": 1795, + "id": 1735, "luminance": 0, "opaque": false, "replaceable": false, @@ -21509,9 +20614,9 @@ ] }, { - "id": 109, - "name": "gray_bed", - "translation_key": "block.minecraft.gray_bed", + "id": 106, + "name": "light_blue_bed", + "translation_key": "block.minecraft.light_blue_bed", "item_id": 927, "properties": [ { @@ -21538,10 +20643,10 @@ ] } ], - "default_state_id": 1799, + "default_state_id": 1739, "states": [ { - "id": 1796, + "id": 1736, "luminance": 0, "opaque": false, "replaceable": false, @@ -21554,7 +20659,7 @@ "block_entity_type": 24 }, { - "id": 1797, + "id": 1737, "luminance": 0, "opaque": false, "replaceable": false, @@ -21567,7 +20672,7 @@ "block_entity_type": 24 }, { - "id": 1798, + "id": 1738, "luminance": 0, "opaque": false, "replaceable": false, @@ -21580,7 +20685,7 @@ "block_entity_type": 24 }, { - "id": 1799, + "id": 1739, "luminance": 0, "opaque": false, "replaceable": false, @@ -21593,7 +20698,7 @@ "block_entity_type": 24 }, { - "id": 1800, + "id": 1740, "luminance": 0, "opaque": false, "replaceable": false, @@ -21606,7 +20711,7 @@ "block_entity_type": 24 }, { - "id": 1801, + "id": 1741, "luminance": 0, "opaque": false, "replaceable": false, @@ -21619,7 +20724,7 @@ "block_entity_type": 24 }, { - "id": 1802, + "id": 1742, "luminance": 0, "opaque": false, "replaceable": false, @@ -21632,7 +20737,7 @@ "block_entity_type": 24 }, { - "id": 1803, + "id": 1743, "luminance": 0, "opaque": false, "replaceable": false, @@ -21645,7 +20750,7 @@ "block_entity_type": 24 }, { - "id": 1804, + "id": 1744, "luminance": 0, "opaque": false, "replaceable": false, @@ -21659,7 +20764,7 @@ "block_entity_type": 24 }, { - "id": 1805, + "id": 1745, "luminance": 0, "opaque": false, "replaceable": false, @@ -21672,7 +20777,7 @@ "block_entity_type": 24 }, { - "id": 1806, + "id": 1746, "luminance": 0, "opaque": false, "replaceable": false, @@ -21686,7 +20791,7 @@ "block_entity_type": 24 }, { - "id": 1807, + "id": 1747, "luminance": 0, "opaque": false, "replaceable": false, @@ -21699,7 +20804,7 @@ "block_entity_type": 24 }, { - "id": 1808, + "id": 1748, "luminance": 0, "opaque": false, "replaceable": false, @@ -21712,7 +20817,7 @@ "block_entity_type": 24 }, { - "id": 1809, + "id": 1749, "luminance": 0, "opaque": false, "replaceable": false, @@ -21726,7 +20831,7 @@ "block_entity_type": 24 }, { - "id": 1810, + "id": 1750, "luminance": 0, "opaque": false, "replaceable": false, @@ -21739,7 +20844,7 @@ "block_entity_type": 24 }, { - "id": 1811, + "id": 1751, "luminance": 0, "opaque": false, "replaceable": false, @@ -21755,9 +20860,9 @@ ] }, { - "id": 110, - "name": "light_gray_bed", - "translation_key": "block.minecraft.light_gray_bed", + "id": 107, + "name": "yellow_bed", + "translation_key": "block.minecraft.yellow_bed", "item_id": 928, "properties": [ { @@ -21784,10 +20889,10 @@ ] } ], - "default_state_id": 1815, + "default_state_id": 1755, "states": [ { - "id": 1812, + "id": 1752, "luminance": 0, "opaque": false, "replaceable": false, @@ -21800,7 +20905,7 @@ "block_entity_type": 24 }, { - "id": 1813, + "id": 1753, "luminance": 0, "opaque": false, "replaceable": false, @@ -21813,7 +20918,7 @@ "block_entity_type": 24 }, { - "id": 1814, + "id": 1754, "luminance": 0, "opaque": false, "replaceable": false, @@ -21826,7 +20931,7 @@ "block_entity_type": 24 }, { - "id": 1815, + "id": 1755, "luminance": 0, "opaque": false, "replaceable": false, @@ -21839,7 +20944,7 @@ "block_entity_type": 24 }, { - "id": 1816, + "id": 1756, "luminance": 0, "opaque": false, "replaceable": false, @@ -21852,7 +20957,7 @@ "block_entity_type": 24 }, { - "id": 1817, + "id": 1757, "luminance": 0, "opaque": false, "replaceable": false, @@ -21865,7 +20970,7 @@ "block_entity_type": 24 }, { - "id": 1818, + "id": 1758, "luminance": 0, "opaque": false, "replaceable": false, @@ -21878,7 +20983,7 @@ "block_entity_type": 24 }, { - "id": 1819, + "id": 1759, "luminance": 0, "opaque": false, "replaceable": false, @@ -21891,7 +20996,7 @@ "block_entity_type": 24 }, { - "id": 1820, + "id": 1760, "luminance": 0, "opaque": false, "replaceable": false, @@ -21905,7 +21010,7 @@ "block_entity_type": 24 }, { - "id": 1821, + "id": 1761, "luminance": 0, "opaque": false, "replaceable": false, @@ -21918,7 +21023,7 @@ "block_entity_type": 24 }, { - "id": 1822, + "id": 1762, "luminance": 0, "opaque": false, "replaceable": false, @@ -21932,7 +21037,7 @@ "block_entity_type": 24 }, { - "id": 1823, + "id": 1763, "luminance": 0, "opaque": false, "replaceable": false, @@ -21945,7 +21050,7 @@ "block_entity_type": 24 }, { - "id": 1824, + "id": 1764, "luminance": 0, "opaque": false, "replaceable": false, @@ -21958,7 +21063,7 @@ "block_entity_type": 24 }, { - "id": 1825, + "id": 1765, "luminance": 0, "opaque": false, "replaceable": false, @@ -21972,7 +21077,7 @@ "block_entity_type": 24 }, { - "id": 1826, + "id": 1766, "luminance": 0, "opaque": false, "replaceable": false, @@ -21985,7 +21090,7 @@ "block_entity_type": 24 }, { - "id": 1827, + "id": 1767, "luminance": 0, "opaque": false, "replaceable": false, @@ -22001,9 +21106,9 @@ ] }, { - "id": 111, - "name": "cyan_bed", - "translation_key": "block.minecraft.cyan_bed", + "id": 108, + "name": "lime_bed", + "translation_key": "block.minecraft.lime_bed", "item_id": 929, "properties": [ { @@ -22030,10 +21135,10 @@ ] } ], - "default_state_id": 1831, + "default_state_id": 1771, "states": [ { - "id": 1828, + "id": 1768, "luminance": 0, "opaque": false, "replaceable": false, @@ -22046,7 +21151,7 @@ "block_entity_type": 24 }, { - "id": 1829, + "id": 1769, "luminance": 0, "opaque": false, "replaceable": false, @@ -22059,7 +21164,7 @@ "block_entity_type": 24 }, { - "id": 1830, + "id": 1770, "luminance": 0, "opaque": false, "replaceable": false, @@ -22072,7 +21177,7 @@ "block_entity_type": 24 }, { - "id": 1831, + "id": 1771, "luminance": 0, "opaque": false, "replaceable": false, @@ -22085,7 +21190,7 @@ "block_entity_type": 24 }, { - "id": 1832, + "id": 1772, "luminance": 0, "opaque": false, "replaceable": false, @@ -22098,7 +21203,7 @@ "block_entity_type": 24 }, { - "id": 1833, + "id": 1773, "luminance": 0, "opaque": false, "replaceable": false, @@ -22111,7 +21216,7 @@ "block_entity_type": 24 }, { - "id": 1834, + "id": 1774, "luminance": 0, "opaque": false, "replaceable": false, @@ -22124,7 +21229,7 @@ "block_entity_type": 24 }, { - "id": 1835, + "id": 1775, "luminance": 0, "opaque": false, "replaceable": false, @@ -22137,7 +21242,7 @@ "block_entity_type": 24 }, { - "id": 1836, + "id": 1776, "luminance": 0, "opaque": false, "replaceable": false, @@ -22151,7 +21256,7 @@ "block_entity_type": 24 }, { - "id": 1837, + "id": 1777, "luminance": 0, "opaque": false, "replaceable": false, @@ -22164,7 +21269,7 @@ "block_entity_type": 24 }, { - "id": 1838, + "id": 1778, "luminance": 0, "opaque": false, "replaceable": false, @@ -22178,7 +21283,7 @@ "block_entity_type": 24 }, { - "id": 1839, + "id": 1779, "luminance": 0, "opaque": false, "replaceable": false, @@ -22191,7 +21296,7 @@ "block_entity_type": 24 }, { - "id": 1840, + "id": 1780, "luminance": 0, "opaque": false, "replaceable": false, @@ -22204,7 +21309,7 @@ "block_entity_type": 24 }, { - "id": 1841, + "id": 1781, "luminance": 0, "opaque": false, "replaceable": false, @@ -22218,7 +21323,7 @@ "block_entity_type": 24 }, { - "id": 1842, + "id": 1782, "luminance": 0, "opaque": false, "replaceable": false, @@ -22231,7 +21336,7 @@ "block_entity_type": 24 }, { - "id": 1843, + "id": 1783, "luminance": 0, "opaque": false, "replaceable": false, @@ -22247,9 +21352,9 @@ ] }, { - "id": 112, - "name": "purple_bed", - "translation_key": "block.minecraft.purple_bed", + "id": 109, + "name": "pink_bed", + "translation_key": "block.minecraft.pink_bed", "item_id": 930, "properties": [ { @@ -22276,10 +21381,10 @@ ] } ], - "default_state_id": 1847, + "default_state_id": 1787, "states": [ { - "id": 1844, + "id": 1784, "luminance": 0, "opaque": false, "replaceable": false, @@ -22292,7 +21397,7 @@ "block_entity_type": 24 }, { - "id": 1845, + "id": 1785, "luminance": 0, "opaque": false, "replaceable": false, @@ -22305,7 +21410,7 @@ "block_entity_type": 24 }, { - "id": 1846, + "id": 1786, "luminance": 0, "opaque": false, "replaceable": false, @@ -22318,7 +21423,7 @@ "block_entity_type": 24 }, { - "id": 1847, + "id": 1787, "luminance": 0, "opaque": false, "replaceable": false, @@ -22331,7 +21436,7 @@ "block_entity_type": 24 }, { - "id": 1848, + "id": 1788, "luminance": 0, "opaque": false, "replaceable": false, @@ -22344,7 +21449,7 @@ "block_entity_type": 24 }, { - "id": 1849, + "id": 1789, "luminance": 0, "opaque": false, "replaceable": false, @@ -22357,7 +21462,7 @@ "block_entity_type": 24 }, { - "id": 1850, + "id": 1790, "luminance": 0, "opaque": false, "replaceable": false, @@ -22370,7 +21475,7 @@ "block_entity_type": 24 }, { - "id": 1851, + "id": 1791, "luminance": 0, "opaque": false, "replaceable": false, @@ -22383,7 +21488,7 @@ "block_entity_type": 24 }, { - "id": 1852, + "id": 1792, "luminance": 0, "opaque": false, "replaceable": false, @@ -22397,7 +21502,7 @@ "block_entity_type": 24 }, { - "id": 1853, + "id": 1793, "luminance": 0, "opaque": false, "replaceable": false, @@ -22410,7 +21515,7 @@ "block_entity_type": 24 }, { - "id": 1854, + "id": 1794, "luminance": 0, "opaque": false, "replaceable": false, @@ -22424,7 +21529,7 @@ "block_entity_type": 24 }, { - "id": 1855, + "id": 1795, "luminance": 0, "opaque": false, "replaceable": false, @@ -22437,7 +21542,7 @@ "block_entity_type": 24 }, { - "id": 1856, + "id": 1796, "luminance": 0, "opaque": false, "replaceable": false, @@ -22450,7 +21555,7 @@ "block_entity_type": 24 }, { - "id": 1857, + "id": 1797, "luminance": 0, "opaque": false, "replaceable": false, @@ -22464,7 +21569,7 @@ "block_entity_type": 24 }, { - "id": 1858, + "id": 1798, "luminance": 0, "opaque": false, "replaceable": false, @@ -22477,7 +21582,7 @@ "block_entity_type": 24 }, { - "id": 1859, + "id": 1799, "luminance": 0, "opaque": false, "replaceable": false, @@ -22493,9 +21598,9 @@ ] }, { - "id": 113, - "name": "blue_bed", - "translation_key": "block.minecraft.blue_bed", + "id": 110, + "name": "gray_bed", + "translation_key": "block.minecraft.gray_bed", "item_id": 931, "properties": [ { @@ -22522,10 +21627,10 @@ ] } ], - "default_state_id": 1863, + "default_state_id": 1803, "states": [ { - "id": 1860, + "id": 1800, "luminance": 0, "opaque": false, "replaceable": false, @@ -22538,7 +21643,7 @@ "block_entity_type": 24 }, { - "id": 1861, + "id": 1801, "luminance": 0, "opaque": false, "replaceable": false, @@ -22551,7 +21656,7 @@ "block_entity_type": 24 }, { - "id": 1862, + "id": 1802, "luminance": 0, "opaque": false, "replaceable": false, @@ -22564,7 +21669,7 @@ "block_entity_type": 24 }, { - "id": 1863, + "id": 1803, "luminance": 0, "opaque": false, "replaceable": false, @@ -22577,7 +21682,7 @@ "block_entity_type": 24 }, { - "id": 1864, + "id": 1804, "luminance": 0, "opaque": false, "replaceable": false, @@ -22590,7 +21695,7 @@ "block_entity_type": 24 }, { - "id": 1865, + "id": 1805, "luminance": 0, "opaque": false, "replaceable": false, @@ -22603,7 +21708,7 @@ "block_entity_type": 24 }, { - "id": 1866, + "id": 1806, "luminance": 0, "opaque": false, "replaceable": false, @@ -22616,7 +21721,7 @@ "block_entity_type": 24 }, { - "id": 1867, + "id": 1807, "luminance": 0, "opaque": false, "replaceable": false, @@ -22629,7 +21734,7 @@ "block_entity_type": 24 }, { - "id": 1868, + "id": 1808, "luminance": 0, "opaque": false, "replaceable": false, @@ -22643,7 +21748,7 @@ "block_entity_type": 24 }, { - "id": 1869, + "id": 1809, "luminance": 0, "opaque": false, "replaceable": false, @@ -22656,7 +21761,7 @@ "block_entity_type": 24 }, { - "id": 1870, + "id": 1810, "luminance": 0, "opaque": false, "replaceable": false, @@ -22670,7 +21775,7 @@ "block_entity_type": 24 }, { - "id": 1871, + "id": 1811, "luminance": 0, "opaque": false, "replaceable": false, @@ -22683,7 +21788,7 @@ "block_entity_type": 24 }, { - "id": 1872, + "id": 1812, "luminance": 0, "opaque": false, "replaceable": false, @@ -22696,7 +21801,7 @@ "block_entity_type": 24 }, { - "id": 1873, + "id": 1813, "luminance": 0, "opaque": false, "replaceable": false, @@ -22710,7 +21815,7 @@ "block_entity_type": 24 }, { - "id": 1874, + "id": 1814, "luminance": 0, "opaque": false, "replaceable": false, @@ -22723,7 +21828,7 @@ "block_entity_type": 24 }, { - "id": 1875, + "id": 1815, "luminance": 0, "opaque": false, "replaceable": false, @@ -22739,9 +21844,9 @@ ] }, { - "id": 114, - "name": "brown_bed", - "translation_key": "block.minecraft.brown_bed", + "id": 111, + "name": "light_gray_bed", + "translation_key": "block.minecraft.light_gray_bed", "item_id": 932, "properties": [ { @@ -22768,10 +21873,10 @@ ] } ], - "default_state_id": 1879, + "default_state_id": 1819, "states": [ { - "id": 1876, + "id": 1816, "luminance": 0, "opaque": false, "replaceable": false, @@ -22784,7 +21889,7 @@ "block_entity_type": 24 }, { - "id": 1877, + "id": 1817, "luminance": 0, "opaque": false, "replaceable": false, @@ -22797,7 +21902,7 @@ "block_entity_type": 24 }, { - "id": 1878, + "id": 1818, "luminance": 0, "opaque": false, "replaceable": false, @@ -22810,7 +21915,7 @@ "block_entity_type": 24 }, { - "id": 1879, + "id": 1819, "luminance": 0, "opaque": false, "replaceable": false, @@ -22823,7 +21928,7 @@ "block_entity_type": 24 }, { - "id": 1880, + "id": 1820, "luminance": 0, "opaque": false, "replaceable": false, @@ -22836,7 +21941,7 @@ "block_entity_type": 24 }, { - "id": 1881, + "id": 1821, "luminance": 0, "opaque": false, "replaceable": false, @@ -22849,7 +21954,7 @@ "block_entity_type": 24 }, { - "id": 1882, + "id": 1822, "luminance": 0, "opaque": false, "replaceable": false, @@ -22862,7 +21967,7 @@ "block_entity_type": 24 }, { - "id": 1883, + "id": 1823, "luminance": 0, "opaque": false, "replaceable": false, @@ -22875,7 +21980,7 @@ "block_entity_type": 24 }, { - "id": 1884, + "id": 1824, "luminance": 0, "opaque": false, "replaceable": false, @@ -22889,7 +21994,7 @@ "block_entity_type": 24 }, { - "id": 1885, + "id": 1825, "luminance": 0, "opaque": false, "replaceable": false, @@ -22902,7 +22007,7 @@ "block_entity_type": 24 }, { - "id": 1886, + "id": 1826, "luminance": 0, "opaque": false, "replaceable": false, @@ -22916,7 +22021,7 @@ "block_entity_type": 24 }, { - "id": 1887, + "id": 1827, "luminance": 0, "opaque": false, "replaceable": false, @@ -22929,7 +22034,7 @@ "block_entity_type": 24 }, { - "id": 1888, + "id": 1828, "luminance": 0, "opaque": false, "replaceable": false, @@ -22942,7 +22047,7 @@ "block_entity_type": 24 }, { - "id": 1889, + "id": 1829, "luminance": 0, "opaque": false, "replaceable": false, @@ -22956,7 +22061,7 @@ "block_entity_type": 24 }, { - "id": 1890, + "id": 1830, "luminance": 0, "opaque": false, "replaceable": false, @@ -22969,7 +22074,7 @@ "block_entity_type": 24 }, { - "id": 1891, + "id": 1831, "luminance": 0, "opaque": false, "replaceable": false, @@ -22985,9 +22090,9 @@ ] }, { - "id": 115, - "name": "green_bed", - "translation_key": "block.minecraft.green_bed", + "id": 112, + "name": "cyan_bed", + "translation_key": "block.minecraft.cyan_bed", "item_id": 933, "properties": [ { @@ -23014,10 +22119,10 @@ ] } ], - "default_state_id": 1895, + "default_state_id": 1835, "states": [ { - "id": 1892, + "id": 1832, "luminance": 0, "opaque": false, "replaceable": false, @@ -23030,7 +22135,7 @@ "block_entity_type": 24 }, { - "id": 1893, + "id": 1833, "luminance": 0, "opaque": false, "replaceable": false, @@ -23043,7 +22148,7 @@ "block_entity_type": 24 }, { - "id": 1894, + "id": 1834, "luminance": 0, "opaque": false, "replaceable": false, @@ -23056,7 +22161,7 @@ "block_entity_type": 24 }, { - "id": 1895, + "id": 1835, "luminance": 0, "opaque": false, "replaceable": false, @@ -23069,7 +22174,7 @@ "block_entity_type": 24 }, { - "id": 1896, + "id": 1836, "luminance": 0, "opaque": false, "replaceable": false, @@ -23082,7 +22187,7 @@ "block_entity_type": 24 }, { - "id": 1897, + "id": 1837, "luminance": 0, "opaque": false, "replaceable": false, @@ -23095,7 +22200,7 @@ "block_entity_type": 24 }, { - "id": 1898, + "id": 1838, "luminance": 0, "opaque": false, "replaceable": false, @@ -23108,7 +22213,7 @@ "block_entity_type": 24 }, { - "id": 1899, + "id": 1839, "luminance": 0, "opaque": false, "replaceable": false, @@ -23121,7 +22226,7 @@ "block_entity_type": 24 }, { - "id": 1900, + "id": 1840, "luminance": 0, "opaque": false, "replaceable": false, @@ -23135,7 +22240,7 @@ "block_entity_type": 24 }, { - "id": 1901, + "id": 1841, "luminance": 0, "opaque": false, "replaceable": false, @@ -23148,7 +22253,7 @@ "block_entity_type": 24 }, { - "id": 1902, + "id": 1842, "luminance": 0, "opaque": false, "replaceable": false, @@ -23162,7 +22267,7 @@ "block_entity_type": 24 }, { - "id": 1903, + "id": 1843, "luminance": 0, "opaque": false, "replaceable": false, @@ -23175,7 +22280,7 @@ "block_entity_type": 24 }, { - "id": 1904, + "id": 1844, "luminance": 0, "opaque": false, "replaceable": false, @@ -23188,7 +22293,7 @@ "block_entity_type": 24 }, { - "id": 1905, + "id": 1845, "luminance": 0, "opaque": false, "replaceable": false, @@ -23202,7 +22307,7 @@ "block_entity_type": 24 }, { - "id": 1906, + "id": 1846, "luminance": 0, "opaque": false, "replaceable": false, @@ -23215,7 +22320,7 @@ "block_entity_type": 24 }, { - "id": 1907, + "id": 1847, "luminance": 0, "opaque": false, "replaceable": false, @@ -23231,9 +22336,9 @@ ] }, { - "id": 116, - "name": "red_bed", - "translation_key": "block.minecraft.red_bed", + "id": 113, + "name": "purple_bed", + "translation_key": "block.minecraft.purple_bed", "item_id": 934, "properties": [ { @@ -23260,10 +22365,10 @@ ] } ], - "default_state_id": 1911, + "default_state_id": 1851, "states": [ { - "id": 1908, + "id": 1848, "luminance": 0, "opaque": false, "replaceable": false, @@ -23276,7 +22381,7 @@ "block_entity_type": 24 }, { - "id": 1909, + "id": 1849, "luminance": 0, "opaque": false, "replaceable": false, @@ -23289,7 +22394,7 @@ "block_entity_type": 24 }, { - "id": 1910, + "id": 1850, "luminance": 0, "opaque": false, "replaceable": false, @@ -23302,7 +22407,7 @@ "block_entity_type": 24 }, { - "id": 1911, + "id": 1851, "luminance": 0, "opaque": false, "replaceable": false, @@ -23315,7 +22420,7 @@ "block_entity_type": 24 }, { - "id": 1912, + "id": 1852, "luminance": 0, "opaque": false, "replaceable": false, @@ -23328,7 +22433,7 @@ "block_entity_type": 24 }, { - "id": 1913, + "id": 1853, "luminance": 0, "opaque": false, "replaceable": false, @@ -23341,7 +22446,7 @@ "block_entity_type": 24 }, { - "id": 1914, + "id": 1854, "luminance": 0, "opaque": false, "replaceable": false, @@ -23354,7 +22459,7 @@ "block_entity_type": 24 }, { - "id": 1915, + "id": 1855, "luminance": 0, "opaque": false, "replaceable": false, @@ -23367,7 +22472,7 @@ "block_entity_type": 24 }, { - "id": 1916, + "id": 1856, "luminance": 0, "opaque": false, "replaceable": false, @@ -23381,7 +22486,7 @@ "block_entity_type": 24 }, { - "id": 1917, + "id": 1857, "luminance": 0, "opaque": false, "replaceable": false, @@ -23394,7 +22499,7 @@ "block_entity_type": 24 }, { - "id": 1918, + "id": 1858, "luminance": 0, "opaque": false, "replaceable": false, @@ -23408,7 +22513,7 @@ "block_entity_type": 24 }, { - "id": 1919, + "id": 1859, "luminance": 0, "opaque": false, "replaceable": false, @@ -23421,7 +22526,7 @@ "block_entity_type": 24 }, { - "id": 1920, + "id": 1860, "luminance": 0, "opaque": false, "replaceable": false, @@ -23434,7 +22539,7 @@ "block_entity_type": 24 }, { - "id": 1921, + "id": 1861, "luminance": 0, "opaque": false, "replaceable": false, @@ -23448,7 +22553,7 @@ "block_entity_type": 24 }, { - "id": 1922, + "id": 1862, "luminance": 0, "opaque": false, "replaceable": false, @@ -23461,7 +22566,7 @@ "block_entity_type": 24 }, { - "id": 1923, + "id": 1863, "luminance": 0, "opaque": false, "replaceable": false, @@ -23477,9 +22582,9 @@ ] }, { - "id": 117, - "name": "black_bed", - "translation_key": "block.minecraft.black_bed", + "id": 114, + "name": "blue_bed", + "translation_key": "block.minecraft.blue_bed", "item_id": 935, "properties": [ { @@ -23506,10 +22611,10 @@ ] } ], - "default_state_id": 1927, + "default_state_id": 1867, "states": [ { - "id": 1924, + "id": 1864, "luminance": 0, "opaque": false, "replaceable": false, @@ -23521,16 +22626,913 @@ ], "block_entity_type": 24 }, + { + "id": 1865, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1866, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1867, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1868, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1869, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1870, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1871, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1872, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1873, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1874, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1875, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1876, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1877, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1878, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1879, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + } + ] + }, + { + "id": 115, + "name": "brown_bed", + "translation_key": "block.minecraft.brown_bed", + "item_id": 936, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1883, + "states": [ + { + "id": 1880, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1881, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1882, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1883, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1884, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1885, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1886, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1887, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1888, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1889, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1890, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1891, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1892, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1893, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1894, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1895, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + } + ] + }, + { + "id": 116, + "name": "green_bed", + "translation_key": "block.minecraft.green_bed", + "item_id": 937, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1899, + "states": [ + { + "id": 1896, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1897, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1898, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1899, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1900, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1901, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1902, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1903, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1904, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1905, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1906, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1907, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1908, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1909, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1910, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1911, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + } + ] + }, + { + "id": 117, + "name": "red_bed", + "translation_key": "block.minecraft.red_bed", + "item_id": 938, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1915, + "states": [ + { + "id": 1912, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1913, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1914, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1915, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1916, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1917, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1918, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1919, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1920, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1921, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1922, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1923, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1924, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, { "id": 1925, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ + 1, 5, - 6, - 7, - 8 + 9, + 10, + 11 ], "block_entity_type": 24 }, @@ -23540,10 +23542,10 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 1, 2, - 3, - 4 + 6, + 12, + 13 ], "block_entity_type": 24 }, @@ -23552,165 +23554,6 @@ "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1928, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1929, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1930, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 5, - 6, - 7, - 8 - ], - "block_entity_type": 24 - }, - { - "id": 1931, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 2, - 3, - 4 - ], - "block_entity_type": 24 - }, - { - "id": 1932, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1933, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1934, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1935, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1936, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1937, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 1, - 5, - 9, - 10, - 11 - ], - "block_entity_type": 24 - }, - { - "id": 1938, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 2, - 6, - 12, - 13 - ], - "block_entity_type": 24 - }, - { - "id": 1939, - "luminance": 0, - "opaque": false, - "replaceable": false, "collision_shapes": [ 1, 5, @@ -23724,9 +23567,255 @@ }, { "id": 118, + "name": "black_bed", + "translation_key": "block.minecraft.black_bed", + "item_id": 939, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "occupied", + "values": [ + "true", + "false" + ] + }, + { + "name": "part", + "values": [ + "head", + "foot" + ] + } + ], + "default_state_id": 1931, + "states": [ + { + "id": 1928, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1929, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1930, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1931, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1932, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1933, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1934, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 5, + 6, + 7, + 8 + ], + "block_entity_type": 24 + }, + { + "id": 1935, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 2, + 3, + 4 + ], + "block_entity_type": 24 + }, + { + "id": 1936, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1937, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1938, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1939, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1940, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1941, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + }, + { + "id": 1942, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 2, + 6, + 12, + 13 + ], + "block_entity_type": 24 + }, + { + "id": 1943, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 1, + 5, + 9, + 10, + 11 + ], + "block_entity_type": 24 + } + ] + }, + { + "id": 119, "name": "powered_rail", "translation_key": "block.minecraft.powered_rail", - "item_id": 719, + "item_id": 723, "properties": [ { "name": "powered", @@ -23754,36 +23843,8 @@ ] } ], - "default_state_id": 1953, + "default_state_id": 1957, "states": [ - { - "id": 1940, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 1941, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 1942, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 1943, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 1944, "luminance": 0, @@ -23923,43 +23984,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 119, - "name": "detector_rail", - "translation_key": "block.minecraft.detector_rail", - "item_id": 720, - "properties": [ - { - "name": "powered", - "values": [ - "true", - "false" - ] }, - { - "name": "shape", - "values": [ - "north_south", - "east_west", - "ascending_east", - "ascending_west", - "ascending_north", - "ascending_south" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 1977, - "states": [ { "id": 1964, "luminance": 0, @@ -23987,7 +24012,43 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 120, + "name": "detector_rail", + "translation_key": "block.minecraft.detector_rail", + "item_id": 724, + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] }, + { + "name": "shape", + "values": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 1981, + "states": [ { "id": 1968, "luminance": 0, @@ -24127,14 +24188,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 1988, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 1989, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 1990, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 1991, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 120, + "id": 121, "name": "sticky_piston", "translation_key": "block.minecraft.sticky_piston", - "item_id": 638, + "item_id": 641, "properties": [ { "name": "extended", @@ -24155,10 +24244,10 @@ ] } ], - "default_state_id": 1994, + "default_state_id": 1998, "states": [ { - "id": 1988, + "id": 1992, "luminance": 0, "opaque": true, "replaceable": false, @@ -24167,7 +24256,7 @@ ] }, { - "id": 1989, + "id": 1993, "luminance": 0, "opaque": true, "replaceable": false, @@ -24176,7 +24265,7 @@ ] }, { - "id": 1990, + "id": 1994, "luminance": 0, "opaque": true, "replaceable": false, @@ -24185,7 +24274,7 @@ ] }, { - "id": 1991, + "id": 1995, "luminance": 0, "opaque": true, "replaceable": false, @@ -24194,7 +24283,7 @@ ] }, { - "id": 1992, + "id": 1996, "luminance": 0, "opaque": true, "replaceable": false, @@ -24202,49 +24291,13 @@ 18 ] }, - { - "id": 1993, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 19 - ] - }, - { - "id": 1994, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 1995, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 1996, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 1997, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 19 ] }, { @@ -24264,19 +24317,55 @@ "collision_shapes": [ 0 ] + }, + { + "id": 2000, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 2001, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 2002, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 2003, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { - "id": 121, + "id": 122, "name": "cobweb", "translation_key": "block.minecraft.cobweb", - "item_id": 171, + "item_id": 172, "properties": [], - "default_state_id": 2000, + "default_state_id": 2004, "states": [ { - "id": 2000, + "id": 2004, "luminance": 0, "opaque": false, "replaceable": false, @@ -24285,32 +24374,15 @@ ] }, { - "id": 122, + "id": 123, "name": "grass", "translation_key": "block.minecraft.grass", - "item_id": 172, - "properties": [], - "default_state_id": 2001, - "states": [ - { - "id": 2001, - "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - } - ] - }, - { - "id": 123, - "name": "fern", - "translation_key": "block.minecraft.fern", "item_id": 173, "properties": [], - "default_state_id": 2002, + "default_state_id": 2005, "states": [ { - "id": 2002, + "id": 2005, "luminance": 0, "opaque": false, "replaceable": true, @@ -24320,14 +24392,14 @@ }, { "id": 124, - "name": "dead_bush", - "translation_key": "block.minecraft.dead_bush", - "item_id": 176, + "name": "fern", + "translation_key": "block.minecraft.fern", + "item_id": 174, "properties": [], - "default_state_id": 2003, + "default_state_id": 2006, "states": [ { - "id": 2003, + "id": 2006, "luminance": 0, "opaque": false, "replaceable": true, @@ -24337,14 +24409,14 @@ }, { "id": 125, - "name": "seagrass", - "translation_key": "block.minecraft.seagrass", + "name": "dead_bush", + "translation_key": "block.minecraft.dead_bush", "item_id": 177, "properties": [], - "default_state_id": 2004, + "default_state_id": 2007, "states": [ { - "id": 2004, + "id": 2007, "luminance": 0, "opaque": false, "replaceable": true, @@ -24354,6 +24426,23 @@ }, { "id": 126, + "name": "seagrass", + "translation_key": "block.minecraft.seagrass", + "item_id": 178, + "properties": [], + "default_state_id": 2008, + "states": [ + { + "id": 2008, + "luminance": 0, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + } + ] + }, + { + "id": 127, "name": "tall_seagrass", "translation_key": "block.minecraft.tall_seagrass", "item_id": 0, @@ -24366,17 +24455,17 @@ ] } ], - "default_state_id": 2006, + "default_state_id": 2010, "states": [ { - "id": 2005, + "id": 2009, "luminance": 0, "opaque": false, "replaceable": true, "collision_shapes": [] }, { - "id": 2006, + "id": 2010, "luminance": 0, "opaque": false, "replaceable": true, @@ -24385,10 +24474,10 @@ ] }, { - "id": 127, + "id": 128, "name": "piston", "translation_key": "block.minecraft.piston", - "item_id": 637, + "item_id": 640, "properties": [ { "name": "extended", @@ -24409,10 +24498,10 @@ ] } ], - "default_state_id": 2013, + "default_state_id": 2017, "states": [ { - "id": 2007, + "id": 2011, "luminance": 0, "opaque": true, "replaceable": false, @@ -24421,7 +24510,7 @@ ] }, { - "id": 2008, + "id": 2012, "luminance": 0, "opaque": true, "replaceable": false, @@ -24430,7 +24519,7 @@ ] }, { - "id": 2009, + "id": 2013, "luminance": 0, "opaque": true, "replaceable": false, @@ -24439,7 +24528,7 @@ ] }, { - "id": 2010, + "id": 2014, "luminance": 0, "opaque": true, "replaceable": false, @@ -24448,7 +24537,7 @@ ] }, { - "id": 2011, + "id": 2015, "luminance": 0, "opaque": true, "replaceable": false, @@ -24456,49 +24545,13 @@ 18 ] }, - { - "id": 2012, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 19 - ] - }, - { - "id": 2013, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 2014, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 2015, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 2016, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 19 ] }, { @@ -24518,11 +24571,47 @@ "collision_shapes": [ 0 ] + }, + { + "id": 2019, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 2020, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 2021, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 2022, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { - "id": 128, + "id": 129, "name": "piston_head", "translation_key": "block.minecraft.piston_head", "item_id": 0, @@ -24553,56 +24642,16 @@ ] } ], - "default_state_id": 2021, + "default_state_id": 2025, "states": [ - { - "id": 2019, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 20, - 21 - ] - }, - { - "id": 2020, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 20, - 21 - ] - }, - { - "id": 2021, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 20, - 22 - ] - }, - { - "id": 2022, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 20, - 22 - ] - }, { "id": 2023, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 23, - 24 + 20, + 21 ] }, { @@ -24611,8 +24660,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 23, - 24 + 20, + 21 ] }, { @@ -24621,8 +24670,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 23, - 25 + 20, + 22 ] }, { @@ -24631,8 +24680,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 23, - 25 + 20, + 22 ] }, { @@ -24641,8 +24690,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 26, - 27 + 23, + 24 ] }, { @@ -24651,8 +24700,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 26, - 27 + 23, + 24 ] }, { @@ -24661,8 +24710,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 26, - 28 + 23, + 25 ] }, { @@ -24671,8 +24720,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 26, - 28 + 23, + 25 ] }, { @@ -24681,8 +24730,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 29, - 30 + 26, + 27 ] }, { @@ -24691,8 +24740,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 29, - 30 + 26, + 27 ] }, { @@ -24701,8 +24750,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 29, - 31 + 26, + 28 ] }, { @@ -24711,8 +24760,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 29, - 31 + 26, + 28 ] }, { @@ -24721,11 +24770,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 32, - 33, - 34, - 35, - 36 + 29, + 30 ] }, { @@ -24734,11 +24780,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 32, - 33, - 34, - 35, - 36 + 29, + 30 ] }, { @@ -24747,11 +24790,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 37, - 33, - 34, - 35, - 36 + 29, + 31 ] }, { @@ -24760,11 +24800,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 37, - 33, - 34, - 35, - 36 + 29, + 31 ] }, { @@ -24773,8 +24810,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 38, - 39 + 32, + 33, + 34, + 35, + 36 ] }, { @@ -24783,8 +24823,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 38, - 39 + 32, + 33, + 34, + 35, + 36 ] }, { @@ -24793,8 +24836,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 38, - 40 + 37, + 33, + 34, + 35, + 36 ] }, { @@ -24802,6 +24848,49 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 37, + 33, + 34, + 35, + 36 + ] + }, + { + "id": 2043, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 38, + 39 + ] + }, + { + "id": 2044, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 38, + 39 + ] + }, + { + "id": 2045, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 38, + 40 + ] + }, + { + "id": 2046, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 38, 40 @@ -24810,87 +24899,11 @@ ] }, { - "id": 129, + "id": 130, "name": "white_wool", "translation_key": "block.minecraft.white_wool", - "item_id": 179, - "properties": [], - "default_state_id": 2043, - "states": [ - { - "id": 2043, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 130, - "name": "orange_wool", - "translation_key": "block.minecraft.orange_wool", "item_id": 180, "properties": [], - "default_state_id": 2044, - "states": [ - { - "id": 2044, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 131, - "name": "magenta_wool", - "translation_key": "block.minecraft.magenta_wool", - "item_id": 181, - "properties": [], - "default_state_id": 2045, - "states": [ - { - "id": 2045, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 132, - "name": "light_blue_wool", - "translation_key": "block.minecraft.light_blue_wool", - "item_id": 182, - "properties": [], - "default_state_id": 2046, - "states": [ - { - "id": 2046, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 133, - "name": "yellow_wool", - "translation_key": "block.minecraft.yellow_wool", - "item_id": 183, - "properties": [], "default_state_id": 2047, "states": [ { @@ -24905,10 +24918,10 @@ ] }, { - "id": 134, - "name": "lime_wool", - "translation_key": "block.minecraft.lime_wool", - "item_id": 184, + "id": 131, + "name": "orange_wool", + "translation_key": "block.minecraft.orange_wool", + "item_id": 181, "properties": [], "default_state_id": 2048, "states": [ @@ -24924,10 +24937,10 @@ ] }, { - "id": 135, - "name": "pink_wool", - "translation_key": "block.minecraft.pink_wool", - "item_id": 185, + "id": 132, + "name": "magenta_wool", + "translation_key": "block.minecraft.magenta_wool", + "item_id": 182, "properties": [], "default_state_id": 2049, "states": [ @@ -24943,10 +24956,10 @@ ] }, { - "id": 136, - "name": "gray_wool", - "translation_key": "block.minecraft.gray_wool", - "item_id": 186, + "id": 133, + "name": "light_blue_wool", + "translation_key": "block.minecraft.light_blue_wool", + "item_id": 183, "properties": [], "default_state_id": 2050, "states": [ @@ -24962,10 +24975,10 @@ ] }, { - "id": 137, - "name": "light_gray_wool", - "translation_key": "block.minecraft.light_gray_wool", - "item_id": 187, + "id": 134, + "name": "yellow_wool", + "translation_key": "block.minecraft.yellow_wool", + "item_id": 184, "properties": [], "default_state_id": 2051, "states": [ @@ -24981,10 +24994,10 @@ ] }, { - "id": 138, - "name": "cyan_wool", - "translation_key": "block.minecraft.cyan_wool", - "item_id": 188, + "id": 135, + "name": "lime_wool", + "translation_key": "block.minecraft.lime_wool", + "item_id": 185, "properties": [], "default_state_id": 2052, "states": [ @@ -25000,10 +25013,10 @@ ] }, { - "id": 139, - "name": "purple_wool", - "translation_key": "block.minecraft.purple_wool", - "item_id": 189, + "id": 136, + "name": "pink_wool", + "translation_key": "block.minecraft.pink_wool", + "item_id": 186, "properties": [], "default_state_id": 2053, "states": [ @@ -25019,10 +25032,10 @@ ] }, { - "id": 140, - "name": "blue_wool", - "translation_key": "block.minecraft.blue_wool", - "item_id": 190, + "id": 137, + "name": "gray_wool", + "translation_key": "block.minecraft.gray_wool", + "item_id": 187, "properties": [], "default_state_id": 2054, "states": [ @@ -25038,10 +25051,10 @@ ] }, { - "id": 141, - "name": "brown_wool", - "translation_key": "block.minecraft.brown_wool", - "item_id": 191, + "id": 138, + "name": "light_gray_wool", + "translation_key": "block.minecraft.light_gray_wool", + "item_id": 188, "properties": [], "default_state_id": 2055, "states": [ @@ -25057,10 +25070,10 @@ ] }, { - "id": 142, - "name": "green_wool", - "translation_key": "block.minecraft.green_wool", - "item_id": 192, + "id": 139, + "name": "cyan_wool", + "translation_key": "block.minecraft.cyan_wool", + "item_id": 189, "properties": [], "default_state_id": 2056, "states": [ @@ -25076,10 +25089,10 @@ ] }, { - "id": 143, - "name": "red_wool", - "translation_key": "block.minecraft.red_wool", - "item_id": 193, + "id": 140, + "name": "purple_wool", + "translation_key": "block.minecraft.purple_wool", + "item_id": 190, "properties": [], "default_state_id": 2057, "states": [ @@ -25095,10 +25108,10 @@ ] }, { - "id": 144, - "name": "black_wool", - "translation_key": "block.minecraft.black_wool", - "item_id": 194, + "id": 141, + "name": "blue_wool", + "translation_key": "block.minecraft.blue_wool", + "item_id": 191, "properties": [], "default_state_id": 2058, "states": [ @@ -25113,8 +25126,84 @@ } ] }, + { + "id": 142, + "name": "brown_wool", + "translation_key": "block.minecraft.brown_wool", + "item_id": 192, + "properties": [], + "default_state_id": 2059, + "states": [ + { + "id": 2059, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 143, + "name": "green_wool", + "translation_key": "block.minecraft.green_wool", + "item_id": 193, + "properties": [], + "default_state_id": 2060, + "states": [ + { + "id": 2060, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 144, + "name": "red_wool", + "translation_key": "block.minecraft.red_wool", + "item_id": 194, + "properties": [], + "default_state_id": 2061, + "states": [ + { + "id": 2061, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, { "id": 145, + "name": "black_wool", + "translation_key": "block.minecraft.black_wool", + "item_id": 195, + "properties": [], + "default_state_id": 2062, + "states": [ + { + "id": 2062, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 146, "name": "moving_piston", "translation_key": "block.minecraft.moving_piston", "item_id": 0, @@ -25138,40 +25227,8 @@ ] } ], - "default_state_id": 2059, + "default_state_id": 2063, "states": [ - { - "id": 2059, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 10 - }, - { - "id": 2060, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 10 - }, - { - "id": 2061, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 10 - }, - { - "id": 2062, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 10 - }, { "id": 2063, "luminance": 0, @@ -25235,82 +25292,46 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 10 - } - ] - }, - { - "id": 146, - "name": "dandelion", - "translation_key": "block.minecraft.dandelion", - "item_id": 195, - "properties": [], - "default_state_id": 2071, - "states": [ + }, { "id": 2071, "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 147, - "name": "torchflower", - "translation_key": "block.minecraft.torchflower", - "item_id": 208, - "properties": [], - "default_state_id": 2072, - "states": [ + "collision_shapes": [], + "block_entity_type": 10 + }, { "id": 2072, "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 148, - "name": "poppy", - "translation_key": "block.minecraft.poppy", - "item_id": 196, - "properties": [], - "default_state_id": 2073, - "states": [ + "collision_shapes": [], + "block_entity_type": 10 + }, { "id": 2073, "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 149, - "name": "blue_orchid", - "translation_key": "block.minecraft.blue_orchid", - "item_id": 197, - "properties": [], - "default_state_id": 2074, - "states": [ + "collision_shapes": [], + "block_entity_type": 10 + }, { "id": 2074, "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [], + "block_entity_type": 10 } ] }, { - "id": 150, - "name": "allium", - "translation_key": "block.minecraft.allium", - "item_id": 198, + "id": 147, + "name": "dandelion", + "translation_key": "block.minecraft.dandelion", + "item_id": 196, "properties": [], "default_state_id": 2075, "states": [ @@ -25324,10 +25345,10 @@ ] }, { - "id": 151, - "name": "azure_bluet", - "translation_key": "block.minecraft.azure_bluet", - "item_id": 199, + "id": 148, + "name": "torchflower", + "translation_key": "block.minecraft.torchflower", + "item_id": 209, "properties": [], "default_state_id": 2076, "states": [ @@ -25341,10 +25362,10 @@ ] }, { - "id": 152, - "name": "red_tulip", - "translation_key": "block.minecraft.red_tulip", - "item_id": 200, + "id": 149, + "name": "poppy", + "translation_key": "block.minecraft.poppy", + "item_id": 197, "properties": [], "default_state_id": 2077, "states": [ @@ -25358,10 +25379,10 @@ ] }, { - "id": 153, - "name": "orange_tulip", - "translation_key": "block.minecraft.orange_tulip", - "item_id": 201, + "id": 150, + "name": "blue_orchid", + "translation_key": "block.minecraft.blue_orchid", + "item_id": 198, "properties": [], "default_state_id": 2078, "states": [ @@ -25375,10 +25396,10 @@ ] }, { - "id": 154, - "name": "white_tulip", - "translation_key": "block.minecraft.white_tulip", - "item_id": 202, + "id": 151, + "name": "allium", + "translation_key": "block.minecraft.allium", + "item_id": 199, "properties": [], "default_state_id": 2079, "states": [ @@ -25392,10 +25413,10 @@ ] }, { - "id": 155, - "name": "pink_tulip", - "translation_key": "block.minecraft.pink_tulip", - "item_id": 203, + "id": 152, + "name": "azure_bluet", + "translation_key": "block.minecraft.azure_bluet", + "item_id": 200, "properties": [], "default_state_id": 2080, "states": [ @@ -25409,10 +25430,10 @@ ] }, { - "id": 156, - "name": "oxeye_daisy", - "translation_key": "block.minecraft.oxeye_daisy", - "item_id": 204, + "id": 153, + "name": "red_tulip", + "translation_key": "block.minecraft.red_tulip", + "item_id": 201, "properties": [], "default_state_id": 2081, "states": [ @@ -25426,10 +25447,10 @@ ] }, { - "id": 157, - "name": "cornflower", - "translation_key": "block.minecraft.cornflower", - "item_id": 205, + "id": 154, + "name": "orange_tulip", + "translation_key": "block.minecraft.orange_tulip", + "item_id": 202, "properties": [], "default_state_id": 2082, "states": [ @@ -25443,10 +25464,10 @@ ] }, { - "id": 158, - "name": "wither_rose", - "translation_key": "block.minecraft.wither_rose", - "item_id": 207, + "id": 155, + "name": "white_tulip", + "translation_key": "block.minecraft.white_tulip", + "item_id": 203, "properties": [], "default_state_id": 2083, "states": [ @@ -25460,10 +25481,10 @@ ] }, { - "id": 159, - "name": "lily_of_the_valley", - "translation_key": "block.minecraft.lily_of_the_valley", - "item_id": 206, + "id": 156, + "name": "pink_tulip", + "translation_key": "block.minecraft.pink_tulip", + "item_id": 204, "properties": [], "default_state_id": 2084, "states": [ @@ -25477,16 +25498,16 @@ ] }, { - "id": 160, - "name": "brown_mushroom", - "translation_key": "block.minecraft.brown_mushroom", - "item_id": 210, + "id": 157, + "name": "oxeye_daisy", + "translation_key": "block.minecraft.oxeye_daisy", + "item_id": 205, "properties": [], "default_state_id": 2085, "states": [ { "id": 2085, - "luminance": 1, + "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] @@ -25494,10 +25515,10 @@ ] }, { - "id": 161, - "name": "red_mushroom", - "translation_key": "block.minecraft.red_mushroom", - "item_id": 211, + "id": 158, + "name": "cornflower", + "translation_key": "block.minecraft.cornflower", + "item_id": 206, "properties": [], "default_state_id": 2086, "states": [ @@ -25511,87 +25532,81 @@ ] }, { - "id": 162, - "name": "gold_block", - "translation_key": "block.minecraft.gold_block", - "item_id": 75, + "id": 159, + "name": "wither_rose", + "translation_key": "block.minecraft.wither_rose", + "item_id": 208, "properties": [], "default_state_id": 2087, "states": [ { "id": 2087, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] + "collision_shapes": [] } ] }, { - "id": 163, - "name": "iron_block", - "translation_key": "block.minecraft.iron_block", - "item_id": 73, + "id": 160, + "name": "lily_of_the_valley", + "translation_key": "block.minecraft.lily_of_the_valley", + "item_id": 207, "properties": [], "default_state_id": 2088, "states": [ { "id": 2088, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] + "collision_shapes": [] } ] }, { - "id": 164, - "name": "bricks", - "translation_key": "block.minecraft.bricks", - "item_id": 261, + "id": 161, + "name": "brown_mushroom", + "translation_key": "block.minecraft.brown_mushroom", + "item_id": 212, "properties": [], "default_state_id": 2089, "states": [ { "id": 2089, - "luminance": 0, - "opaque": true, + "luminance": 1, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] + "collision_shapes": [] } ] }, { - "id": 165, - "name": "tnt", - "translation_key": "block.minecraft.tnt", - "item_id": 653, - "properties": [ - { - "name": "unstable", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 2091, + "id": 162, + "name": "red_mushroom", + "translation_key": "block.minecraft.red_mushroom", + "item_id": 213, + "properties": [], + "default_state_id": 2090, "states": [ { "id": 2090, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] - }, + "collision_shapes": [] + } + ] + }, + { + "id": 163, + "name": "gold_block", + "translation_key": "block.minecraft.gold_block", + "item_id": 76, + "properties": [], + "default_state_id": 2091, + "states": [ { "id": 2091, "luminance": 0, @@ -25604,10 +25619,10 @@ ] }, { - "id": 166, - "name": "bookshelf", - "translation_key": "block.minecraft.bookshelf", - "item_id": 262, + "id": 164, + "name": "iron_block", + "translation_key": "block.minecraft.iron_block", + "item_id": 74, "properties": [], "default_state_id": 2092, "states": [ @@ -25622,11 +25637,85 @@ } ] }, + { + "id": 165, + "name": "bricks", + "translation_key": "block.minecraft.bricks", + "item_id": 263, + "properties": [], + "default_state_id": 2093, + "states": [ + { + "id": 2093, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 166, + "name": "tnt", + "translation_key": "block.minecraft.tnt", + "item_id": 657, + "properties": [ + { + "name": "unstable", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 2095, + "states": [ + { + "id": 2094, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 2095, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, { "id": 167, + "name": "bookshelf", + "translation_key": "block.minecraft.bookshelf", + "item_id": 264, + "properties": [], + "default_state_id": 2096, + "states": [ + { + "id": 2096, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 168, "name": "chiseled_bookshelf", "translation_key": "block.minecraft.chiseled_bookshelf", - "item_id": 263, + "item_id": 265, "properties": [ { "name": "facing", @@ -25680,48 +25769,8 @@ ] } ], - "default_state_id": 2156, + "default_state_id": 2160, "states": [ - { - "id": 2093, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 37 - }, - { - "id": 2094, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 37 - }, - { - "id": 2095, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 37 - }, - { - "id": 2096, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 37 - }, { "id": 2097, "luminance": 0, @@ -25730,7 +25779,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2098, @@ -25740,7 +25789,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2099, @@ -25750,7 +25799,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2100, @@ -25760,7 +25809,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2101, @@ -25770,7 +25819,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2102, @@ -25780,7 +25829,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2103, @@ -25790,7 +25839,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2104, @@ -25800,7 +25849,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2105, @@ -25810,7 +25859,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2106, @@ -25820,7 +25869,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2107, @@ -25830,7 +25879,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2108, @@ -25840,7 +25889,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2109, @@ -25850,7 +25899,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2110, @@ -25860,7 +25909,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2111, @@ -25870,7 +25919,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2112, @@ -25880,7 +25929,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2113, @@ -25890,7 +25939,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2114, @@ -25900,7 +25949,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2115, @@ -25910,7 +25959,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2116, @@ -25920,7 +25969,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2117, @@ -25930,7 +25979,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2118, @@ -25940,7 +25989,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2119, @@ -25950,7 +25999,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2120, @@ -25960,7 +26009,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2121, @@ -25970,7 +26019,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2122, @@ -25980,7 +26029,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2123, @@ -25990,7 +26039,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2124, @@ -26000,7 +26049,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2125, @@ -26010,7 +26059,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2126, @@ -26020,7 +26069,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2127, @@ -26030,7 +26079,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2128, @@ -26040,7 +26089,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2129, @@ -26050,7 +26099,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2130, @@ -26060,7 +26109,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2131, @@ -26070,7 +26119,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2132, @@ -26080,7 +26129,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2133, @@ -26090,7 +26139,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2134, @@ -26100,7 +26149,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2135, @@ -26110,7 +26159,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2136, @@ -26120,7 +26169,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2137, @@ -26130,7 +26179,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2138, @@ -26140,7 +26189,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2139, @@ -26150,7 +26199,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2140, @@ -26160,7 +26209,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2141, @@ -26170,7 +26219,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2142, @@ -26180,7 +26229,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2143, @@ -26190,7 +26239,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2144, @@ -26200,7 +26249,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2145, @@ -26210,7 +26259,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2146, @@ -26220,7 +26269,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2147, @@ -26230,7 +26279,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2148, @@ -26240,7 +26289,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2149, @@ -26250,7 +26299,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2150, @@ -26260,7 +26309,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2151, @@ -26270,7 +26319,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2152, @@ -26280,7 +26329,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2153, @@ -26290,7 +26339,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2154, @@ -26300,7 +26349,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2155, @@ -26310,7 +26359,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2156, @@ -26320,7 +26369,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2157, @@ -26330,7 +26379,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2158, @@ -26340,7 +26389,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2159, @@ -26350,7 +26399,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2160, @@ -26360,7 +26409,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2161, @@ -26370,7 +26419,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2162, @@ -26380,7 +26429,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2163, @@ -26390,7 +26439,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2164, @@ -26400,7 +26449,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2165, @@ -26410,7 +26459,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2166, @@ -26420,7 +26469,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2167, @@ -26430,7 +26479,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2168, @@ -26440,7 +26489,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2169, @@ -26450,7 +26499,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2170, @@ -26460,7 +26509,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2171, @@ -26470,7 +26519,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2172, @@ -26480,7 +26529,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2173, @@ -26490,7 +26539,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2174, @@ -26500,7 +26549,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2175, @@ -26510,7 +26559,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2176, @@ -26520,7 +26569,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2177, @@ -26530,7 +26579,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2178, @@ -26540,7 +26589,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2179, @@ -26550,7 +26599,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2180, @@ -26560,7 +26609,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2181, @@ -26570,7 +26619,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2182, @@ -26580,7 +26629,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2183, @@ -26590,7 +26639,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2184, @@ -26600,7 +26649,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2185, @@ -26610,7 +26659,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2186, @@ -26620,7 +26669,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2187, @@ -26630,7 +26679,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2188, @@ -26640,7 +26689,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2189, @@ -26650,7 +26699,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2190, @@ -26660,7 +26709,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2191, @@ -26670,7 +26719,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2192, @@ -26680,7 +26729,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2193, @@ -26690,7 +26739,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2194, @@ -26700,7 +26749,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2195, @@ -26710,7 +26759,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2196, @@ -26720,7 +26769,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2197, @@ -26730,7 +26779,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2198, @@ -26740,7 +26789,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2199, @@ -26750,7 +26799,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2200, @@ -26760,7 +26809,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2201, @@ -26770,7 +26819,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2202, @@ -26780,7 +26829,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2203, @@ -26790,7 +26839,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2204, @@ -26800,7 +26849,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2205, @@ -26810,7 +26859,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2206, @@ -26820,7 +26869,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2207, @@ -26830,7 +26879,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2208, @@ -26840,7 +26889,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2209, @@ -26850,7 +26899,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2210, @@ -26860,7 +26909,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2211, @@ -26870,7 +26919,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2212, @@ -26880,7 +26929,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2213, @@ -26890,7 +26939,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2214, @@ -26900,7 +26949,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2215, @@ -26910,7 +26959,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2216, @@ -26920,7 +26969,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2217, @@ -26930,7 +26979,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2218, @@ -26940,7 +26989,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2219, @@ -26950,7 +26999,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2220, @@ -26960,7 +27009,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2221, @@ -26970,7 +27019,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2222, @@ -26980,7 +27029,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2223, @@ -26990,7 +27039,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2224, @@ -27000,7 +27049,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2225, @@ -27010,7 +27059,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2226, @@ -27020,7 +27069,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2227, @@ -27030,7 +27079,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2228, @@ -27040,7 +27089,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2229, @@ -27050,7 +27099,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2230, @@ -27060,7 +27109,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2231, @@ -27070,7 +27119,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2232, @@ -27080,7 +27129,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2233, @@ -27090,7 +27139,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2234, @@ -27100,7 +27149,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2235, @@ -27110,7 +27159,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2236, @@ -27120,7 +27169,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2237, @@ -27130,7 +27179,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2238, @@ -27140,7 +27189,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2239, @@ -27150,7 +27199,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2240, @@ -27160,7 +27209,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2241, @@ -27170,7 +27219,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2242, @@ -27180,7 +27229,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2243, @@ -27190,7 +27239,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2244, @@ -27200,7 +27249,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2245, @@ -27210,7 +27259,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2246, @@ -27220,7 +27269,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2247, @@ -27230,7 +27279,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2248, @@ -27240,7 +27289,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2249, @@ -27250,7 +27299,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2250, @@ -27260,7 +27309,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2251, @@ -27270,7 +27319,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2252, @@ -27280,7 +27329,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2253, @@ -27290,7 +27339,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2254, @@ -27300,7 +27349,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2255, @@ -27310,7 +27359,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2256, @@ -27320,7 +27369,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2257, @@ -27330,7 +27379,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2258, @@ -27340,7 +27389,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2259, @@ -27350,7 +27399,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2260, @@ -27360,7 +27409,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2261, @@ -27370,7 +27419,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2262, @@ -27380,7 +27429,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2263, @@ -27390,7 +27439,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2264, @@ -27400,7 +27449,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2265, @@ -27410,7 +27459,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2266, @@ -27420,7 +27469,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2267, @@ -27430,7 +27479,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2268, @@ -27440,7 +27489,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2269, @@ -27450,7 +27499,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2270, @@ -27460,7 +27509,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2271, @@ -27470,7 +27519,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2272, @@ -27480,7 +27529,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2273, @@ -27490,7 +27539,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2274, @@ -27500,7 +27549,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2275, @@ -27510,7 +27559,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2276, @@ -27520,7 +27569,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2277, @@ -27530,7 +27579,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2278, @@ -27540,7 +27589,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2279, @@ -27550,7 +27599,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2280, @@ -27560,7 +27609,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2281, @@ -27570,7 +27619,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2282, @@ -27580,7 +27629,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2283, @@ -27590,7 +27639,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2284, @@ -27600,7 +27649,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2285, @@ -27610,7 +27659,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2286, @@ -27620,7 +27669,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2287, @@ -27630,7 +27679,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2288, @@ -27640,7 +27689,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2289, @@ -27650,7 +27699,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2290, @@ -27660,7 +27709,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2291, @@ -27670,7 +27719,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2292, @@ -27680,7 +27729,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2293, @@ -27690,7 +27739,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2294, @@ -27700,7 +27749,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2295, @@ -27710,7 +27759,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2296, @@ -27720,7 +27769,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2297, @@ -27730,7 +27779,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2298, @@ -27740,7 +27789,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2299, @@ -27750,7 +27799,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2300, @@ -27760,7 +27809,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2301, @@ -27770,7 +27819,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2302, @@ -27780,7 +27829,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2303, @@ -27790,7 +27839,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2304, @@ -27800,7 +27849,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2305, @@ -27810,7 +27859,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2306, @@ -27820,7 +27869,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2307, @@ -27830,7 +27879,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2308, @@ -27840,7 +27889,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2309, @@ -27850,7 +27899,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2310, @@ -27860,7 +27909,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2311, @@ -27870,7 +27919,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2312, @@ -27880,7 +27929,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2313, @@ -27890,7 +27939,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2314, @@ -27900,7 +27949,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2315, @@ -27910,7 +27959,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2316, @@ -27920,7 +27969,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2317, @@ -27930,7 +27979,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2318, @@ -27940,7 +27989,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2319, @@ -27950,7 +27999,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2320, @@ -27960,7 +28009,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2321, @@ -27970,7 +28019,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2322, @@ -27980,7 +28029,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2323, @@ -27990,7 +28039,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2324, @@ -28000,7 +28049,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2325, @@ -28010,7 +28059,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2326, @@ -28020,7 +28069,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2327, @@ -28030,7 +28079,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2328, @@ -28040,7 +28089,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2329, @@ -28050,7 +28099,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2330, @@ -28060,7 +28109,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2331, @@ -28070,7 +28119,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2332, @@ -28080,7 +28129,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2333, @@ -28090,7 +28139,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2334, @@ -28100,7 +28149,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2335, @@ -28110,7 +28159,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2336, @@ -28120,7 +28169,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2337, @@ -28130,7 +28179,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2338, @@ -28140,7 +28189,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2339, @@ -28150,7 +28199,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2340, @@ -28160,7 +28209,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2341, @@ -28170,7 +28219,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2342, @@ -28180,7 +28229,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2343, @@ -28190,7 +28239,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2344, @@ -28200,7 +28249,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2345, @@ -28210,7 +28259,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2346, @@ -28220,7 +28269,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2347, @@ -28230,7 +28279,7 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 + "block_entity_type": 38 }, { "id": 2348, @@ -28240,18 +28289,8 @@ "collision_shapes": [ 0 ], - "block_entity_type": 37 - } - ] - }, - { - "id": 168, - "name": "mossy_cobblestone", - "translation_key": "block.minecraft.mossy_cobblestone", - "item_id": 265, - "properties": [], - "default_state_id": 2349, - "states": [ + "block_entity_type": 38 + }, { "id": 2349, "luminance": 0, @@ -28259,20 +28298,51 @@ "replaceable": false, "collision_shapes": [ 0 - ] + ], + "block_entity_type": 38 + }, + { + "id": 2350, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 38 + }, + { + "id": 2351, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 38 + }, + { + "id": 2352, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 38 } ] }, { "id": 169, - "name": "obsidian", - "translation_key": "block.minecraft.obsidian", - "item_id": 266, + "name": "mossy_cobblestone", + "translation_key": "block.minecraft.mossy_cobblestone", + "item_id": 267, "properties": [], - "default_state_id": 2350, + "default_state_id": 2353, "states": [ { - "id": 2350, + "id": 2353, "luminance": 0, "opaque": true, "replaceable": false, @@ -28284,61 +28354,32 @@ }, { "id": 170, - "name": "torch", - "translation_key": "block.minecraft.torch", - "item_id": 267, - "wall_variant_id": 171, + "name": "obsidian", + "translation_key": "block.minecraft.obsidian", + "item_id": 268, "properties": [], - "default_state_id": 2351, + "default_state_id": 2354, "states": [ { - "id": 2351, - "luminance": 14, - "opaque": false, + "id": 2354, + "luminance": 0, + "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 0 + ] } ] }, { "id": 171, - "name": "wall_torch", + "name": "torch", "translation_key": "block.minecraft.torch", - "item_id": 267, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "default_state_id": 2352, + "item_id": 269, + "wall_variant_id": 172, + "properties": [], + "default_state_id": 2355, "states": [ - { - "id": 2352, - "luminance": 14, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 2353, - "luminance": 14, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 2354, - "luminance": 14, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 2355, "luminance": 14, @@ -28350,6 +28391,54 @@ }, { "id": 172, + "name": "wall_torch", + "translation_key": "block.minecraft.torch", + "item_id": 269, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 2356, + "states": [ + { + "id": 2356, + "luminance": 14, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 2357, + "luminance": 14, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 2358, + "luminance": 14, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 2359, + "luminance": 14, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 173, "name": "fire", "translation_key": "block.minecraft.fire", "item_id": 0, @@ -28411,36 +28500,8 @@ ] } ], - "default_state_id": 2387, + "default_state_id": 2391, "states": [ - { - "id": 2356, - "luminance": 15, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 2357, - "luminance": 15, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 2358, - "luminance": 15, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 2359, - "luminance": 15, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, { "id": 2360, "luminance": 15, @@ -31996,20 +32057,31 @@ "opaque": false, "replaceable": true, "collision_shapes": [] - } - ] - }, - { - "id": 173, - "name": "soul_fire", - "translation_key": "block.minecraft.soul_fire", - "item_id": 0, - "properties": [], - "default_state_id": 2868, - "states": [ + }, { "id": 2868, - "luminance": 10, + "luminance": 15, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 2869, + "luminance": 15, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 2870, + "luminance": 15, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 2871, + "luminance": 15, "opaque": false, "replaceable": true, "collision_shapes": [] @@ -32018,14 +32090,31 @@ }, { "id": 174, - "name": "spawner", - "translation_key": "block.minecraft.spawner", - "item_id": 274, + "name": "soul_fire", + "translation_key": "block.minecraft.soul_fire", + "item_id": 0, "properties": [], - "default_state_id": 2869, + "default_state_id": 2872, "states": [ { - "id": 2869, + "id": 2872, + "luminance": 10, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + } + ] + }, + { + "id": 175, + "name": "spawner", + "translation_key": "block.minecraft.spawner", + "item_id": 276, + "properties": [], + "default_state_id": 2873, + "states": [ + { + "id": 2873, "luminance": 0, "opaque": false, "replaceable": false, @@ -32037,10 +32126,10 @@ ] }, { - "id": 175, + "id": 176, "name": "oak_stairs", "translation_key": "block.minecraft.oak_stairs", - "item_id": 359, + "item_id": 361, "properties": [ { "name": "facing", @@ -32076,50 +32165,8 @@ ] } ], - "default_state_id": 2881, + "default_state_id": 2885, "states": [ - { - "id": 2870, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 2871, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 2872, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 2873, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, { "id": 2874, "luminance": 0, @@ -32127,8 +32174,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -32138,8 +32184,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -32148,9 +32193,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -32159,9 +32204,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -32170,9 +32215,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -32181,9 +32226,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -32192,8 +32237,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -32202,8 +32248,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -32212,9 +32259,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -32223,9 +32270,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -32235,8 +32282,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -32246,8 +32292,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -32257,7 +32302,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -32267,7 +32313,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -32277,7 +32324,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -32287,7 +32335,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -32296,8 +32345,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -32306,8 +32355,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -32316,9 +32365,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -32327,9 +32375,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -32338,9 +32385,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -32349,9 +32395,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -32360,9 +32405,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -32371,9 +32416,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -32382,9 +32427,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -32393,9 +32438,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -32404,8 +32449,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -32414,8 +32460,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -32424,9 +32471,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -32435,9 +32482,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -32447,8 +32494,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -32458,8 +32504,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -32469,7 +32514,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -32479,7 +32525,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -32489,7 +32536,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -32499,7 +32547,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -32508,8 +32557,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -32518,8 +32567,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -32528,9 +32577,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -32539,9 +32587,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -32551,8 +32598,7 @@ "replaceable": false, "collision_shapes": [ 43, - 44, - 45 + 56 ] }, { @@ -32560,54 +32606,53 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 2916, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 2917, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 2918, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 43, 44, 45 ] }, - { - "id": 2916, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 2917, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 2918, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, { "id": 2919, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -32616,8 +32661,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -32626,8 +32672,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -32636,9 +32683,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -32647,9 +32694,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -32659,8 +32706,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -32670,8 +32716,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -32681,7 +32726,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -32691,7 +32737,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -32701,7 +32748,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -32711,7 +32759,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -32720,8 +32769,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -32730,8 +32779,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -32740,9 +32789,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -32751,9 +32799,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -32762,9 +32809,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -32773,9 +32819,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -32784,9 +32829,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -32795,9 +32840,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -32806,9 +32851,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -32817,9 +32862,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -32828,8 +32873,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -32838,8 +32884,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -32848,9 +32895,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -32859,9 +32906,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -32871,8 +32918,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -32882,8 +32928,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -32893,7 +32938,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -32903,7 +32949,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -32913,7 +32960,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -32921,6 +32969,47 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 2950, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 2951, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 2952, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 2953, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 51, 45 @@ -32929,10 +33018,10 @@ ] }, { - "id": 176, + "id": 177, "name": "chest", "translation_key": "block.minecraft.chest", - "item_id": 275, + "item_id": 277, "properties": [ { "name": "facing", @@ -32959,55 +33048,15 @@ ] } ], - "default_state_id": 2951, + "default_state_id": 2955, "states": [ - { - "id": 2950, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 58 - ], - "block_entity_type": 1 - }, - { - "id": 2951, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 58 - ], - "block_entity_type": 1 - }, - { - "id": 2952, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 59 - ], - "block_entity_type": 1 - }, - { - "id": 2953, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 59 - ], - "block_entity_type": 1 - }, { "id": 2954, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 60 + 58 ], "block_entity_type": 1 }, @@ -33017,7 +33066,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 60 + 58 ], "block_entity_type": 1 }, @@ -33027,7 +33076,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 58 + 59 ], "block_entity_type": 1 }, @@ -33037,7 +33086,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 58 + 59 ], "block_entity_type": 1 }, @@ -33067,7 +33116,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 59 + 58 ], "block_entity_type": 1 }, @@ -33077,7 +33126,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 59 + 58 ], "block_entity_type": 1 }, @@ -33087,7 +33136,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 58 + 60 ], "block_entity_type": 1 }, @@ -33097,7 +33146,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 58 + 60 ], "block_entity_type": 1 }, @@ -33107,7 +33156,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 61 + 59 ], "block_entity_type": 1 }, @@ -33117,7 +33166,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 61 + 59 ], "block_entity_type": 1 }, @@ -33127,7 +33176,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 62 + 58 ], "block_entity_type": 1 }, @@ -33137,7 +33186,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 62 + 58 ], "block_entity_type": 1 }, @@ -33147,7 +33196,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 58 + 61 ], "block_entity_type": 1 }, @@ -33157,7 +33206,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 58 + 61 ], "block_entity_type": 1 }, @@ -33187,7 +33236,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 61 + 58 ], "block_entity_type": 1 }, @@ -33196,6 +33245,46 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 58 + ], + "block_entity_type": 1 + }, + { + "id": 2974, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 62 + ], + "block_entity_type": 1 + }, + { + "id": 2975, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 62 + ], + "block_entity_type": 1 + }, + { + "id": 2976, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 61 + ], + "block_entity_type": 1 + }, + { + "id": 2977, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 61 ], @@ -33204,10 +33293,10 @@ ] }, { - "id": 177, + "id": 178, "name": "redstone_wire", "translation_key": "block.minecraft.redstone_wire", - "item_id": 632, + "item_id": 635, "properties": [ { "name": "east", @@ -33263,36 +33352,8 @@ ] } ], - "default_state_id": 4134, + "default_state_id": 4138, "states": [ - { - "id": 2974, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 2975, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 2976, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 2977, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 2978, "luminance": 0, @@ -42336,38 +42397,47 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 178, - "name": "diamond_ore", - "translation_key": "block.minecraft.diamond_ore", - "item_id": 62, - "properties": [], - "default_state_id": 4270, - "states": [ + }, { "id": 4270, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] + "collision_shapes": [] + }, + { + "id": 4271, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 4272, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 4273, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { "id": 179, - "name": "deepslate_diamond_ore", - "translation_key": "block.minecraft.deepslate_diamond_ore", + "name": "diamond_ore", + "translation_key": "block.minecraft.diamond_ore", "item_id": 63, "properties": [], - "default_state_id": 4271, + "default_state_id": 4274, "states": [ { - "id": 4271, + "id": 4274, "luminance": 0, "opaque": true, "replaceable": false, @@ -42379,14 +42449,14 @@ }, { "id": 180, - "name": "diamond_block", - "translation_key": "block.minecraft.diamond_block", - "item_id": 76, + "name": "deepslate_diamond_ore", + "translation_key": "block.minecraft.deepslate_diamond_ore", + "item_id": 64, "properties": [], - "default_state_id": 4272, + "default_state_id": 4275, "states": [ { - "id": 4272, + "id": 4275, "luminance": 0, "opaque": true, "replaceable": false, @@ -42398,14 +42468,14 @@ }, { "id": 181, - "name": "crafting_table", - "translation_key": "block.minecraft.crafting_table", - "item_id": 276, + "name": "diamond_block", + "translation_key": "block.minecraft.diamond_block", + "item_id": 77, "properties": [], - "default_state_id": 4273, + "default_state_id": 4276, "states": [ { - "id": 4273, + "id": 4276, "luminance": 0, "opaque": true, "replaceable": false, @@ -42417,9 +42487,28 @@ }, { "id": 182, + "name": "crafting_table", + "translation_key": "block.minecraft.crafting_table", + "item_id": 278, + "properties": [], + "default_state_id": 4277, + "states": [ + { + "id": 4277, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 183, "name": "wheat", "translation_key": "block.minecraft.wheat", - "item_id": 809, + "item_id": 813, "properties": [ { "name": "age", @@ -42435,36 +42524,8 @@ ] } ], - "default_state_id": 4274, + "default_state_id": 4278, "states": [ - { - "id": 4274, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 4275, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 4276, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 4277, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 4278, "luminance": 0, @@ -42492,14 +42553,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 4282, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 4283, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 4284, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 4285, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 183, + "id": 184, "name": "farmland", "translation_key": "block.minecraft.farmland", - "item_id": 277, + "item_id": 279, "properties": [ { "name": "moisture", @@ -42515,44 +42604,8 @@ ] } ], - "default_state_id": 4282, + "default_state_id": 4286, "states": [ - { - "id": 4282, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 63 - ] - }, - { - "id": 4283, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 63 - ] - }, - { - "id": 4284, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 63 - ] - }, - { - "id": 4285, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 63 - ] - }, { "id": 4286, "luminance": 0, @@ -42588,14 +42641,50 @@ "collision_shapes": [ 63 ] + }, + { + "id": 4290, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 63 + ] + }, + { + "id": 4291, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 63 + ] + }, + { + "id": 4292, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 63 + ] + }, + { + "id": 4293, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 63 + ] } ] }, { - "id": 184, + "id": 185, "name": "furnace", "translation_key": "block.minecraft.furnace", - "item_id": 278, + "item_id": 280, "properties": [ { "name": "facing", @@ -42614,48 +42703,8 @@ ] } ], - "default_state_id": 4291, + "default_state_id": 4295, "states": [ - { - "id": 4290, - "luminance": 13, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 0 - }, - { - "id": 4291, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 0 - }, - { - "id": 4292, - "luminance": 13, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 0 - }, - { - "id": 4293, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 0 - }, { "id": 4294, "luminance": 13, @@ -42695,15 +42744,55 @@ 0 ], "block_entity_type": 0 + }, + { + "id": 4298, + "luminance": 13, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 0 + }, + { + "id": 4299, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 0 + }, + { + "id": 4300, + "luminance": 13, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 0 + }, + { + "id": 4301, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 0 } ] }, { - "id": 185, + "id": 186, "name": "oak_sign", "translation_key": "block.minecraft.oak_sign", - "item_id": 842, - "wall_variant_id": 198, + "item_id": 846, + "wall_variant_id": 199, "properties": [ { "name": "rotation", @@ -42734,40 +42823,8 @@ ] } ], - "default_state_id": 4299, + "default_state_id": 4303, "states": [ - { - "id": 4298, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 4299, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 4300, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 4301, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, { "id": 4302, "luminance": 0, @@ -42991,47 +43048,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 186, - "name": "spruce_sign", - "translation_key": "block.minecraft.spruce_sign", - "item_id": 843, - "wall_variant_id": 199, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4331, - "states": [ { "id": 4330, "luminance": 0, @@ -43063,7 +43080,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 187, + "name": "spruce_sign", + "translation_key": "block.minecraft.spruce_sign", + "item_id": 847, + "wall_variant_id": 200, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4335, + "states": [ { "id": 4334, "luminance": 0, @@ -43287,47 +43344,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 187, - "name": "birch_sign", - "translation_key": "block.minecraft.birch_sign", - "item_id": 844, - "wall_variant_id": 200, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4363, - "states": [ { "id": 4362, "luminance": 0, @@ -43359,7 +43376,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 188, + "name": "birch_sign", + "translation_key": "block.minecraft.birch_sign", + "item_id": 848, + "wall_variant_id": 201, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4367, + "states": [ { "id": 4366, "luminance": 0, @@ -43583,47 +43640,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 188, - "name": "acacia_sign", - "translation_key": "block.minecraft.acacia_sign", - "item_id": 846, - "wall_variant_id": 201, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4395, - "states": [ { "id": 4394, "luminance": 0, @@ -43655,7 +43672,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 189, + "name": "acacia_sign", + "translation_key": "block.minecraft.acacia_sign", + "item_id": 850, + "wall_variant_id": 202, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4399, + "states": [ { "id": 4398, "luminance": 0, @@ -43879,47 +43936,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 189, - "name": "cherry_sign", - "translation_key": "block.minecraft.cherry_sign", - "item_id": 847, - "wall_variant_id": 202, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4427, - "states": [ { "id": 4426, "luminance": 0, @@ -43951,7 +43968,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 190, + "name": "cherry_sign", + "translation_key": "block.minecraft.cherry_sign", + "item_id": 851, + "wall_variant_id": 203, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4431, + "states": [ { "id": 4430, "luminance": 0, @@ -44175,47 +44232,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 190, - "name": "jungle_sign", - "translation_key": "block.minecraft.jungle_sign", - "item_id": 845, - "wall_variant_id": 203, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4459, - "states": [ { "id": 4458, "luminance": 0, @@ -44247,7 +44264,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 191, + "name": "jungle_sign", + "translation_key": "block.minecraft.jungle_sign", + "item_id": 849, + "wall_variant_id": 204, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4463, + "states": [ { "id": 4462, "luminance": 0, @@ -44471,47 +44528,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 191, - "name": "dark_oak_sign", - "translation_key": "block.minecraft.dark_oak_sign", - "item_id": 848, - "wall_variant_id": 204, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4491, - "states": [ { "id": 4490, "luminance": 0, @@ -44543,7 +44560,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 192, + "name": "dark_oak_sign", + "translation_key": "block.minecraft.dark_oak_sign", + "item_id": 852, + "wall_variant_id": 205, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4495, + "states": [ { "id": 4494, "luminance": 0, @@ -44767,47 +44824,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 192, - "name": "mangrove_sign", - "translation_key": "block.minecraft.mangrove_sign", - "item_id": 849, - "wall_variant_id": 205, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4523, - "states": [ { "id": 4522, "luminance": 0, @@ -44839,7 +44856,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 193, + "name": "mangrove_sign", + "translation_key": "block.minecraft.mangrove_sign", + "item_id": 853, + "wall_variant_id": 206, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4527, + "states": [ { "id": 4526, "luminance": 0, @@ -45063,47 +45120,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 193, - "name": "bamboo_sign", - "translation_key": "block.minecraft.bamboo_sign", - "item_id": 850, - "wall_variant_id": 206, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4555, - "states": [ { "id": 4554, "luminance": 0, @@ -45135,7 +45152,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 194, + "name": "bamboo_sign", + "translation_key": "block.minecraft.bamboo_sign", + "item_id": 854, + "wall_variant_id": 207, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4559, + "states": [ { "id": 4558, "luminance": 0, @@ -45359,14 +45416,46 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + }, + { + "id": 4586, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 4587, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 4588, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 4589, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 } ] }, { - "id": 194, + "id": 195, "name": "oak_door", "translation_key": "block.minecraft.oak_door", - "item_id": 685, + "item_id": 689, "properties": [ { "name": "facing", @@ -45406,51 +45495,15 @@ ] } ], - "default_state_id": 4597, + "default_state_id": 4601, "states": [ - { - "id": 4586, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 4587, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 4588, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 4589, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, { "id": 4590, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -45459,7 +45512,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -45486,7 +45539,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -45495,7 +45548,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -45522,7 +45575,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -45531,7 +45584,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -45576,7 +45629,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -45585,7 +45638,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -45594,7 +45647,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -45603,7 +45656,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -45630,7 +45683,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -45639,7 +45692,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -45666,7 +45719,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -45675,7 +45728,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -45702,7 +45755,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -45711,7 +45764,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -45720,7 +45773,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -45729,7 +45782,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -45738,7 +45791,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -45747,7 +45800,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -45774,7 +45827,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -45783,7 +45836,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -45810,7 +45863,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -45819,7 +45872,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -45864,7 +45917,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -45873,7 +45926,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -45882,7 +45935,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -45891,7 +45944,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -45918,7 +45971,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -45927,7 +45980,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -45954,7 +46007,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -45963,7 +46016,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -45983,34 +46036,7 @@ "collision_shapes": [ 64 ] - } - ] - }, - { - "id": 195, - "name": "ladder", - "translation_key": "block.minecraft.ladder", - "item_id": 279, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4651, - "states": [ { "id": 4650, "luminance": 0, @@ -46034,48 +46060,12 @@ "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 4653, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 4654, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 4655, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 4656, - "luminance": 0, - "opaque": false, - "replaceable": false, "collision_shapes": [ 64 ] }, { - "id": 4657, + "id": 4653, "luminance": 0, "opaque": false, "replaceable": false, @@ -46087,9 +46077,108 @@ }, { "id": 196, + "name": "ladder", + "translation_key": "block.minecraft.ladder", + "item_id": 281, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4655, + "states": [ + { + "id": 4654, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4655, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 4656, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4657, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 4658, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4659, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 4660, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 4661, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + } + ] + }, + { + "id": 197, "name": "rail", "translation_key": "block.minecraft.rail", - "item_id": 721, + "item_id": 725, "properties": [ { "name": "shape", @@ -46114,36 +46203,8 @@ ] } ], - "default_state_id": 4659, + "default_state_id": 4663, "states": [ - { - "id": 4658, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 4659, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 4660, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 4661, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 4662, "luminance": 0, @@ -46255,14 +46316,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 4678, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 4679, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 4680, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 4681, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 197, + "id": 198, "name": "cobblestone_stairs", "translation_key": "block.minecraft.cobblestone_stairs", - "item_id": 280, + "item_id": 282, "properties": [ { "name": "facing", @@ -46298,50 +46387,8 @@ ] } ], - "default_state_id": 4689, + "default_state_id": 4693, "states": [ - { - "id": 4678, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 4679, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 4680, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 4681, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, { "id": 4682, "luminance": 0, @@ -46349,8 +46396,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -46360,8 +46406,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -46370,9 +46415,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -46381,9 +46426,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -46392,9 +46437,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -46403,9 +46448,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -46414,8 +46459,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -46424,8 +46470,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -46434,9 +46481,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -46445,9 +46492,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -46457,8 +46504,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -46468,8 +46514,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -46479,7 +46524,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -46489,7 +46535,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -46499,7 +46546,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -46509,7 +46557,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -46518,8 +46567,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -46528,8 +46577,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -46538,9 +46587,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -46549,9 +46597,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -46560,9 +46607,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -46571,9 +46617,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -46582,9 +46627,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -46593,9 +46638,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -46604,9 +46649,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -46615,9 +46660,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -46626,8 +46671,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -46636,8 +46682,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -46646,9 +46693,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -46657,9 +46704,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -46669,8 +46716,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -46680,8 +46726,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -46691,7 +46736,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -46701,7 +46747,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -46711,7 +46758,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -46721,7 +46769,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -46730,8 +46779,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -46740,8 +46789,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -46750,9 +46799,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -46761,9 +46809,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -46773,8 +46820,7 @@ "replaceable": false, "collision_shapes": [ 43, - 44, - 45 + 56 ] }, { @@ -46782,54 +46828,53 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 4724, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 4725, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 4726, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 43, 44, 45 ] }, - { - "id": 4724, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 4725, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 4726, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, { "id": 4727, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -46838,8 +46883,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -46848,8 +46894,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -46858,9 +46905,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -46869,9 +46916,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -46881,8 +46928,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -46892,8 +46938,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -46903,7 +46948,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -46913,7 +46959,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -46923,7 +46970,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -46933,7 +46981,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -46942,8 +46991,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -46952,8 +47001,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -46962,9 +47011,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -46973,9 +47021,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -46984,9 +47031,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -46995,9 +47041,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -47006,9 +47051,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -47017,9 +47062,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -47028,9 +47073,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -47039,9 +47084,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -47050,8 +47095,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -47060,8 +47106,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -47070,9 +47117,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -47081,9 +47128,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -47093,8 +47140,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -47104,8 +47150,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -47115,7 +47160,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -47125,7 +47171,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -47135,7 +47182,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -47143,6 +47191,47 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 4758, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 4759, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 4760, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 4761, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 51, 45 @@ -47151,10 +47240,10 @@ ] }, { - "id": 198, + "id": 199, "name": "oak_wall_sign", "translation_key": "block.minecraft.oak_sign", - "item_id": 842, + "item_id": 846, "properties": [ { "name": "facing", @@ -47173,40 +47262,8 @@ ] } ], - "default_state_id": 4759, + "default_state_id": 4763, "states": [ - { - "id": 4758, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 4759, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 4760, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 4761, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, { "id": 4762, "luminance": 0, @@ -47238,34 +47295,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 199, - "name": "spruce_wall_sign", - "translation_key": "block.minecraft.spruce_sign", - "item_id": 843, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4767, - "states": [ { "id": 4766, "luminance": 0, @@ -47297,7 +47327,34 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 200, + "name": "spruce_wall_sign", + "translation_key": "block.minecraft.spruce_sign", + "item_id": 847, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4771, + "states": [ { "id": 4770, "luminance": 0, @@ -47329,34 +47386,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 200, - "name": "birch_wall_sign", - "translation_key": "block.minecraft.birch_sign", - "item_id": 844, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4775, - "states": [ { "id": 4774, "luminance": 0, @@ -47388,7 +47418,34 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 201, + "name": "birch_wall_sign", + "translation_key": "block.minecraft.birch_sign", + "item_id": 848, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4779, + "states": [ { "id": 4778, "luminance": 0, @@ -47420,34 +47477,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 201, - "name": "acacia_wall_sign", - "translation_key": "block.minecraft.acacia_sign", - "item_id": 846, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4783, - "states": [ { "id": 4782, "luminance": 0, @@ -47479,7 +47509,34 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 202, + "name": "acacia_wall_sign", + "translation_key": "block.minecraft.acacia_sign", + "item_id": 850, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4787, + "states": [ { "id": 4786, "luminance": 0, @@ -47511,34 +47568,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 202, - "name": "cherry_wall_sign", - "translation_key": "block.minecraft.cherry_sign", - "item_id": 847, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4791, - "states": [ { "id": 4790, "luminance": 0, @@ -47570,7 +47600,34 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 203, + "name": "cherry_wall_sign", + "translation_key": "block.minecraft.cherry_sign", + "item_id": 851, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4795, + "states": [ { "id": 4794, "luminance": 0, @@ -47602,34 +47659,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 203, - "name": "jungle_wall_sign", - "translation_key": "block.minecraft.jungle_sign", - "item_id": 845, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4799, - "states": [ { "id": 4798, "luminance": 0, @@ -47661,7 +47691,34 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 204, + "name": "jungle_wall_sign", + "translation_key": "block.minecraft.jungle_sign", + "item_id": 849, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4803, + "states": [ { "id": 4802, "luminance": 0, @@ -47693,34 +47750,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 204, - "name": "dark_oak_wall_sign", - "translation_key": "block.minecraft.dark_oak_sign", - "item_id": 848, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4807, - "states": [ { "id": 4806, "luminance": 0, @@ -47752,7 +47782,34 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 205, + "name": "dark_oak_wall_sign", + "translation_key": "block.minecraft.dark_oak_sign", + "item_id": 852, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4811, + "states": [ { "id": 4810, "luminance": 0, @@ -47784,34 +47841,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 205, - "name": "mangrove_wall_sign", - "translation_key": "block.minecraft.mangrove_sign", - "item_id": 849, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4815, - "states": [ { "id": 4814, "luminance": 0, @@ -47843,7 +47873,34 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 206, + "name": "mangrove_wall_sign", + "translation_key": "block.minecraft.mangrove_sign", + "item_id": 853, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4819, + "states": [ { "id": 4818, "luminance": 0, @@ -47875,34 +47932,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 206, - "name": "bamboo_wall_sign", - "translation_key": "block.minecraft.bamboo_sign", - "item_id": 850, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 4823, - "states": [ { "id": 4822, "luminance": 0, @@ -47934,7 +47964,34 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 207, + "name": "bamboo_wall_sign", + "translation_key": "block.minecraft.bamboo_sign", + "item_id": 854, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 4827, + "states": [ { "id": 4826, "luminance": 0, @@ -47966,15 +48023,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + }, + { + "id": 4830, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 4831, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 4832, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 4833, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 } ] }, { - "id": 207, + "id": 208, "name": "oak_hanging_sign", "translation_key": "block.minecraft.oak_hanging_sign", - "item_id": 853, - "wall_variant_id": 218, + "item_id": 857, + "wall_variant_id": 219, "properties": [ { "name": "attached", @@ -48012,40 +48101,8 @@ ] } ], - "default_state_id": 4863, + "default_state_id": 4867, "states": [ - { - "id": 4830, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 4831, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 4832, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 4833, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, { "id": 4834, "luminance": 0, @@ -48525,15 +48582,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 8 + }, + { + "id": 4894, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 4895, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 4896, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 4897, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 } ] }, { - "id": 208, + "id": 209, "name": "spruce_hanging_sign", "translation_key": "block.minecraft.spruce_hanging_sign", - "item_id": 854, - "wall_variant_id": 219, + "item_id": 858, + "wall_variant_id": 220, "properties": [ { "name": "attached", @@ -48571,40 +48660,8 @@ ] } ], - "default_state_id": 4927, + "default_state_id": 4931, "states": [ - { - "id": 4894, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 4895, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 4896, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 4897, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, { "id": 4898, "luminance": 0, @@ -49084,15 +49141,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 8 + }, + { + "id": 4958, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 4959, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 4960, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 4961, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 } ] }, { - "id": 209, + "id": 210, "name": "birch_hanging_sign", "translation_key": "block.minecraft.birch_hanging_sign", - "item_id": 855, - "wall_variant_id": 220, + "item_id": 859, + "wall_variant_id": 221, "properties": [ { "name": "attached", @@ -49130,40 +49219,8 @@ ] } ], - "default_state_id": 4991, + "default_state_id": 4995, "states": [ - { - "id": 4958, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 4959, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 4960, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 4961, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, { "id": 4962, "luminance": 0, @@ -49643,15 +49700,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 8 + }, + { + "id": 5022, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5023, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5024, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5025, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 } ] }, { - "id": 210, + "id": 211, "name": "acacia_hanging_sign", "translation_key": "block.minecraft.acacia_hanging_sign", - "item_id": 857, - "wall_variant_id": 221, + "item_id": 861, + "wall_variant_id": 222, "properties": [ { "name": "attached", @@ -49689,40 +49778,8 @@ ] } ], - "default_state_id": 5055, + "default_state_id": 5059, "states": [ - { - "id": 5022, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5023, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5024, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5025, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, { "id": 5026, "luminance": 0, @@ -50202,15 +50259,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 8 + }, + { + "id": 5086, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5087, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5088, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5089, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 } ] }, { - "id": 211, + "id": 212, "name": "cherry_hanging_sign", "translation_key": "block.minecraft.cherry_hanging_sign", - "item_id": 858, - "wall_variant_id": 222, + "item_id": 862, + "wall_variant_id": 223, "properties": [ { "name": "attached", @@ -50248,40 +50337,8 @@ ] } ], - "default_state_id": 5119, + "default_state_id": 5123, "states": [ - { - "id": 5086, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5087, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5088, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5089, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, { "id": 5090, "luminance": 0, @@ -50761,15 +50818,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 8 + }, + { + "id": 5150, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5151, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5152, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5153, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 } ] }, { - "id": 212, + "id": 213, "name": "jungle_hanging_sign", "translation_key": "block.minecraft.jungle_hanging_sign", - "item_id": 856, - "wall_variant_id": 223, + "item_id": 860, + "wall_variant_id": 224, "properties": [ { "name": "attached", @@ -50807,40 +50896,8 @@ ] } ], - "default_state_id": 5183, + "default_state_id": 5187, "states": [ - { - "id": 5150, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5151, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5152, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5153, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, { "id": 5154, "luminance": 0, @@ -51320,15 +51377,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 8 + }, + { + "id": 5214, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5215, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5216, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5217, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 } ] }, { - "id": 213, + "id": 214, "name": "dark_oak_hanging_sign", "translation_key": "block.minecraft.dark_oak_hanging_sign", - "item_id": 859, - "wall_variant_id": 224, + "item_id": 863, + "wall_variant_id": 225, "properties": [ { "name": "attached", @@ -51366,40 +51455,8 @@ ] } ], - "default_state_id": 5247, + "default_state_id": 5251, "states": [ - { - "id": 5214, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5215, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5216, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5217, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, { "id": 5218, "luminance": 0, @@ -51879,15 +51936,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 8 + }, + { + "id": 5278, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5279, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5280, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5281, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 } ] }, { - "id": 214, + "id": 215, "name": "crimson_hanging_sign", "translation_key": "block.minecraft.crimson_hanging_sign", - "item_id": 862, - "wall_variant_id": 226, + "item_id": 866, + "wall_variant_id": 227, "properties": [ { "name": "attached", @@ -51925,40 +52014,8 @@ ] } ], - "default_state_id": 5311, + "default_state_id": 5315, "states": [ - { - "id": 5278, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5279, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5280, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5281, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, { "id": 5282, "luminance": 0, @@ -52438,15 +52495,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 8 + }, + { + "id": 5342, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5343, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5344, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5345, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 } ] }, { - "id": 215, + "id": 216, "name": "warped_hanging_sign", "translation_key": "block.minecraft.warped_hanging_sign", - "item_id": 863, - "wall_variant_id": 227, + "item_id": 867, + "wall_variant_id": 228, "properties": [ { "name": "attached", @@ -52484,40 +52573,8 @@ ] } ], - "default_state_id": 5375, + "default_state_id": 5379, "states": [ - { - "id": 5342, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5343, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5344, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5345, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, { "id": 5346, "luminance": 0, @@ -52997,15 +53054,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 8 + }, + { + "id": 5406, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5407, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5408, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5409, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 } ] }, { - "id": 216, + "id": 217, "name": "mangrove_hanging_sign", "translation_key": "block.minecraft.mangrove_hanging_sign", - "item_id": 860, - "wall_variant_id": 225, + "item_id": 864, + "wall_variant_id": 226, "properties": [ { "name": "attached", @@ -53043,40 +53132,8 @@ ] } ], - "default_state_id": 5439, + "default_state_id": 5443, "states": [ - { - "id": 5406, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5407, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5408, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5409, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, { "id": 5410, "luminance": 0, @@ -53556,15 +53613,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 8 + }, + { + "id": 5470, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5471, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5472, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 + }, + { + "id": 5473, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 8 } ] }, { - "id": 217, + "id": 218, "name": "bamboo_hanging_sign", "translation_key": "block.minecraft.bamboo_hanging_sign", - "item_id": 861, - "wall_variant_id": 228, + "item_id": 865, + "wall_variant_id": 229, "properties": [ { "name": "attached", @@ -53602,40 +53691,8 @@ ] } ], - "default_state_id": 5503, + "default_state_id": 5507, "states": [ - { - "id": 5470, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5471, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5472, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, - { - "id": 5473, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 8 - }, { "id": 5474, "luminance": 0, @@ -54115,42 +54172,13 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 8 - } - ] - }, - { - "id": 218, - "name": "oak_wall_hanging_sign", - "translation_key": "block.minecraft.oak_hanging_sign", - "item_id": 853, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 5535, - "states": [ { "id": 5534, "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [ - 68 - ], + "collision_shapes": [], "block_entity_type": 8 }, { @@ -54158,9 +54186,7 @@ "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [ - 68 - ], + "collision_shapes": [], "block_entity_type": 8 }, { @@ -54168,9 +54194,7 @@ "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [ - 68 - ], + "collision_shapes": [], "block_entity_type": 8 }, { @@ -54178,271 +54202,15 @@ "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5538, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5539, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5540, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5541, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], + "collision_shapes": [], "block_entity_type": 8 } ] }, { "id": 219, - "name": "spruce_wall_hanging_sign", - "translation_key": "block.minecraft.spruce_hanging_sign", - "item_id": 854, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 5543, - "states": [ - { - "id": 5542, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5543, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5544, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5545, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5546, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5547, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5548, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5549, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - } - ] - }, - { - "id": 220, - "name": "birch_wall_hanging_sign", - "translation_key": "block.minecraft.birch_hanging_sign", - "item_id": 855, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 5551, - "states": [ - { - "id": 5550, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5551, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5552, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5553, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5554, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5555, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5556, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5557, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - } - ] - }, - { - "id": 221, - "name": "acacia_wall_hanging_sign", - "translation_key": "block.minecraft.acacia_hanging_sign", + "name": "oak_wall_hanging_sign", + "translation_key": "block.minecraft.oak_hanging_sign", "item_id": 857, "properties": [ { @@ -54462,10 +54230,10 @@ ] } ], - "default_state_id": 5559, + "default_state_id": 5539, "states": [ { - "id": 5558, + "id": 5538, "luminance": 0, "opaque": false, "replaceable": false, @@ -54475,7 +54243,7 @@ "block_entity_type": 8 }, { - "id": 5559, + "id": 5539, "luminance": 0, "opaque": false, "replaceable": false, @@ -54485,7 +54253,7 @@ "block_entity_type": 8 }, { - "id": 5560, + "id": 5540, "luminance": 0, "opaque": false, "replaceable": false, @@ -54495,7 +54263,7 @@ "block_entity_type": 8 }, { - "id": 5561, + "id": 5541, "luminance": 0, "opaque": false, "replaceable": false, @@ -54505,7 +54273,7 @@ "block_entity_type": 8 }, { - "id": 5562, + "id": 5542, "luminance": 0, "opaque": false, "replaceable": false, @@ -54515,7 +54283,7 @@ "block_entity_type": 8 }, { - "id": 5563, + "id": 5543, "luminance": 0, "opaque": false, "replaceable": false, @@ -54525,7 +54293,7 @@ "block_entity_type": 8 }, { - "id": 5564, + "id": 5544, "luminance": 0, "opaque": false, "replaceable": false, @@ -54535,7 +54303,7 @@ "block_entity_type": 8 }, { - "id": 5565, + "id": 5545, "luminance": 0, "opaque": false, "replaceable": false, @@ -54547,9 +54315,9 @@ ] }, { - "id": 222, - "name": "cherry_wall_hanging_sign", - "translation_key": "block.minecraft.cherry_hanging_sign", + "id": 220, + "name": "spruce_wall_hanging_sign", + "translation_key": "block.minecraft.spruce_hanging_sign", "item_id": 858, "properties": [ { @@ -54569,10 +54337,10 @@ ] } ], - "default_state_id": 5567, + "default_state_id": 5547, "states": [ { - "id": 5566, + "id": 5546, "luminance": 0, "opaque": false, "replaceable": false, @@ -54582,7 +54350,7 @@ "block_entity_type": 8 }, { - "id": 5567, + "id": 5547, "luminance": 0, "opaque": false, "replaceable": false, @@ -54592,7 +54360,7 @@ "block_entity_type": 8 }, { - "id": 5568, + "id": 5548, "luminance": 0, "opaque": false, "replaceable": false, @@ -54602,7 +54370,7 @@ "block_entity_type": 8 }, { - "id": 5569, + "id": 5549, "luminance": 0, "opaque": false, "replaceable": false, @@ -54612,7 +54380,7 @@ "block_entity_type": 8 }, { - "id": 5570, + "id": 5550, "luminance": 0, "opaque": false, "replaceable": false, @@ -54622,7 +54390,7 @@ "block_entity_type": 8 }, { - "id": 5571, + "id": 5551, "luminance": 0, "opaque": false, "replaceable": false, @@ -54632,7 +54400,7 @@ "block_entity_type": 8 }, { - "id": 5572, + "id": 5552, "luminance": 0, "opaque": false, "replaceable": false, @@ -54642,7 +54410,7 @@ "block_entity_type": 8 }, { - "id": 5573, + "id": 5553, "luminance": 0, "opaque": false, "replaceable": false, @@ -54654,116 +54422,9 @@ ] }, { - "id": 223, - "name": "jungle_wall_hanging_sign", - "translation_key": "block.minecraft.jungle_hanging_sign", - "item_id": 856, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 5575, - "states": [ - { - "id": 5574, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5575, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5576, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5577, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5578, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5579, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5580, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5581, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - } - ] - }, - { - "id": 224, - "name": "dark_oak_wall_hanging_sign", - "translation_key": "block.minecraft.dark_oak_hanging_sign", + "id": 221, + "name": "birch_wall_hanging_sign", + "translation_key": "block.minecraft.birch_hanging_sign", "item_id": 859, "properties": [ { @@ -54783,10 +54444,10 @@ ] } ], - "default_state_id": 5583, + "default_state_id": 5555, "states": [ { - "id": 5582, + "id": 5554, "luminance": 0, "opaque": false, "replaceable": false, @@ -54796,7 +54457,7 @@ "block_entity_type": 8 }, { - "id": 5583, + "id": 5555, "luminance": 0, "opaque": false, "replaceable": false, @@ -54806,7 +54467,7 @@ "block_entity_type": 8 }, { - "id": 5584, + "id": 5556, "luminance": 0, "opaque": false, "replaceable": false, @@ -54816,7 +54477,7 @@ "block_entity_type": 8 }, { - "id": 5585, + "id": 5557, "luminance": 0, "opaque": false, "replaceable": false, @@ -54826,7 +54487,7 @@ "block_entity_type": 8 }, { - "id": 5586, + "id": 5558, "luminance": 0, "opaque": false, "replaceable": false, @@ -54836,7 +54497,7 @@ "block_entity_type": 8 }, { - "id": 5587, + "id": 5559, "luminance": 0, "opaque": false, "replaceable": false, @@ -54846,7 +54507,7 @@ "block_entity_type": 8 }, { - "id": 5588, + "id": 5560, "luminance": 0, "opaque": false, "replaceable": false, @@ -54856,7 +54517,7 @@ "block_entity_type": 8 }, { - "id": 5589, + "id": 5561, "luminance": 0, "opaque": false, "replaceable": false, @@ -54868,330 +54529,9 @@ ] }, { - "id": 225, - "name": "mangrove_wall_hanging_sign", - "translation_key": "block.minecraft.mangrove_hanging_sign", - "item_id": 860, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 5591, - "states": [ - { - "id": 5590, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5591, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5592, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5593, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5594, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5595, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5596, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5597, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - } - ] - }, - { - "id": 226, - "name": "crimson_wall_hanging_sign", - "translation_key": "block.minecraft.crimson_hanging_sign", - "item_id": 862, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 5599, - "states": [ - { - "id": 5598, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5599, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5600, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5601, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5602, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5603, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5604, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5605, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - } - ] - }, - { - "id": 227, - "name": "warped_wall_hanging_sign", - "translation_key": "block.minecraft.warped_hanging_sign", - "item_id": 863, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 5607, - "states": [ - { - "id": 5606, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5607, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5608, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5609, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5610, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5611, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5612, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5613, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - } - ] - }, - { - "id": 228, - "name": "bamboo_wall_hanging_sign", - "translation_key": "block.minecraft.bamboo_hanging_sign", + "id": 222, + "name": "acacia_wall_hanging_sign", + "translation_key": "block.minecraft.acacia_hanging_sign", "item_id": 861, "properties": [ { @@ -55211,15 +54551,697 @@ ] } ], - "default_state_id": 5615, + "default_state_id": 5563, "states": [ + { + "id": 5562, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5563, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5564, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5565, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5566, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5567, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5568, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5569, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + } + ] + }, + { + "id": 223, + "name": "cherry_wall_hanging_sign", + "translation_key": "block.minecraft.cherry_hanging_sign", + "item_id": 862, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5571, + "states": [ + { + "id": 5570, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5571, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5572, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5573, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5574, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5575, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5576, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5577, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + } + ] + }, + { + "id": 224, + "name": "jungle_wall_hanging_sign", + "translation_key": "block.minecraft.jungle_hanging_sign", + "item_id": 860, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5579, + "states": [ + { + "id": 5578, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5579, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5580, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5581, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5582, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5583, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5584, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5585, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + } + ] + }, + { + "id": 225, + "name": "dark_oak_wall_hanging_sign", + "translation_key": "block.minecraft.dark_oak_hanging_sign", + "item_id": 863, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5587, + "states": [ + { + "id": 5586, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5587, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5588, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5589, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5590, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5591, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5592, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5593, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + } + ] + }, + { + "id": 226, + "name": "mangrove_wall_hanging_sign", + "translation_key": "block.minecraft.mangrove_hanging_sign", + "item_id": 864, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5595, + "states": [ + { + "id": 5594, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5595, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5596, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5597, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5598, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5599, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5600, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5601, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + } + ] + }, + { + "id": 227, + "name": "crimson_wall_hanging_sign", + "translation_key": "block.minecraft.crimson_hanging_sign", + "item_id": 866, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5603, + "states": [ + { + "id": 5602, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5603, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5604, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5605, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5606, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5607, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5608, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5609, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + } + ] + }, + { + "id": 228, + "name": "warped_wall_hanging_sign", + "translation_key": "block.minecraft.warped_hanging_sign", + "item_id": 867, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5611, + "states": [ + { + "id": 5610, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5611, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5612, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5613, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, { "id": 5614, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 68 + 69 ], "block_entity_type": 8 }, @@ -55229,7 +55251,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 68 + 69 ], "block_entity_type": 8 }, @@ -55239,7 +55261,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 68 + 69 ], "block_entity_type": 8 }, @@ -55248,46 +55270,6 @@ "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [ - 68 - ], - "block_entity_type": 8 - }, - { - "id": 5618, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5619, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5620, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 69 - ], - "block_entity_type": 8 - }, - { - "id": 5621, - "luminance": 0, - "opaque": false, - "replaceable": false, "collision_shapes": [ 69 ], @@ -55297,9 +55279,116 @@ }, { "id": 229, + "name": "bamboo_wall_hanging_sign", + "translation_key": "block.minecraft.bamboo_hanging_sign", + "item_id": 865, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5619, + "states": [ + { + "id": 5618, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5619, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5620, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5621, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 68 + ], + "block_entity_type": 8 + }, + { + "id": 5622, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5623, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5624, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + }, + { + "id": 5625, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 69 + ], + "block_entity_type": 8 + } + ] + }, + { + "id": 230, "name": "lever", "translation_key": "block.minecraft.lever", - "item_id": 647, + "item_id": 650, "properties": [ { "name": "face", @@ -55326,36 +55415,8 @@ ] } ], - "default_state_id": 5631, + "default_state_id": 5635, "states": [ - { - "id": 5622, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5623, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5624, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5625, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 5626, "luminance": 0, @@ -55495,25 +55556,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 230, - "name": "stone_pressure_plate", - "translation_key": "block.minecraft.stone_pressure_plate", - "item_id": 669, - "properties": [ - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 5647, - "states": [ + }, { "id": 5646, "luminance": 0, @@ -55527,14 +55570,60 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 5648, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5649, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { "id": 231, + "name": "stone_pressure_plate", + "translation_key": "block.minecraft.stone_pressure_plate", + "item_id": 673, + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5651, + "states": [ + { + "id": 5650, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5651, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 232, "name": "iron_door", "translation_key": "block.minecraft.iron_door", - "item_id": 684, + "item_id": 688, "properties": [ { "name": "facing", @@ -55574,51 +55663,15 @@ ] } ], - "default_state_id": 5659, + "default_state_id": 5663, "states": [ - { - "id": 5648, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 5649, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 5650, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 5651, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, { "id": 5652, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -55627,7 +55680,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -55654,7 +55707,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -55663,7 +55716,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -55690,7 +55743,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -55699,7 +55752,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -55744,7 +55797,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -55753,7 +55806,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -55762,7 +55815,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -55771,7 +55824,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -55798,7 +55851,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -55807,7 +55860,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -55834,7 +55887,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -55843,7 +55896,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -55870,7 +55923,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -55879,7 +55932,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -55888,7 +55941,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -55897,7 +55950,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -55906,7 +55959,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -55915,7 +55968,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -55942,7 +55995,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -55951,7 +56004,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -55978,7 +56031,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -55987,7 +56040,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -56032,7 +56085,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -56041,7 +56094,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -56050,7 +56103,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -56059,7 +56112,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -56086,7 +56139,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -56095,7 +56148,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -56122,7 +56175,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -56131,7 +56184,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -56151,78 +56204,50 @@ "collision_shapes": [ 64 ] - } - ] - }, - { - "id": 232, - "name": "oak_pressure_plate", - "translation_key": "block.minecraft.oak_pressure_plate", - "item_id": 673, - "properties": [ - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 5713, - "states": [ + }, { "id": 5712, "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 65 + ] }, { "id": 5713, "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 233, - "name": "spruce_pressure_plate", - "translation_key": "block.minecraft.spruce_pressure_plate", - "item_id": 674, - "properties": [ - { - "name": "powered", - "values": [ - "true", - "false" + "collision_shapes": [ + 65 ] - } - ], - "default_state_id": 5715, - "states": [ + }, { "id": 5714, "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 64 + ] }, { "id": 5715, "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 64 + ] } ] }, { - "id": 234, - "name": "birch_pressure_plate", - "translation_key": "block.minecraft.birch_pressure_plate", - "item_id": 675, + "id": 233, + "name": "oak_pressure_plate", + "translation_key": "block.minecraft.oak_pressure_plate", + "item_id": 677, "properties": [ { "name": "powered", @@ -56251,10 +56276,10 @@ ] }, { - "id": 235, - "name": "jungle_pressure_plate", - "translation_key": "block.minecraft.jungle_pressure_plate", - "item_id": 676, + "id": 234, + "name": "spruce_pressure_plate", + "translation_key": "block.minecraft.spruce_pressure_plate", + "item_id": 678, "properties": [ { "name": "powered", @@ -56283,10 +56308,10 @@ ] }, { - "id": 236, - "name": "acacia_pressure_plate", - "translation_key": "block.minecraft.acacia_pressure_plate", - "item_id": 677, + "id": 235, + "name": "birch_pressure_plate", + "translation_key": "block.minecraft.birch_pressure_plate", + "item_id": 679, "properties": [ { "name": "powered", @@ -56315,10 +56340,10 @@ ] }, { - "id": 237, - "name": "cherry_pressure_plate", - "translation_key": "block.minecraft.cherry_pressure_plate", - "item_id": 678, + "id": 236, + "name": "jungle_pressure_plate", + "translation_key": "block.minecraft.jungle_pressure_plate", + "item_id": 680, "properties": [ { "name": "powered", @@ -56347,10 +56372,10 @@ ] }, { - "id": 238, - "name": "dark_oak_pressure_plate", - "translation_key": "block.minecraft.dark_oak_pressure_plate", - "item_id": 679, + "id": 237, + "name": "acacia_pressure_plate", + "translation_key": "block.minecraft.acacia_pressure_plate", + "item_id": 681, "properties": [ { "name": "powered", @@ -56379,10 +56404,10 @@ ] }, { - "id": 239, - "name": "mangrove_pressure_plate", - "translation_key": "block.minecraft.mangrove_pressure_plate", - "item_id": 680, + "id": 238, + "name": "cherry_pressure_plate", + "translation_key": "block.minecraft.cherry_pressure_plate", + "item_id": 682, "properties": [ { "name": "powered", @@ -56411,10 +56436,10 @@ ] }, { - "id": 240, - "name": "bamboo_pressure_plate", - "translation_key": "block.minecraft.bamboo_pressure_plate", - "item_id": 681, + "id": 239, + "name": "dark_oak_pressure_plate", + "translation_key": "block.minecraft.dark_oak_pressure_plate", + "item_id": 683, "properties": [ { "name": "powered", @@ -56443,13 +56468,13 @@ ] }, { - "id": 241, - "name": "redstone_ore", - "translation_key": "block.minecraft.redstone_ore", - "item_id": 56, + "id": 240, + "name": "mangrove_pressure_plate", + "translation_key": "block.minecraft.mangrove_pressure_plate", + "item_id": 684, "properties": [ { - "name": "lit", + "name": "powered", "values": [ "true", "false" @@ -56460,32 +56485,28 @@ "states": [ { "id": 5730, - "luminance": 9, - "opaque": true, + "luminance": 0, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] + "collision_shapes": [] }, { "id": 5731, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] + "collision_shapes": [] } ] }, { - "id": 242, - "name": "deepslate_redstone_ore", - "translation_key": "block.minecraft.deepslate_redstone_ore", - "item_id": 57, + "id": 241, + "name": "bamboo_pressure_plate", + "translation_key": "block.minecraft.bamboo_pressure_plate", + "item_id": 685, "properties": [ { - "name": "lit", + "name": "powered", "values": [ "true", "false" @@ -56496,6 +56517,38 @@ "states": [ { "id": 5732, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5733, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 242, + "name": "redstone_ore", + "translation_key": "block.minecraft.redstone_ore", + "item_id": 57, + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5735, + "states": [ + { + "id": 5734, "luminance": 9, "opaque": true, "replaceable": false, @@ -56504,7 +56557,7 @@ ] }, { - "id": 5733, + "id": 5735, "luminance": 0, "opaque": true, "replaceable": false, @@ -56516,10 +56569,9 @@ }, { "id": 243, - "name": "redstone_torch", - "translation_key": "block.minecraft.redstone_torch", - "item_id": 633, - "wall_variant_id": 244, + "name": "deepslate_redstone_ore", + "translation_key": "block.minecraft.deepslate_redstone_ore", + "item_id": 58, "properties": [ { "name": "lit", @@ -56529,17 +56581,54 @@ ] } ], - "default_state_id": 5734, + "default_state_id": 5737, "states": [ { - "id": 5734, + "id": 5736, + "luminance": 9, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5737, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 244, + "name": "redstone_torch", + "translation_key": "block.minecraft.redstone_torch", + "item_id": 636, + "wall_variant_id": 245, + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 5738, + "states": [ + { + "id": 5738, "luminance": 7, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 5735, + "id": 5739, "luminance": 0, "opaque": false, "replaceable": false, @@ -56548,10 +56637,10 @@ ] }, { - "id": 244, + "id": 245, "name": "redstone_wall_torch", "translation_key": "block.minecraft.redstone_torch", - "item_id": 633, + "item_id": 636, "properties": [ { "name": "facing", @@ -56570,36 +56659,8 @@ ] } ], - "default_state_id": 5736, + "default_state_id": 5740, "states": [ - { - "id": 5736, - "luminance": 7, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5737, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5738, - "luminance": 7, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5739, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 5740, "luminance": 7, @@ -56627,14 +56688,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 5744, + "luminance": 7, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5745, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5746, + "luminance": 7, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5747, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 245, + "id": 246, "name": "stone_button", "translation_key": "block.minecraft.stone_button", - "item_id": 656, + "item_id": 660, "properties": [ { "name": "face", @@ -56661,36 +56750,8 @@ ] } ], - "default_state_id": 5753, + "default_state_id": 5757, "states": [ - { - "id": 5744, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5745, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5746, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5747, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 5748, "luminance": 0, @@ -56830,14 +56891,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 5768, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5769, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5770, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5771, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 246, + "id": 247, "name": "snow", "translation_key": "block.minecraft.snow", - "item_id": 281, + "item_id": 283, "properties": [ { "name": "layers", @@ -56853,17 +56942,17 @@ ] } ], - "default_state_id": 5768, + "default_state_id": 5772, "states": [ { - "id": 5768, + "id": 5772, "luminance": 0, "opaque": true, "replaceable": true, "collision_shapes": [] }, { - "id": 5769, + "id": 5773, "luminance": 0, "opaque": true, "replaceable": true, @@ -56872,7 +56961,7 @@ ] }, { - "id": 5770, + "id": 5774, "luminance": 0, "opaque": true, "replaceable": true, @@ -56881,7 +56970,7 @@ ] }, { - "id": 5771, + "id": 5775, "luminance": 0, "opaque": true, "replaceable": true, @@ -56890,7 +56979,7 @@ ] }, { - "id": 5772, + "id": 5776, "luminance": 0, "opaque": true, "replaceable": true, @@ -56899,7 +56988,7 @@ ] }, { - "id": 5773, + "id": 5777, "luminance": 0, "opaque": true, "replaceable": true, @@ -56908,7 +56997,7 @@ ] }, { - "id": 5774, + "id": 5778, "luminance": 0, "opaque": true, "replaceable": true, @@ -56917,7 +57006,7 @@ ] }, { - "id": 5775, + "id": 5779, "luminance": 0, "opaque": true, "replaceable": true, @@ -56928,15 +57017,15 @@ ] }, { - "id": 247, + "id": 248, "name": "ice", "translation_key": "block.minecraft.ice", - "item_id": 282, + "item_id": 284, "properties": [], - "default_state_id": 5776, + "default_state_id": 5780, "states": [ { - "id": 5776, + "id": 5780, "luminance": 0, "opaque": false, "replaceable": false, @@ -56947,15 +57036,15 @@ ] }, { - "id": 248, + "id": 249, "name": "snow_block", "translation_key": "block.minecraft.snow_block", - "item_id": 283, + "item_id": 285, "properties": [], - "default_state_id": 5777, + "default_state_id": 5781, "states": [ { - "id": 5777, + "id": 5781, "luminance": 0, "opaque": true, "replaceable": false, @@ -56966,10 +57055,10 @@ ] }, { - "id": 249, + "id": 250, "name": "cactus", "translation_key": "block.minecraft.cactus", - "item_id": 284, + "item_id": 286, "properties": [ { "name": "age", @@ -56993,44 +57082,8 @@ ] } ], - "default_state_id": 5778, + "default_state_id": 5782, "states": [ - { - "id": 5778, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 74 - ] - }, - { - "id": 5779, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 74 - ] - }, - { - "id": 5780, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 74 - ] - }, - { - "id": 5781, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 74 - ] - }, { "id": 5782, "luminance": 0, @@ -57138,19 +57191,55 @@ "collision_shapes": [ 74 ] + }, + { + "id": 5794, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 74 + ] + }, + { + "id": 5795, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 74 + ] + }, + { + "id": 5796, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 74 + ] + }, + { + "id": 5797, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 74 + ] } ] }, { - "id": 250, + "id": 251, "name": "clay", "translation_key": "block.minecraft.clay", - "item_id": 285, + "item_id": 287, "properties": [], - "default_state_id": 5794, + "default_state_id": 5798, "states": [ { - "id": 5794, + "id": 5798, "luminance": 0, "opaque": true, "replaceable": false, @@ -57161,10 +57250,10 @@ ] }, { - "id": 251, + "id": 252, "name": "sugar_cane", "translation_key": "block.minecraft.sugar_cane", - "item_id": 219, + "item_id": 221, "properties": [ { "name": "age", @@ -57188,36 +57277,8 @@ ] } ], - "default_state_id": 5795, + "default_state_id": 5799, "states": [ - { - "id": 5795, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5796, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5797, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5798, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 5799, "luminance": 0, @@ -57301,14 +57362,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 5811, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5812, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5813, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5814, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 252, + "id": 253, "name": "jukebox", "translation_key": "block.minecraft.jukebox", - "item_id": 286, + "item_id": 288, "properties": [ { "name": "has_record", @@ -57318,10 +57407,10 @@ ] } ], - "default_state_id": 5812, + "default_state_id": 5816, "states": [ { - "id": 5811, + "id": 5815, "luminance": 0, "opaque": true, "replaceable": false, @@ -57331,7 +57420,7 @@ "block_entity_type": 4 }, { - "id": 5812, + "id": 5816, "luminance": 0, "opaque": true, "replaceable": false, @@ -57343,10 +57432,10 @@ ] }, { - "id": 253, + "id": 254, "name": "oak_fence", "translation_key": "block.minecraft.oak_fence", - "item_id": 287, + "item_id": 289, "properties": [ { "name": "east", @@ -57384,50 +57473,8 @@ ] } ], - "default_state_id": 5844, + "default_state_id": 5848, "states": [ - { - "id": 5813, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76, - 77 - ] - }, - { - "id": 5814, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78, - 79 - ] - }, - { - "id": 5815, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76, - 77 - ] - }, - { - "id": 5816, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78, - 79 - ] - }, { "id": 5817, "luminance": 0, @@ -57435,7 +57482,8 @@ "replaceable": false, "collision_shapes": [ 75, - 76 + 76, + 77 ] }, { @@ -57444,7 +57492,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 80, + 78, 79 ] }, @@ -57455,7 +57503,8 @@ "replaceable": false, "collision_shapes": [ 75, - 76 + 76, + 77 ] }, { @@ -57464,7 +57513,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 80, + 78, 79 ] }, @@ -57475,7 +57524,7 @@ "replaceable": false, "collision_shapes": [ 75, - 77 + 76 ] }, { @@ -57484,7 +57533,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 81, + 80, 79 ] }, @@ -57495,7 +57544,7 @@ "replaceable": false, "collision_shapes": [ 75, - 77 + 76 ] }, { @@ -57504,7 +57553,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 81, + 80, 79 ] }, @@ -57514,7 +57563,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 75 + 75, + 77 ] }, { @@ -57523,7 +57573,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 82 + 81, + 79 ] }, { @@ -57532,7 +57583,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 75 + 75, + 77 ] }, { @@ -57541,7 +57593,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 82 + 81, + 79 ] }, { @@ -57550,9 +57603,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83, - 76, - 77 + 75 ] }, { @@ -57561,7 +57612,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 82 ] }, { @@ -57570,9 +57621,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83, - 76, - 77 + 75 ] }, { @@ -57581,7 +57630,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 82 ] }, { @@ -57591,7 +57640,8 @@ "replaceable": false, "collision_shapes": [ 83, - 76 + 76, + 77 ] }, { @@ -57600,7 +57650,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 80 + 78 ] }, { @@ -57610,7 +57660,8 @@ "replaceable": false, "collision_shapes": [ 83, - 76 + 76, + 77 ] }, { @@ -57619,7 +57670,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 80 + 78 ] }, { @@ -57629,7 +57680,7 @@ "replaceable": false, "collision_shapes": [ 83, - 77 + 76 ] }, { @@ -57638,7 +57689,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 81 + 80 ] }, { @@ -57648,7 +57699,7 @@ "replaceable": false, "collision_shapes": [ 83, - 77 + 76 ] }, { @@ -57657,7 +57708,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 81 + 80 ] }, { @@ -57666,7 +57717,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83 + 83, + 77 ] }, { @@ -57675,7 +57727,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 84 + 81 ] }, { @@ -57684,7 +57736,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83 + 83, + 77 ] }, { @@ -57692,6 +57745,42 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 81 + ] + }, + { + "id": 5845, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83 + ] + }, + { + "id": 5846, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 84 + ] + }, + { + "id": 5847, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83 + ] + }, + { + "id": 5848, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 84 ] @@ -57699,34 +57788,15 @@ ] }, { - "id": 254, + "id": 255, "name": "pumpkin", "translation_key": "block.minecraft.pumpkin", - "item_id": 298, + "item_id": 300, "properties": [], - "default_state_id": 5845, + "default_state_id": 5849, "states": [ { - "id": 5845, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 255, - "name": "netherrack", - "translation_key": "block.minecraft.netherrack", - "item_id": 301, - "properties": [], - "default_state_id": 5846, - "states": [ - { - "id": 5846, + "id": 5849, "luminance": 0, "opaque": true, "replaceable": false, @@ -57738,14 +57808,33 @@ }, { "id": 256, - "name": "soul_sand", - "translation_key": "block.minecraft.soul_sand", - "item_id": 302, + "name": "netherrack", + "translation_key": "block.minecraft.netherrack", + "item_id": 303, "properties": [], - "default_state_id": 5847, + "default_state_id": 5850, "states": [ { - "id": 5847, + "id": 5850, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 257, + "name": "soul_sand", + "translation_key": "block.minecraft.soul_sand", + "item_id": 304, + "properties": [], + "default_state_id": 5851, + "states": [ + { + "id": 5851, "luminance": 0, "opaque": true, "replaceable": false, @@ -57756,61 +57845,15 @@ ] }, { - "id": 257, + "id": 258, "name": "soul_soil", "translation_key": "block.minecraft.soul_soil", - "item_id": 303, + "item_id": 305, "properties": [], - "default_state_id": 5848, + "default_state_id": 5852, "states": [ { - "id": 5848, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 258, - "name": "basalt", - "translation_key": "block.minecraft.basalt", - "item_id": 304, - "properties": [ - { - "name": "axis", - "values": [ - "x", - "y", - "z" - ] - } - ], - "default_state_id": 5850, - "states": [ - { - "id": 5849, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 5850, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 5851, + "id": 5852, "luminance": 0, "opaque": true, "replaceable": false, @@ -57822,9 +57865,9 @@ }, { "id": 259, - "name": "polished_basalt", - "translation_key": "block.minecraft.polished_basalt", - "item_id": 305, + "name": "basalt", + "translation_key": "block.minecraft.basalt", + "item_id": 306, "properties": [ { "name": "axis", @@ -57835,17 +57878,8 @@ ] } ], - "default_state_id": 5853, + "default_state_id": 5854, "states": [ - { - "id": 5852, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 5853, "luminance": 0, @@ -57863,66 +57897,73 @@ "collision_shapes": [ 0 ] + }, + { + "id": 5855, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 260, - "name": "soul_torch", - "translation_key": "block.minecraft.soul_torch", + "name": "polished_basalt", + "translation_key": "block.minecraft.polished_basalt", "item_id": 307, - "wall_variant_id": 261, - "properties": [], - "default_state_id": 5855, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 5857, "states": [ { - "id": 5855, - "luminance": 10, - "opaque": false, + "id": 5856, + "luminance": 0, + "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 0 + ] + }, + { + "id": 5857, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5858, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 261, - "name": "soul_wall_torch", + "name": "soul_torch", "translation_key": "block.minecraft.soul_torch", - "item_id": 307, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "default_state_id": 5856, + "item_id": 309, + "wall_variant_id": 262, + "properties": [], + "default_state_id": 5859, "states": [ - { - "id": 5856, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5857, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5858, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 5859, "luminance": 10, @@ -57934,14 +57975,62 @@ }, { "id": 262, - "name": "glowstone", - "translation_key": "block.minecraft.glowstone", - "item_id": 308, - "properties": [], + "name": "soul_wall_torch", + "translation_key": "block.minecraft.soul_torch", + "item_id": 309, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], "default_state_id": 5860, "states": [ { "id": 5860, + "luminance": 10, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5861, + "luminance": 10, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5862, + "luminance": 10, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 5863, + "luminance": 10, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 263, + "name": "glowstone", + "translation_key": "block.minecraft.glowstone", + "item_id": 310, + "properties": [], + "default_state_id": 5864, + "states": [ + { + "id": 5864, "luminance": 15, "opaque": true, "replaceable": false, @@ -57952,7 +58041,7 @@ ] }, { - "id": 263, + "id": 264, "name": "nether_portal", "translation_key": "block.minecraft.nether_portal", "item_id": 0, @@ -57965,85 +58054,29 @@ ] } ], - "default_state_id": 5861, + "default_state_id": 5865, "states": [ - { - "id": 5861, - "luminance": 11, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 5862, - "luminance": 11, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 264, - "name": "carved_pumpkin", - "translation_key": "block.minecraft.carved_pumpkin", - "item_id": 299, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "default_state_id": 5863, - "states": [ - { - "id": 5863, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 5864, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 5865, - "luminance": 0, - "opaque": true, + "luminance": 11, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] + "collision_shapes": [] }, { "id": 5866, - "luminance": 0, - "opaque": true, + "luminance": 11, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] + "collision_shapes": [] } ] }, { "id": 265, - "name": "jack_o_lantern", - "translation_key": "block.minecraft.jack_o_lantern", - "item_id": 300, + "name": "carved_pumpkin", + "translation_key": "block.minecraft.carved_pumpkin", + "item_id": 301, "properties": [ { "name": "facing", @@ -58059,7 +58092,7 @@ "states": [ { "id": 5867, - "luminance": 15, + "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ @@ -58068,7 +58101,7 @@ }, { "id": 5868, - "luminance": 15, + "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ @@ -58077,7 +58110,7 @@ }, { "id": 5869, - "luminance": 15, + "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ @@ -58086,7 +58119,7 @@ }, { "id": 5870, - "luminance": 15, + "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ @@ -58097,9 +58130,65 @@ }, { "id": 266, + "name": "jack_o_lantern", + "translation_key": "block.minecraft.jack_o_lantern", + "item_id": 302, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 5871, + "states": [ + { + "id": 5871, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5872, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5873, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 5874, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 267, "name": "cake", "translation_key": "block.minecraft.cake", - "item_id": 919, + "item_id": 923, "properties": [ { "name": "bites", @@ -58114,10 +58203,10 @@ ] } ], - "default_state_id": 5871, + "default_state_id": 5875, "states": [ { - "id": 5871, + "id": 5875, "luminance": 0, "opaque": true, "replaceable": false, @@ -58126,7 +58215,7 @@ ] }, { - "id": 5872, + "id": 5876, "luminance": 0, "opaque": true, "replaceable": false, @@ -58135,7 +58224,7 @@ ] }, { - "id": 5873, + "id": 5877, "luminance": 0, "opaque": true, "replaceable": false, @@ -58144,7 +58233,7 @@ ] }, { - "id": 5874, + "id": 5878, "luminance": 0, "opaque": true, "replaceable": false, @@ -58153,7 +58242,7 @@ ] }, { - "id": 5875, + "id": 5879, "luminance": 0, "opaque": true, "replaceable": false, @@ -58162,7 +58251,7 @@ ] }, { - "id": 5876, + "id": 5880, "luminance": 0, "opaque": true, "replaceable": false, @@ -58171,7 +58260,7 @@ ] }, { - "id": 5877, + "id": 5881, "luminance": 0, "opaque": true, "replaceable": false, @@ -58182,10 +58271,10 @@ ] }, { - "id": 267, + "id": 268, "name": "repeater", "translation_key": "block.minecraft.repeater", - "item_id": 635, + "item_id": 638, "properties": [ { "name": "delay", @@ -58220,44 +58309,8 @@ ] } ], - "default_state_id": 5881, + "default_state_id": 5885, "states": [ - { - "id": 5878, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 70 - ] - }, - { - "id": 5879, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 70 - ] - }, - { - "id": 5880, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 70 - ] - }, - { - "id": 5881, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 70 - ] - }, { "id": 5882, "luminance": 0, @@ -58797,91 +58850,51 @@ "collision_shapes": [ 70 ] - } - ] - }, - { - "id": 268, - "name": "white_stained_glass", - "translation_key": "block.minecraft.white_stained_glass", - "item_id": 447, - "properties": [], - "default_state_id": 5942, - "states": [ + }, { "id": 5942, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 70 + ] + }, + { + "id": 5943, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 70 + ] + }, + { + "id": 5944, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 70 + ] + }, + { + "id": 5945, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 70 ] } ] }, { "id": 269, - "name": "orange_stained_glass", - "translation_key": "block.minecraft.orange_stained_glass", - "item_id": 448, - "properties": [], - "default_state_id": 5943, - "states": [ - { - "id": 5943, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 270, - "name": "magenta_stained_glass", - "translation_key": "block.minecraft.magenta_stained_glass", + "name": "white_stained_glass", + "translation_key": "block.minecraft.white_stained_glass", "item_id": 449, "properties": [], - "default_state_id": 5944, - "states": [ - { - "id": 5944, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 271, - "name": "light_blue_stained_glass", - "translation_key": "block.minecraft.light_blue_stained_glass", - "item_id": 450, - "properties": [], - "default_state_id": 5945, - "states": [ - { - "id": 5945, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 272, - "name": "yellow_stained_glass", - "translation_key": "block.minecraft.yellow_stained_glass", - "item_id": 451, - "properties": [], "default_state_id": 5946, "states": [ { @@ -58896,10 +58909,10 @@ ] }, { - "id": 273, - "name": "lime_stained_glass", - "translation_key": "block.minecraft.lime_stained_glass", - "item_id": 452, + "id": 270, + "name": "orange_stained_glass", + "translation_key": "block.minecraft.orange_stained_glass", + "item_id": 450, "properties": [], "default_state_id": 5947, "states": [ @@ -58915,10 +58928,10 @@ ] }, { - "id": 274, - "name": "pink_stained_glass", - "translation_key": "block.minecraft.pink_stained_glass", - "item_id": 453, + "id": 271, + "name": "magenta_stained_glass", + "translation_key": "block.minecraft.magenta_stained_glass", + "item_id": 451, "properties": [], "default_state_id": 5948, "states": [ @@ -58934,10 +58947,10 @@ ] }, { - "id": 275, - "name": "gray_stained_glass", - "translation_key": "block.minecraft.gray_stained_glass", - "item_id": 454, + "id": 272, + "name": "light_blue_stained_glass", + "translation_key": "block.minecraft.light_blue_stained_glass", + "item_id": 452, "properties": [], "default_state_id": 5949, "states": [ @@ -58953,10 +58966,10 @@ ] }, { - "id": 276, - "name": "light_gray_stained_glass", - "translation_key": "block.minecraft.light_gray_stained_glass", - "item_id": 455, + "id": 273, + "name": "yellow_stained_glass", + "translation_key": "block.minecraft.yellow_stained_glass", + "item_id": 453, "properties": [], "default_state_id": 5950, "states": [ @@ -58972,10 +58985,10 @@ ] }, { - "id": 277, - "name": "cyan_stained_glass", - "translation_key": "block.minecraft.cyan_stained_glass", - "item_id": 456, + "id": 274, + "name": "lime_stained_glass", + "translation_key": "block.minecraft.lime_stained_glass", + "item_id": 454, "properties": [], "default_state_id": 5951, "states": [ @@ -58991,10 +59004,10 @@ ] }, { - "id": 278, - "name": "purple_stained_glass", - "translation_key": "block.minecraft.purple_stained_glass", - "item_id": 457, + "id": 275, + "name": "pink_stained_glass", + "translation_key": "block.minecraft.pink_stained_glass", + "item_id": 455, "properties": [], "default_state_id": 5952, "states": [ @@ -59010,10 +59023,10 @@ ] }, { - "id": 279, - "name": "blue_stained_glass", - "translation_key": "block.minecraft.blue_stained_glass", - "item_id": 458, + "id": 276, + "name": "gray_stained_glass", + "translation_key": "block.minecraft.gray_stained_glass", + "item_id": 456, "properties": [], "default_state_id": 5953, "states": [ @@ -59029,10 +59042,10 @@ ] }, { - "id": 280, - "name": "brown_stained_glass", - "translation_key": "block.minecraft.brown_stained_glass", - "item_id": 459, + "id": 277, + "name": "light_gray_stained_glass", + "translation_key": "block.minecraft.light_gray_stained_glass", + "item_id": 457, "properties": [], "default_state_id": 5954, "states": [ @@ -59048,10 +59061,10 @@ ] }, { - "id": 281, - "name": "green_stained_glass", - "translation_key": "block.minecraft.green_stained_glass", - "item_id": 460, + "id": 278, + "name": "cyan_stained_glass", + "translation_key": "block.minecraft.cyan_stained_glass", + "item_id": 458, "properties": [], "default_state_id": 5955, "states": [ @@ -59067,10 +59080,10 @@ ] }, { - "id": 282, - "name": "red_stained_glass", - "translation_key": "block.minecraft.red_stained_glass", - "item_id": 461, + "id": 279, + "name": "purple_stained_glass", + "translation_key": "block.minecraft.purple_stained_glass", + "item_id": 459, "properties": [], "default_state_id": 5956, "states": [ @@ -59086,10 +59099,10 @@ ] }, { - "id": 283, - "name": "black_stained_glass", - "translation_key": "block.minecraft.black_stained_glass", - "item_id": 462, + "id": 280, + "name": "blue_stained_glass", + "translation_key": "block.minecraft.blue_stained_glass", + "item_id": 460, "properties": [], "default_state_id": 5957, "states": [ @@ -59105,50 +59118,12 @@ ] }, { - "id": 284, - "name": "oak_trapdoor", - "translation_key": "block.minecraft.oak_trapdoor", - "item_id": 697, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "values": [ - "true", - "false" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 5973, + "id": 281, + "name": "brown_stained_glass", + "translation_key": "block.minecraft.brown_stained_glass", + "item_id": 461, + "properties": [], + "default_state_id": 5958, "states": [ { "id": 5958, @@ -59156,2454 +59131,72 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 0 ] - }, + } + ] + }, + { + "id": 282, + "name": "green_stained_glass", + "translation_key": "block.minecraft.green_stained_glass", + "item_id": 462, + "properties": [], + "default_state_id": 5959, + "states": [ { "id": 5959, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 0 ] - }, + } + ] + }, + { + "id": 283, + "name": "red_stained_glass", + "translation_key": "block.minecraft.red_stained_glass", + "item_id": 463, + "properties": [], + "default_state_id": 5960, + "states": [ { "id": 5960, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 0 ] - }, + } + ] + }, + { + "id": 284, + "name": "black_stained_glass", + "translation_key": "block.minecraft.black_stained_glass", + "item_id": 464, + "properties": [], + "default_state_id": 5961, + "states": [ { "id": 5961, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 65 - ] - }, - { - "id": 5962, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 5963, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 5964, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 5965, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 5966, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 5967, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 5968, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 5969, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 5970, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 5971, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 5972, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 5973, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 5974, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 5975, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 5976, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 5977, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 5978, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 5979, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 5980, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 5981, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 5982, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 5983, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 5984, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 5985, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 5986, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 5987, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 5988, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 5989, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 5990, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 5991, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 5992, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 5993, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 5994, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 5995, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 5996, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 5997, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 5998, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 5999, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6000, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6001, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6002, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6003, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6004, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6005, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6006, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6007, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6008, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6009, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6010, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6011, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6012, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6013, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6014, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6015, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6016, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6017, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6018, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6019, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6020, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6021, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 + 0 ] } ] }, { "id": 285, - "name": "spruce_trapdoor", - "translation_key": "block.minecraft.spruce_trapdoor", - "item_id": 698, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "values": [ - "true", - "false" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 6037, - "states": [ - { - "id": 6022, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6023, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6024, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6025, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6026, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6027, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6028, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6029, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6030, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6031, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6032, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6033, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6034, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6035, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6036, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6037, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6038, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6039, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6040, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6041, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6042, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6043, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6044, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6045, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6046, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6047, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6048, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6049, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6050, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6051, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6052, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6053, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6054, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6055, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6056, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6057, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6058, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6059, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6060, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6061, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6062, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6063, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6064, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6065, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6066, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6067, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6068, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6069, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6070, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6071, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6072, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6073, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6074, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6075, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6076, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6077, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6078, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6079, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6080, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6081, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6082, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6083, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6084, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6085, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - } - ] - }, - { - "id": 286, - "name": "birch_trapdoor", - "translation_key": "block.minecraft.birch_trapdoor", - "item_id": 699, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "values": [ - "true", - "false" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 6101, - "states": [ - { - "id": 6086, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6087, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6088, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6089, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6090, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6091, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6092, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6093, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6094, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6095, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6096, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6097, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6098, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6099, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6100, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6101, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6102, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6103, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6104, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6105, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6106, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6107, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6108, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6109, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6110, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6111, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6112, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6113, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6114, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6115, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6116, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6117, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6118, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6119, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6120, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6121, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6122, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6123, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6124, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6125, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6126, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6127, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6128, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6129, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6130, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6131, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6132, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6133, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6134, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6135, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6136, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6137, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6138, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6139, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6140, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6141, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6142, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6143, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6144, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6145, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6146, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6147, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6148, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6149, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - } - ] - }, - { - "id": 287, - "name": "jungle_trapdoor", - "translation_key": "block.minecraft.jungle_trapdoor", - "item_id": 700, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "open", - "values": [ - "true", - "false" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 6165, - "states": [ - { - "id": 6150, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6151, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6152, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6153, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6154, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6155, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6156, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6157, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6158, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6159, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6160, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6161, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6162, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6163, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6164, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6165, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6166, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6167, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6168, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6169, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6170, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6171, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6172, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6173, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6174, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6175, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6176, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6177, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6178, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6179, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6180, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6181, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6182, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6183, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6184, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6185, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6186, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6187, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6188, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6189, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6190, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6191, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6192, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6193, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6194, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6195, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6196, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6197, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6198, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6199, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6200, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6201, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6202, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6203, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6204, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6205, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6206, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6207, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6208, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6209, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6210, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6211, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6212, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6213, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - } - ] - }, - { - "id": 288, - "name": "acacia_trapdoor", - "translation_key": "block.minecraft.acacia_trapdoor", + "name": "oak_trapdoor", + "translation_key": "block.minecraft.oak_trapdoor", "item_id": 701, "properties": [ { @@ -61644,10 +59237,10 @@ ] } ], - "default_state_id": 6229, + "default_state_id": 5977, "states": [ { - "id": 6214, + "id": 5962, "luminance": 0, "opaque": false, "replaceable": false, @@ -61656,7 +59249,7 @@ ] }, { - "id": 6215, + "id": 5963, "luminance": 0, "opaque": false, "replaceable": false, @@ -61665,7 +59258,7 @@ ] }, { - "id": 6216, + "id": 5964, "luminance": 0, "opaque": false, "replaceable": false, @@ -61674,7 +59267,7 @@ ] }, { - "id": 6217, + "id": 5965, "luminance": 0, "opaque": false, "replaceable": false, @@ -61683,7 +59276,7 @@ ] }, { - "id": 6218, + "id": 5966, "luminance": 0, "opaque": false, "replaceable": false, @@ -61692,7 +59285,7 @@ ] }, { - "id": 6219, + "id": 5967, "luminance": 0, "opaque": false, "replaceable": false, @@ -61701,7 +59294,7 @@ ] }, { - "id": 6220, + "id": 5968, "luminance": 0, "opaque": false, "replaceable": false, @@ -61710,7 +59303,7 @@ ] }, { - "id": 6221, + "id": 5969, "luminance": 0, "opaque": false, "replaceable": false, @@ -61719,7 +59312,7 @@ ] }, { - "id": 6222, + "id": 5970, "luminance": 0, "opaque": false, "replaceable": false, @@ -61728,7 +59321,7 @@ ] }, { - "id": 6223, + "id": 5971, "luminance": 0, "opaque": false, "replaceable": false, @@ -61737,7 +59330,7 @@ ] }, { - "id": 6224, + "id": 5972, "luminance": 0, "opaque": false, "replaceable": false, @@ -61746,7 +59339,7 @@ ] }, { - "id": 6225, + "id": 5973, "luminance": 0, "opaque": false, "replaceable": false, @@ -61755,7 +59348,7 @@ ] }, { - "id": 6226, + "id": 5974, "luminance": 0, "opaque": false, "replaceable": false, @@ -61764,7 +59357,7 @@ ] }, { - "id": 6227, + "id": 5975, "luminance": 0, "opaque": false, "replaceable": false, @@ -61773,7 +59366,7 @@ ] }, { - "id": 6228, + "id": 5976, "luminance": 0, "opaque": false, "replaceable": false, @@ -61782,7 +59375,7 @@ ] }, { - "id": 6229, + "id": 5977, "luminance": 0, "opaque": false, "replaceable": false, @@ -61791,7 +59384,7 @@ ] }, { - "id": 6230, + "id": 5978, "luminance": 0, "opaque": false, "replaceable": false, @@ -61800,7 +59393,7 @@ ] }, { - "id": 6231, + "id": 5979, "luminance": 0, "opaque": false, "replaceable": false, @@ -61809,7 +59402,7 @@ ] }, { - "id": 6232, + "id": 5980, "luminance": 0, "opaque": false, "replaceable": false, @@ -61818,7 +59411,7 @@ ] }, { - "id": 6233, + "id": 5981, "luminance": 0, "opaque": false, "replaceable": false, @@ -61827,7 +59420,7 @@ ] }, { - "id": 6234, + "id": 5982, "luminance": 0, "opaque": false, "replaceable": false, @@ -61836,7 +59429,7 @@ ] }, { - "id": 6235, + "id": 5983, "luminance": 0, "opaque": false, "replaceable": false, @@ -61845,7 +59438,7 @@ ] }, { - "id": 6236, + "id": 5984, "luminance": 0, "opaque": false, "replaceable": false, @@ -61854,7 +59447,7 @@ ] }, { - "id": 6237, + "id": 5985, "luminance": 0, "opaque": false, "replaceable": false, @@ -61863,7 +59456,7 @@ ] }, { - "id": 6238, + "id": 5986, "luminance": 0, "opaque": false, "replaceable": false, @@ -61872,7 +59465,7 @@ ] }, { - "id": 6239, + "id": 5987, "luminance": 0, "opaque": false, "replaceable": false, @@ -61881,7 +59474,7 @@ ] }, { - "id": 6240, + "id": 5988, "luminance": 0, "opaque": false, "replaceable": false, @@ -61890,7 +59483,7 @@ ] }, { - "id": 6241, + "id": 5989, "luminance": 0, "opaque": false, "replaceable": false, @@ -61899,7 +59492,7 @@ ] }, { - "id": 6242, + "id": 5990, "luminance": 0, "opaque": false, "replaceable": false, @@ -61908,7 +59501,7 @@ ] }, { - "id": 6243, + "id": 5991, "luminance": 0, "opaque": false, "replaceable": false, @@ -61917,7 +59510,7 @@ ] }, { - "id": 6244, + "id": 5992, "luminance": 0, "opaque": false, "replaceable": false, @@ -61926,7 +59519,7 @@ ] }, { - "id": 6245, + "id": 5993, "luminance": 0, "opaque": false, "replaceable": false, @@ -61935,7 +59528,7 @@ ] }, { - "id": 6246, + "id": 5994, "luminance": 0, "opaque": false, "replaceable": false, @@ -61944,7 +59537,7 @@ ] }, { - "id": 6247, + "id": 5995, "luminance": 0, "opaque": false, "replaceable": false, @@ -61953,7 +59546,7 @@ ] }, { - "id": 6248, + "id": 5996, "luminance": 0, "opaque": false, "replaceable": false, @@ -61962,7 +59555,7 @@ ] }, { - "id": 6249, + "id": 5997, "luminance": 0, "opaque": false, "replaceable": false, @@ -61971,7 +59564,7 @@ ] }, { - "id": 6250, + "id": 5998, "luminance": 0, "opaque": false, "replaceable": false, @@ -61980,7 +59573,7 @@ ] }, { - "id": 6251, + "id": 5999, "luminance": 0, "opaque": false, "replaceable": false, @@ -61989,7 +59582,7 @@ ] }, { - "id": 6252, + "id": 6000, "luminance": 0, "opaque": false, "replaceable": false, @@ -61998,7 +59591,7 @@ ] }, { - "id": 6253, + "id": 6001, "luminance": 0, "opaque": false, "replaceable": false, @@ -62007,7 +59600,7 @@ ] }, { - "id": 6254, + "id": 6002, "luminance": 0, "opaque": false, "replaceable": false, @@ -62016,7 +59609,7 @@ ] }, { - "id": 6255, + "id": 6003, "luminance": 0, "opaque": false, "replaceable": false, @@ -62025,7 +59618,7 @@ ] }, { - "id": 6256, + "id": 6004, "luminance": 0, "opaque": false, "replaceable": false, @@ -62034,7 +59627,7 @@ ] }, { - "id": 6257, + "id": 6005, "luminance": 0, "opaque": false, "replaceable": false, @@ -62043,7 +59636,7 @@ ] }, { - "id": 6258, + "id": 6006, "luminance": 0, "opaque": false, "replaceable": false, @@ -62052,7 +59645,7 @@ ] }, { - "id": 6259, + "id": 6007, "luminance": 0, "opaque": false, "replaceable": false, @@ -62061,7 +59654,7 @@ ] }, { - "id": 6260, + "id": 6008, "luminance": 0, "opaque": false, "replaceable": false, @@ -62070,7 +59663,7 @@ ] }, { - "id": 6261, + "id": 6009, "luminance": 0, "opaque": false, "replaceable": false, @@ -62079,7 +59672,7 @@ ] }, { - "id": 6262, + "id": 6010, "luminance": 0, "opaque": false, "replaceable": false, @@ -62088,7 +59681,7 @@ ] }, { - "id": 6263, + "id": 6011, "luminance": 0, "opaque": false, "replaceable": false, @@ -62097,7 +59690,7 @@ ] }, { - "id": 6264, + "id": 6012, "luminance": 0, "opaque": false, "replaceable": false, @@ -62106,7 +59699,7 @@ ] }, { - "id": 6265, + "id": 6013, "luminance": 0, "opaque": false, "replaceable": false, @@ -62115,7 +59708,7 @@ ] }, { - "id": 6266, + "id": 6014, "luminance": 0, "opaque": false, "replaceable": false, @@ -62124,7 +59717,7 @@ ] }, { - "id": 6267, + "id": 6015, "luminance": 0, "opaque": false, "replaceable": false, @@ -62133,7 +59726,7 @@ ] }, { - "id": 6268, + "id": 6016, "luminance": 0, "opaque": false, "replaceable": false, @@ -62142,7 +59735,7 @@ ] }, { - "id": 6269, + "id": 6017, "luminance": 0, "opaque": false, "replaceable": false, @@ -62151,7 +59744,7 @@ ] }, { - "id": 6270, + "id": 6018, "luminance": 0, "opaque": false, "replaceable": false, @@ -62160,7 +59753,7 @@ ] }, { - "id": 6271, + "id": 6019, "luminance": 0, "opaque": false, "replaceable": false, @@ -62169,7 +59762,7 @@ ] }, { - "id": 6272, + "id": 6020, "luminance": 0, "opaque": false, "replaceable": false, @@ -62178,7 +59771,7 @@ ] }, { - "id": 6273, + "id": 6021, "luminance": 0, "opaque": false, "replaceable": false, @@ -62187,7 +59780,7 @@ ] }, { - "id": 6274, + "id": 6022, "luminance": 0, "opaque": false, "replaceable": false, @@ -62196,7 +59789,7 @@ ] }, { - "id": 6275, + "id": 6023, "luminance": 0, "opaque": false, "replaceable": false, @@ -62205,7 +59798,7 @@ ] }, { - "id": 6276, + "id": 6024, "luminance": 0, "opaque": false, "replaceable": false, @@ -62214,7 +59807,7 @@ ] }, { - "id": 6277, + "id": 6025, "luminance": 0, "opaque": false, "replaceable": false, @@ -62225,9 +59818,9 @@ ] }, { - "id": 289, - "name": "cherry_trapdoor", - "translation_key": "block.minecraft.cherry_trapdoor", + "id": 286, + "name": "spruce_trapdoor", + "translation_key": "block.minecraft.spruce_trapdoor", "item_id": 702, "properties": [ { @@ -62268,10 +59861,10 @@ ] } ], - "default_state_id": 6293, + "default_state_id": 6041, "states": [ { - "id": 6278, + "id": 6026, "luminance": 0, "opaque": false, "replaceable": false, @@ -62280,7 +59873,7 @@ ] }, { - "id": 6279, + "id": 6027, "luminance": 0, "opaque": false, "replaceable": false, @@ -62289,7 +59882,7 @@ ] }, { - "id": 6280, + "id": 6028, "luminance": 0, "opaque": false, "replaceable": false, @@ -62298,7 +59891,7 @@ ] }, { - "id": 6281, + "id": 6029, "luminance": 0, "opaque": false, "replaceable": false, @@ -62307,7 +59900,7 @@ ] }, { - "id": 6282, + "id": 6030, "luminance": 0, "opaque": false, "replaceable": false, @@ -62316,7 +59909,7 @@ ] }, { - "id": 6283, + "id": 6031, "luminance": 0, "opaque": false, "replaceable": false, @@ -62325,7 +59918,7 @@ ] }, { - "id": 6284, + "id": 6032, "luminance": 0, "opaque": false, "replaceable": false, @@ -62334,7 +59927,7 @@ ] }, { - "id": 6285, + "id": 6033, "luminance": 0, "opaque": false, "replaceable": false, @@ -62343,7 +59936,7 @@ ] }, { - "id": 6286, + "id": 6034, "luminance": 0, "opaque": false, "replaceable": false, @@ -62352,7 +59945,7 @@ ] }, { - "id": 6287, + "id": 6035, "luminance": 0, "opaque": false, "replaceable": false, @@ -62361,7 +59954,7 @@ ] }, { - "id": 6288, + "id": 6036, "luminance": 0, "opaque": false, "replaceable": false, @@ -62370,7 +59963,7 @@ ] }, { - "id": 6289, + "id": 6037, "luminance": 0, "opaque": false, "replaceable": false, @@ -62379,7 +59972,7 @@ ] }, { - "id": 6290, + "id": 6038, "luminance": 0, "opaque": false, "replaceable": false, @@ -62388,7 +59981,7 @@ ] }, { - "id": 6291, + "id": 6039, "luminance": 0, "opaque": false, "replaceable": false, @@ -62397,7 +59990,7 @@ ] }, { - "id": 6292, + "id": 6040, "luminance": 0, "opaque": false, "replaceable": false, @@ -62406,7 +59999,7 @@ ] }, { - "id": 6293, + "id": 6041, "luminance": 0, "opaque": false, "replaceable": false, @@ -62415,7 +60008,7 @@ ] }, { - "id": 6294, + "id": 6042, "luminance": 0, "opaque": false, "replaceable": false, @@ -62424,7 +60017,7 @@ ] }, { - "id": 6295, + "id": 6043, "luminance": 0, "opaque": false, "replaceable": false, @@ -62433,7 +60026,7 @@ ] }, { - "id": 6296, + "id": 6044, "luminance": 0, "opaque": false, "replaceable": false, @@ -62442,7 +60035,7 @@ ] }, { - "id": 6297, + "id": 6045, "luminance": 0, "opaque": false, "replaceable": false, @@ -62451,7 +60044,7 @@ ] }, { - "id": 6298, + "id": 6046, "luminance": 0, "opaque": false, "replaceable": false, @@ -62460,7 +60053,7 @@ ] }, { - "id": 6299, + "id": 6047, "luminance": 0, "opaque": false, "replaceable": false, @@ -62469,7 +60062,7 @@ ] }, { - "id": 6300, + "id": 6048, "luminance": 0, "opaque": false, "replaceable": false, @@ -62478,7 +60071,7 @@ ] }, { - "id": 6301, + "id": 6049, "luminance": 0, "opaque": false, "replaceable": false, @@ -62487,7 +60080,7 @@ ] }, { - "id": 6302, + "id": 6050, "luminance": 0, "opaque": false, "replaceable": false, @@ -62496,7 +60089,7 @@ ] }, { - "id": 6303, + "id": 6051, "luminance": 0, "opaque": false, "replaceable": false, @@ -62505,7 +60098,7 @@ ] }, { - "id": 6304, + "id": 6052, "luminance": 0, "opaque": false, "replaceable": false, @@ -62514,7 +60107,7 @@ ] }, { - "id": 6305, + "id": 6053, "luminance": 0, "opaque": false, "replaceable": false, @@ -62523,7 +60116,7 @@ ] }, { - "id": 6306, + "id": 6054, "luminance": 0, "opaque": false, "replaceable": false, @@ -62532,7 +60125,7 @@ ] }, { - "id": 6307, + "id": 6055, "luminance": 0, "opaque": false, "replaceable": false, @@ -62541,7 +60134,7 @@ ] }, { - "id": 6308, + "id": 6056, "luminance": 0, "opaque": false, "replaceable": false, @@ -62550,7 +60143,7 @@ ] }, { - "id": 6309, + "id": 6057, "luminance": 0, "opaque": false, "replaceable": false, @@ -62559,7 +60152,7 @@ ] }, { - "id": 6310, + "id": 6058, "luminance": 0, "opaque": false, "replaceable": false, @@ -62568,7 +60161,7 @@ ] }, { - "id": 6311, + "id": 6059, "luminance": 0, "opaque": false, "replaceable": false, @@ -62577,7 +60170,7 @@ ] }, { - "id": 6312, + "id": 6060, "luminance": 0, "opaque": false, "replaceable": false, @@ -62586,7 +60179,7 @@ ] }, { - "id": 6313, + "id": 6061, "luminance": 0, "opaque": false, "replaceable": false, @@ -62595,7 +60188,7 @@ ] }, { - "id": 6314, + "id": 6062, "luminance": 0, "opaque": false, "replaceable": false, @@ -62604,7 +60197,7 @@ ] }, { - "id": 6315, + "id": 6063, "luminance": 0, "opaque": false, "replaceable": false, @@ -62613,7 +60206,7 @@ ] }, { - "id": 6316, + "id": 6064, "luminance": 0, "opaque": false, "replaceable": false, @@ -62622,7 +60215,7 @@ ] }, { - "id": 6317, + "id": 6065, "luminance": 0, "opaque": false, "replaceable": false, @@ -62631,7 +60224,7 @@ ] }, { - "id": 6318, + "id": 6066, "luminance": 0, "opaque": false, "replaceable": false, @@ -62640,7 +60233,7 @@ ] }, { - "id": 6319, + "id": 6067, "luminance": 0, "opaque": false, "replaceable": false, @@ -62649,7 +60242,7 @@ ] }, { - "id": 6320, + "id": 6068, "luminance": 0, "opaque": false, "replaceable": false, @@ -62658,7 +60251,7 @@ ] }, { - "id": 6321, + "id": 6069, "luminance": 0, "opaque": false, "replaceable": false, @@ -62667,7 +60260,7 @@ ] }, { - "id": 6322, + "id": 6070, "luminance": 0, "opaque": false, "replaceable": false, @@ -62676,7 +60269,7 @@ ] }, { - "id": 6323, + "id": 6071, "luminance": 0, "opaque": false, "replaceable": false, @@ -62685,7 +60278,7 @@ ] }, { - "id": 6324, + "id": 6072, "luminance": 0, "opaque": false, "replaceable": false, @@ -62694,7 +60287,7 @@ ] }, { - "id": 6325, + "id": 6073, "luminance": 0, "opaque": false, "replaceable": false, @@ -62703,7 +60296,7 @@ ] }, { - "id": 6326, + "id": 6074, "luminance": 0, "opaque": false, "replaceable": false, @@ -62712,7 +60305,7 @@ ] }, { - "id": 6327, + "id": 6075, "luminance": 0, "opaque": false, "replaceable": false, @@ -62721,7 +60314,7 @@ ] }, { - "id": 6328, + "id": 6076, "luminance": 0, "opaque": false, "replaceable": false, @@ -62730,7 +60323,7 @@ ] }, { - "id": 6329, + "id": 6077, "luminance": 0, "opaque": false, "replaceable": false, @@ -62739,7 +60332,7 @@ ] }, { - "id": 6330, + "id": 6078, "luminance": 0, "opaque": false, "replaceable": false, @@ -62748,7 +60341,7 @@ ] }, { - "id": 6331, + "id": 6079, "luminance": 0, "opaque": false, "replaceable": false, @@ -62757,7 +60350,7 @@ ] }, { - "id": 6332, + "id": 6080, "luminance": 0, "opaque": false, "replaceable": false, @@ -62766,7 +60359,7 @@ ] }, { - "id": 6333, + "id": 6081, "luminance": 0, "opaque": false, "replaceable": false, @@ -62775,7 +60368,7 @@ ] }, { - "id": 6334, + "id": 6082, "luminance": 0, "opaque": false, "replaceable": false, @@ -62784,7 +60377,7 @@ ] }, { - "id": 6335, + "id": 6083, "luminance": 0, "opaque": false, "replaceable": false, @@ -62793,7 +60386,7 @@ ] }, { - "id": 6336, + "id": 6084, "luminance": 0, "opaque": false, "replaceable": false, @@ -62802,7 +60395,7 @@ ] }, { - "id": 6337, + "id": 6085, "luminance": 0, "opaque": false, "replaceable": false, @@ -62811,7 +60404,7 @@ ] }, { - "id": 6338, + "id": 6086, "luminance": 0, "opaque": false, "replaceable": false, @@ -62820,7 +60413,7 @@ ] }, { - "id": 6339, + "id": 6087, "luminance": 0, "opaque": false, "replaceable": false, @@ -62829,7 +60422,7 @@ ] }, { - "id": 6340, + "id": 6088, "luminance": 0, "opaque": false, "replaceable": false, @@ -62838,7 +60431,7 @@ ] }, { - "id": 6341, + "id": 6089, "luminance": 0, "opaque": false, "replaceable": false, @@ -62849,9 +60442,9 @@ ] }, { - "id": 290, - "name": "dark_oak_trapdoor", - "translation_key": "block.minecraft.dark_oak_trapdoor", + "id": 287, + "name": "birch_trapdoor", + "translation_key": "block.minecraft.birch_trapdoor", "item_id": 703, "properties": [ { @@ -62892,10 +60485,10 @@ ] } ], - "default_state_id": 6357, + "default_state_id": 6105, "states": [ { - "id": 6342, + "id": 6090, "luminance": 0, "opaque": false, "replaceable": false, @@ -62904,7 +60497,7 @@ ] }, { - "id": 6343, + "id": 6091, "luminance": 0, "opaque": false, "replaceable": false, @@ -62913,7 +60506,7 @@ ] }, { - "id": 6344, + "id": 6092, "luminance": 0, "opaque": false, "replaceable": false, @@ -62922,7 +60515,7 @@ ] }, { - "id": 6345, + "id": 6093, "luminance": 0, "opaque": false, "replaceable": false, @@ -62931,7 +60524,7 @@ ] }, { - "id": 6346, + "id": 6094, "luminance": 0, "opaque": false, "replaceable": false, @@ -62940,7 +60533,7 @@ ] }, { - "id": 6347, + "id": 6095, "luminance": 0, "opaque": false, "replaceable": false, @@ -62949,7 +60542,7 @@ ] }, { - "id": 6348, + "id": 6096, "luminance": 0, "opaque": false, "replaceable": false, @@ -62958,7 +60551,7 @@ ] }, { - "id": 6349, + "id": 6097, "luminance": 0, "opaque": false, "replaceable": false, @@ -62967,7 +60560,7 @@ ] }, { - "id": 6350, + "id": 6098, "luminance": 0, "opaque": false, "replaceable": false, @@ -62976,7 +60569,7 @@ ] }, { - "id": 6351, + "id": 6099, "luminance": 0, "opaque": false, "replaceable": false, @@ -62985,7 +60578,7 @@ ] }, { - "id": 6352, + "id": 6100, "luminance": 0, "opaque": false, "replaceable": false, @@ -62994,7 +60587,7 @@ ] }, { - "id": 6353, + "id": 6101, "luminance": 0, "opaque": false, "replaceable": false, @@ -63003,7 +60596,7 @@ ] }, { - "id": 6354, + "id": 6102, "luminance": 0, "opaque": false, "replaceable": false, @@ -63012,7 +60605,7 @@ ] }, { - "id": 6355, + "id": 6103, "luminance": 0, "opaque": false, "replaceable": false, @@ -63021,7 +60614,7 @@ ] }, { - "id": 6356, + "id": 6104, "luminance": 0, "opaque": false, "replaceable": false, @@ -63030,7 +60623,7 @@ ] }, { - "id": 6357, + "id": 6105, "luminance": 0, "opaque": false, "replaceable": false, @@ -63039,7 +60632,7 @@ ] }, { - "id": 6358, + "id": 6106, "luminance": 0, "opaque": false, "replaceable": false, @@ -63048,7 +60641,7 @@ ] }, { - "id": 6359, + "id": 6107, "luminance": 0, "opaque": false, "replaceable": false, @@ -63057,7 +60650,7 @@ ] }, { - "id": 6360, + "id": 6108, "luminance": 0, "opaque": false, "replaceable": false, @@ -63066,7 +60659,7 @@ ] }, { - "id": 6361, + "id": 6109, "luminance": 0, "opaque": false, "replaceable": false, @@ -63075,7 +60668,7 @@ ] }, { - "id": 6362, + "id": 6110, "luminance": 0, "opaque": false, "replaceable": false, @@ -63084,7 +60677,7 @@ ] }, { - "id": 6363, + "id": 6111, "luminance": 0, "opaque": false, "replaceable": false, @@ -63093,7 +60686,7 @@ ] }, { - "id": 6364, + "id": 6112, "luminance": 0, "opaque": false, "replaceable": false, @@ -63102,7 +60695,7 @@ ] }, { - "id": 6365, + "id": 6113, "luminance": 0, "opaque": false, "replaceable": false, @@ -63111,7 +60704,7 @@ ] }, { - "id": 6366, + "id": 6114, "luminance": 0, "opaque": false, "replaceable": false, @@ -63120,7 +60713,7 @@ ] }, { - "id": 6367, + "id": 6115, "luminance": 0, "opaque": false, "replaceable": false, @@ -63129,7 +60722,7 @@ ] }, { - "id": 6368, + "id": 6116, "luminance": 0, "opaque": false, "replaceable": false, @@ -63138,7 +60731,7 @@ ] }, { - "id": 6369, + "id": 6117, "luminance": 0, "opaque": false, "replaceable": false, @@ -63147,7 +60740,7 @@ ] }, { - "id": 6370, + "id": 6118, "luminance": 0, "opaque": false, "replaceable": false, @@ -63156,7 +60749,7 @@ ] }, { - "id": 6371, + "id": 6119, "luminance": 0, "opaque": false, "replaceable": false, @@ -63165,7 +60758,7 @@ ] }, { - "id": 6372, + "id": 6120, "luminance": 0, "opaque": false, "replaceable": false, @@ -63174,7 +60767,7 @@ ] }, { - "id": 6373, + "id": 6121, "luminance": 0, "opaque": false, "replaceable": false, @@ -63183,7 +60776,7 @@ ] }, { - "id": 6374, + "id": 6122, "luminance": 0, "opaque": false, "replaceable": false, @@ -63192,7 +60785,7 @@ ] }, { - "id": 6375, + "id": 6123, "luminance": 0, "opaque": false, "replaceable": false, @@ -63201,7 +60794,7 @@ ] }, { - "id": 6376, + "id": 6124, "luminance": 0, "opaque": false, "replaceable": false, @@ -63210,7 +60803,7 @@ ] }, { - "id": 6377, + "id": 6125, "luminance": 0, "opaque": false, "replaceable": false, @@ -63219,7 +60812,7 @@ ] }, { - "id": 6378, + "id": 6126, "luminance": 0, "opaque": false, "replaceable": false, @@ -63228,7 +60821,7 @@ ] }, { - "id": 6379, + "id": 6127, "luminance": 0, "opaque": false, "replaceable": false, @@ -63237,7 +60830,7 @@ ] }, { - "id": 6380, + "id": 6128, "luminance": 0, "opaque": false, "replaceable": false, @@ -63246,7 +60839,7 @@ ] }, { - "id": 6381, + "id": 6129, "luminance": 0, "opaque": false, "replaceable": false, @@ -63255,7 +60848,7 @@ ] }, { - "id": 6382, + "id": 6130, "luminance": 0, "opaque": false, "replaceable": false, @@ -63264,7 +60857,7 @@ ] }, { - "id": 6383, + "id": 6131, "luminance": 0, "opaque": false, "replaceable": false, @@ -63273,7 +60866,7 @@ ] }, { - "id": 6384, + "id": 6132, "luminance": 0, "opaque": false, "replaceable": false, @@ -63282,7 +60875,7 @@ ] }, { - "id": 6385, + "id": 6133, "luminance": 0, "opaque": false, "replaceable": false, @@ -63291,7 +60884,7 @@ ] }, { - "id": 6386, + "id": 6134, "luminance": 0, "opaque": false, "replaceable": false, @@ -63300,7 +60893,7 @@ ] }, { - "id": 6387, + "id": 6135, "luminance": 0, "opaque": false, "replaceable": false, @@ -63309,7 +60902,7 @@ ] }, { - "id": 6388, + "id": 6136, "luminance": 0, "opaque": false, "replaceable": false, @@ -63318,7 +60911,7 @@ ] }, { - "id": 6389, + "id": 6137, "luminance": 0, "opaque": false, "replaceable": false, @@ -63327,7 +60920,7 @@ ] }, { - "id": 6390, + "id": 6138, "luminance": 0, "opaque": false, "replaceable": false, @@ -63336,7 +60929,7 @@ ] }, { - "id": 6391, + "id": 6139, "luminance": 0, "opaque": false, "replaceable": false, @@ -63345,7 +60938,7 @@ ] }, { - "id": 6392, + "id": 6140, "luminance": 0, "opaque": false, "replaceable": false, @@ -63354,7 +60947,7 @@ ] }, { - "id": 6393, + "id": 6141, "luminance": 0, "opaque": false, "replaceable": false, @@ -63363,7 +60956,7 @@ ] }, { - "id": 6394, + "id": 6142, "luminance": 0, "opaque": false, "replaceable": false, @@ -63372,7 +60965,7 @@ ] }, { - "id": 6395, + "id": 6143, "luminance": 0, "opaque": false, "replaceable": false, @@ -63381,7 +60974,7 @@ ] }, { - "id": 6396, + "id": 6144, "luminance": 0, "opaque": false, "replaceable": false, @@ -63390,7 +60983,7 @@ ] }, { - "id": 6397, + "id": 6145, "luminance": 0, "opaque": false, "replaceable": false, @@ -63399,7 +60992,7 @@ ] }, { - "id": 6398, + "id": 6146, "luminance": 0, "opaque": false, "replaceable": false, @@ -63408,7 +61001,7 @@ ] }, { - "id": 6399, + "id": 6147, "luminance": 0, "opaque": false, "replaceable": false, @@ -63417,7 +61010,7 @@ ] }, { - "id": 6400, + "id": 6148, "luminance": 0, "opaque": false, "replaceable": false, @@ -63426,7 +61019,7 @@ ] }, { - "id": 6401, + "id": 6149, "luminance": 0, "opaque": false, "replaceable": false, @@ -63435,7 +61028,7 @@ ] }, { - "id": 6402, + "id": 6150, "luminance": 0, "opaque": false, "replaceable": false, @@ -63444,7 +61037,7 @@ ] }, { - "id": 6403, + "id": 6151, "luminance": 0, "opaque": false, "replaceable": false, @@ -63453,7 +61046,7 @@ ] }, { - "id": 6404, + "id": 6152, "luminance": 0, "opaque": false, "replaceable": false, @@ -63462,7 +61055,7 @@ ] }, { - "id": 6405, + "id": 6153, "luminance": 0, "opaque": false, "replaceable": false, @@ -63473,9 +61066,9 @@ ] }, { - "id": 291, - "name": "mangrove_trapdoor", - "translation_key": "block.minecraft.mangrove_trapdoor", + "id": 288, + "name": "jungle_trapdoor", + "translation_key": "block.minecraft.jungle_trapdoor", "item_id": 704, "properties": [ { @@ -63516,10 +61109,10 @@ ] } ], - "default_state_id": 6421, + "default_state_id": 6169, "states": [ { - "id": 6406, + "id": 6154, "luminance": 0, "opaque": false, "replaceable": false, @@ -63528,7 +61121,7 @@ ] }, { - "id": 6407, + "id": 6155, "luminance": 0, "opaque": false, "replaceable": false, @@ -63537,7 +61130,7 @@ ] }, { - "id": 6408, + "id": 6156, "luminance": 0, "opaque": false, "replaceable": false, @@ -63546,7 +61139,7 @@ ] }, { - "id": 6409, + "id": 6157, "luminance": 0, "opaque": false, "replaceable": false, @@ -63555,7 +61148,7 @@ ] }, { - "id": 6410, + "id": 6158, "luminance": 0, "opaque": false, "replaceable": false, @@ -63564,7 +61157,7 @@ ] }, { - "id": 6411, + "id": 6159, "luminance": 0, "opaque": false, "replaceable": false, @@ -63573,7 +61166,7 @@ ] }, { - "id": 6412, + "id": 6160, "luminance": 0, "opaque": false, "replaceable": false, @@ -63582,7 +61175,7 @@ ] }, { - "id": 6413, + "id": 6161, "luminance": 0, "opaque": false, "replaceable": false, @@ -63591,7 +61184,7 @@ ] }, { - "id": 6414, + "id": 6162, "luminance": 0, "opaque": false, "replaceable": false, @@ -63600,7 +61193,7 @@ ] }, { - "id": 6415, + "id": 6163, "luminance": 0, "opaque": false, "replaceable": false, @@ -63609,7 +61202,7 @@ ] }, { - "id": 6416, + "id": 6164, "luminance": 0, "opaque": false, "replaceable": false, @@ -63618,7 +61211,7 @@ ] }, { - "id": 6417, + "id": 6165, "luminance": 0, "opaque": false, "replaceable": false, @@ -63627,7 +61220,7 @@ ] }, { - "id": 6418, + "id": 6166, "luminance": 0, "opaque": false, "replaceable": false, @@ -63636,7 +61229,7 @@ ] }, { - "id": 6419, + "id": 6167, "luminance": 0, "opaque": false, "replaceable": false, @@ -63645,7 +61238,7 @@ ] }, { - "id": 6420, + "id": 6168, "luminance": 0, "opaque": false, "replaceable": false, @@ -63654,7 +61247,7 @@ ] }, { - "id": 6421, + "id": 6169, "luminance": 0, "opaque": false, "replaceable": false, @@ -63663,7 +61256,7 @@ ] }, { - "id": 6422, + "id": 6170, "luminance": 0, "opaque": false, "replaceable": false, @@ -63672,7 +61265,7 @@ ] }, { - "id": 6423, + "id": 6171, "luminance": 0, "opaque": false, "replaceable": false, @@ -63681,7 +61274,7 @@ ] }, { - "id": 6424, + "id": 6172, "luminance": 0, "opaque": false, "replaceable": false, @@ -63690,7 +61283,7 @@ ] }, { - "id": 6425, + "id": 6173, "luminance": 0, "opaque": false, "replaceable": false, @@ -63699,7 +61292,7 @@ ] }, { - "id": 6426, + "id": 6174, "luminance": 0, "opaque": false, "replaceable": false, @@ -63708,7 +61301,7 @@ ] }, { - "id": 6427, + "id": 6175, "luminance": 0, "opaque": false, "replaceable": false, @@ -63717,7 +61310,7 @@ ] }, { - "id": 6428, + "id": 6176, "luminance": 0, "opaque": false, "replaceable": false, @@ -63726,7 +61319,7 @@ ] }, { - "id": 6429, + "id": 6177, "luminance": 0, "opaque": false, "replaceable": false, @@ -63735,7 +61328,7 @@ ] }, { - "id": 6430, + "id": 6178, "luminance": 0, "opaque": false, "replaceable": false, @@ -63744,7 +61337,7 @@ ] }, { - "id": 6431, + "id": 6179, "luminance": 0, "opaque": false, "replaceable": false, @@ -63753,7 +61346,7 @@ ] }, { - "id": 6432, + "id": 6180, "luminance": 0, "opaque": false, "replaceable": false, @@ -63762,7 +61355,7 @@ ] }, { - "id": 6433, + "id": 6181, "luminance": 0, "opaque": false, "replaceable": false, @@ -63771,7 +61364,7 @@ ] }, { - "id": 6434, + "id": 6182, "luminance": 0, "opaque": false, "replaceable": false, @@ -63780,7 +61373,7 @@ ] }, { - "id": 6435, + "id": 6183, "luminance": 0, "opaque": false, "replaceable": false, @@ -63789,7 +61382,7 @@ ] }, { - "id": 6436, + "id": 6184, "luminance": 0, "opaque": false, "replaceable": false, @@ -63798,7 +61391,7 @@ ] }, { - "id": 6437, + "id": 6185, "luminance": 0, "opaque": false, "replaceable": false, @@ -63807,7 +61400,7 @@ ] }, { - "id": 6438, + "id": 6186, "luminance": 0, "opaque": false, "replaceable": false, @@ -63816,7 +61409,7 @@ ] }, { - "id": 6439, + "id": 6187, "luminance": 0, "opaque": false, "replaceable": false, @@ -63825,7 +61418,7 @@ ] }, { - "id": 6440, + "id": 6188, "luminance": 0, "opaque": false, "replaceable": false, @@ -63834,7 +61427,7 @@ ] }, { - "id": 6441, + "id": 6189, "luminance": 0, "opaque": false, "replaceable": false, @@ -63843,7 +61436,7 @@ ] }, { - "id": 6442, + "id": 6190, "luminance": 0, "opaque": false, "replaceable": false, @@ -63852,7 +61445,7 @@ ] }, { - "id": 6443, + "id": 6191, "luminance": 0, "opaque": false, "replaceable": false, @@ -63861,7 +61454,7 @@ ] }, { - "id": 6444, + "id": 6192, "luminance": 0, "opaque": false, "replaceable": false, @@ -63870,7 +61463,7 @@ ] }, { - "id": 6445, + "id": 6193, "luminance": 0, "opaque": false, "replaceable": false, @@ -63879,7 +61472,7 @@ ] }, { - "id": 6446, + "id": 6194, "luminance": 0, "opaque": false, "replaceable": false, @@ -63888,7 +61481,7 @@ ] }, { - "id": 6447, + "id": 6195, "luminance": 0, "opaque": false, "replaceable": false, @@ -63897,7 +61490,7 @@ ] }, { - "id": 6448, + "id": 6196, "luminance": 0, "opaque": false, "replaceable": false, @@ -63906,7 +61499,7 @@ ] }, { - "id": 6449, + "id": 6197, "luminance": 0, "opaque": false, "replaceable": false, @@ -63915,7 +61508,7 @@ ] }, { - "id": 6450, + "id": 6198, "luminance": 0, "opaque": false, "replaceable": false, @@ -63924,7 +61517,7 @@ ] }, { - "id": 6451, + "id": 6199, "luminance": 0, "opaque": false, "replaceable": false, @@ -63933,7 +61526,7 @@ ] }, { - "id": 6452, + "id": 6200, "luminance": 0, "opaque": false, "replaceable": false, @@ -63942,7 +61535,7 @@ ] }, { - "id": 6453, + "id": 6201, "luminance": 0, "opaque": false, "replaceable": false, @@ -63951,7 +61544,7 @@ ] }, { - "id": 6454, + "id": 6202, "luminance": 0, "opaque": false, "replaceable": false, @@ -63960,7 +61553,7 @@ ] }, { - "id": 6455, + "id": 6203, "luminance": 0, "opaque": false, "replaceable": false, @@ -63969,7 +61562,7 @@ ] }, { - "id": 6456, + "id": 6204, "luminance": 0, "opaque": false, "replaceable": false, @@ -63978,7 +61571,7 @@ ] }, { - "id": 6457, + "id": 6205, "luminance": 0, "opaque": false, "replaceable": false, @@ -63987,7 +61580,7 @@ ] }, { - "id": 6458, + "id": 6206, "luminance": 0, "opaque": false, "replaceable": false, @@ -63996,7 +61589,7 @@ ] }, { - "id": 6459, + "id": 6207, "luminance": 0, "opaque": false, "replaceable": false, @@ -64005,7 +61598,7 @@ ] }, { - "id": 6460, + "id": 6208, "luminance": 0, "opaque": false, "replaceable": false, @@ -64014,7 +61607,7 @@ ] }, { - "id": 6461, + "id": 6209, "luminance": 0, "opaque": false, "replaceable": false, @@ -64023,7 +61616,7 @@ ] }, { - "id": 6462, + "id": 6210, "luminance": 0, "opaque": false, "replaceable": false, @@ -64032,7 +61625,7 @@ ] }, { - "id": 6463, + "id": 6211, "luminance": 0, "opaque": false, "replaceable": false, @@ -64041,7 +61634,7 @@ ] }, { - "id": 6464, + "id": 6212, "luminance": 0, "opaque": false, "replaceable": false, @@ -64050,7 +61643,7 @@ ] }, { - "id": 6465, + "id": 6213, "luminance": 0, "opaque": false, "replaceable": false, @@ -64059,7 +61652,7 @@ ] }, { - "id": 6466, + "id": 6214, "luminance": 0, "opaque": false, "replaceable": false, @@ -64068,7 +61661,7 @@ ] }, { - "id": 6467, + "id": 6215, "luminance": 0, "opaque": false, "replaceable": false, @@ -64077,7 +61670,7 @@ ] }, { - "id": 6468, + "id": 6216, "luminance": 0, "opaque": false, "replaceable": false, @@ -64086,7 +61679,7 @@ ] }, { - "id": 6469, + "id": 6217, "luminance": 0, "opaque": false, "replaceable": false, @@ -64097,9 +61690,9 @@ ] }, { - "id": 292, - "name": "bamboo_trapdoor", - "translation_key": "block.minecraft.bamboo_trapdoor", + "id": 289, + "name": "acacia_trapdoor", + "translation_key": "block.minecraft.acacia_trapdoor", "item_id": 705, "properties": [ { @@ -64140,15 +61733,2427 @@ ] } ], - "default_state_id": 6485, + "default_state_id": 6233, "states": [ + { + "id": 6218, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6219, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6220, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6221, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6222, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6223, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6224, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6225, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6226, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6227, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6228, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6229, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6230, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6231, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6232, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6233, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6234, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6235, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6236, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6237, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6238, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6239, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6240, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6241, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6242, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6243, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6244, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6245, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6246, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6247, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6248, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6249, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6250, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6251, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6252, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6253, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6254, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6255, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6256, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6257, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6258, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6259, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6260, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6261, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6262, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6263, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6264, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6265, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6266, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6267, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6268, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6269, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6270, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6271, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6272, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6273, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6274, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6275, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6276, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6277, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6278, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6279, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6280, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6281, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + } + ] + }, + { + "id": 290, + "name": "cherry_trapdoor", + "translation_key": "block.minecraft.cherry_trapdoor", + "item_id": 706, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 6297, + "states": [ + { + "id": 6282, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6283, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6284, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6285, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6286, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6287, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6288, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6289, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6290, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6291, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6292, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6293, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6294, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6295, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6296, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6297, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6298, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6299, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6300, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6301, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6302, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6303, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6304, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6305, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6306, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6307, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6308, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6309, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6310, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6311, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6312, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6313, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6314, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6315, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6316, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6317, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6318, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6319, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6320, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6321, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6322, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6323, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6324, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6325, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6326, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6327, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6328, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6329, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6330, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6331, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6332, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6333, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6334, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6335, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6336, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6337, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6338, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6339, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6340, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6341, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6342, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6343, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6344, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6345, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + } + ] + }, + { + "id": 291, + "name": "dark_oak_trapdoor", + "translation_key": "block.minecraft.dark_oak_trapdoor", + "item_id": 707, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 6361, + "states": [ + { + "id": 6346, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6347, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6348, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6349, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6350, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6351, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6352, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6353, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6354, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6355, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6356, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6357, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6358, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6359, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6360, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6361, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6362, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6363, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6364, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6365, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6366, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6367, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6368, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6369, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6370, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6371, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6372, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6373, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6374, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6375, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6376, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6377, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6378, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6379, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6380, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6381, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6382, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6383, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6384, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6385, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6386, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6387, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6388, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6389, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6390, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6391, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6392, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6393, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6394, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6395, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6396, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6397, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6398, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6399, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6400, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6401, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6402, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6403, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6404, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6405, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6406, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6407, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6408, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6409, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + } + ] + }, + { + "id": 292, + "name": "mangrove_trapdoor", + "translation_key": "block.minecraft.mangrove_trapdoor", + "item_id": 708, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 6425, + "states": [ + { + "id": 6410, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6411, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6412, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6413, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6414, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6415, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6416, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6417, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6418, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6419, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6420, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6421, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6422, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6423, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6424, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6425, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6426, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6427, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6428, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6429, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6430, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6431, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6432, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6433, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6434, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6435, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6436, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6437, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6438, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6439, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6440, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6441, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6442, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6443, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6444, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6445, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6446, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6447, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6448, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6449, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6450, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6451, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6452, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6453, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6454, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6455, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6456, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6457, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6458, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6459, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6460, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6461, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6462, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6463, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6464, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6465, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6466, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6467, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6468, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6469, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, { "id": 6470, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 93 ] }, { @@ -64157,7 +64162,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 93 ] }, { @@ -64166,7 +64171,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 93 ] }, { @@ -64174,546 +64179,6 @@ "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6474, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6475, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6476, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6477, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6478, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6479, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6480, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6481, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 6482, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6483, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6484, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6485, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6486, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6487, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6488, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6489, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6490, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6491, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6492, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6493, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6494, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6495, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6496, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6497, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 6498, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6499, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6500, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6501, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6502, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6503, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6504, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6505, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6506, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6507, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6508, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6509, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6510, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6511, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6512, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6513, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 6514, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6515, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6516, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6517, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6518, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6519, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6520, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6521, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6522, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6523, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6524, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6525, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 6526, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6527, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6528, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6529, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 6530, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6531, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6532, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 6533, - "luminance": 0, - "opaque": false, - "replaceable": false, "collision_shapes": [ 93 ] @@ -64722,86 +64187,634 @@ }, { "id": 293, - "name": "stone_bricks", - "translation_key": "block.minecraft.stone_bricks", - "item_id": 316, - "properties": [], - "default_state_id": 6534, + "name": "bamboo_trapdoor", + "translation_key": "block.minecraft.bamboo_trapdoor", + "item_id": 709, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 6489, "states": [ + { + "id": 6474, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6475, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6476, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6477, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6478, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6479, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6480, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6481, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6482, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6483, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6484, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6485, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 6486, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6487, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6488, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6489, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6490, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6491, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6492, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6493, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6494, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6495, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6496, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6497, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6498, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6499, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6500, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6501, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 6502, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6503, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6504, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6505, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6506, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6507, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6508, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6509, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6510, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6511, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6512, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6513, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6514, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6515, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6516, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6517, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 6518, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6519, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6520, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6521, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6522, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6523, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6524, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6525, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6526, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6527, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6528, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6529, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 6530, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6531, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6532, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 6533, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, { "id": 6534, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ - 0 + 93 + ] + }, + { + "id": 6535, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6536, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 6537, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 ] } ] }, { "id": 294, - "name": "mossy_stone_bricks", - "translation_key": "block.minecraft.mossy_stone_bricks", - "item_id": 317, - "properties": [], - "default_state_id": 6535, - "states": [ - { - "id": 6535, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 295, - "name": "cracked_stone_bricks", - "translation_key": "block.minecraft.cracked_stone_bricks", + "name": "stone_bricks", + "translation_key": "block.minecraft.stone_bricks", "item_id": 318, "properties": [], - "default_state_id": 6536, - "states": [ - { - "id": 6536, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 296, - "name": "chiseled_stone_bricks", - "translation_key": "block.minecraft.chiseled_stone_bricks", - "item_id": 319, - "properties": [], - "default_state_id": 6537, - "states": [ - { - "id": 6537, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 297, - "name": "packed_mud", - "translation_key": "block.minecraft.packed_mud", - "item_id": 320, - "properties": [], "default_state_id": 6538, "states": [ { @@ -64816,10 +64829,10 @@ ] }, { - "id": 298, - "name": "mud_bricks", - "translation_key": "block.minecraft.mud_bricks", - "item_id": 321, + "id": 295, + "name": "mossy_stone_bricks", + "translation_key": "block.minecraft.mossy_stone_bricks", + "item_id": 319, "properties": [], "default_state_id": 6539, "states": [ @@ -64835,10 +64848,10 @@ ] }, { - "id": 299, - "name": "infested_stone", - "translation_key": "block.minecraft.infested_stone", - "item_id": 309, + "id": 296, + "name": "cracked_stone_bricks", + "translation_key": "block.minecraft.cracked_stone_bricks", + "item_id": 320, "properties": [], "default_state_id": 6540, "states": [ @@ -64854,10 +64867,10 @@ ] }, { - "id": 300, - "name": "infested_cobblestone", - "translation_key": "block.minecraft.infested_cobblestone", - "item_id": 310, + "id": 297, + "name": "chiseled_stone_bricks", + "translation_key": "block.minecraft.chiseled_stone_bricks", + "item_id": 321, "properties": [], "default_state_id": 6541, "states": [ @@ -64873,10 +64886,10 @@ ] }, { - "id": 301, - "name": "infested_stone_bricks", - "translation_key": "block.minecraft.infested_stone_bricks", - "item_id": 311, + "id": 298, + "name": "packed_mud", + "translation_key": "block.minecraft.packed_mud", + "item_id": 322, "properties": [], "default_state_id": 6542, "states": [ @@ -64892,10 +64905,10 @@ ] }, { - "id": 302, - "name": "infested_mossy_stone_bricks", - "translation_key": "block.minecraft.infested_mossy_stone_bricks", - "item_id": 312, + "id": 299, + "name": "mud_bricks", + "translation_key": "block.minecraft.mud_bricks", + "item_id": 323, "properties": [], "default_state_id": 6543, "states": [ @@ -64911,10 +64924,10 @@ ] }, { - "id": 303, - "name": "infested_cracked_stone_bricks", - "translation_key": "block.minecraft.infested_cracked_stone_bricks", - "item_id": 313, + "id": 300, + "name": "infested_stone", + "translation_key": "block.minecraft.infested_stone", + "item_id": 311, "properties": [], "default_state_id": 6544, "states": [ @@ -64930,10 +64943,10 @@ ] }, { - "id": 304, - "name": "infested_chiseled_stone_bricks", - "translation_key": "block.minecraft.infested_chiseled_stone_bricks", - "item_id": 314, + "id": 301, + "name": "infested_cobblestone", + "translation_key": "block.minecraft.infested_cobblestone", + "item_id": 312, "properties": [], "default_state_id": 6545, "states": [ @@ -64948,11 +64961,87 @@ } ] }, + { + "id": 302, + "name": "infested_stone_bricks", + "translation_key": "block.minecraft.infested_stone_bricks", + "item_id": 313, + "properties": [], + "default_state_id": 6546, + "states": [ + { + "id": 6546, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 303, + "name": "infested_mossy_stone_bricks", + "translation_key": "block.minecraft.infested_mossy_stone_bricks", + "item_id": 314, + "properties": [], + "default_state_id": 6547, + "states": [ + { + "id": 6547, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 304, + "name": "infested_cracked_stone_bricks", + "translation_key": "block.minecraft.infested_cracked_stone_bricks", + "item_id": 315, + "properties": [], + "default_state_id": 6548, + "states": [ + { + "id": 6548, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, { "id": 305, + "name": "infested_chiseled_stone_bricks", + "translation_key": "block.minecraft.infested_chiseled_stone_bricks", + "item_id": 316, + "properties": [], + "default_state_id": 6549, + "states": [ + { + "id": 6549, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 306, "name": "brown_mushroom_block", "translation_key": "block.minecraft.brown_mushroom_block", - "item_id": 328, + "item_id": 330, "properties": [ { "name": "down", @@ -64997,44 +65086,8 @@ ] } ], - "default_state_id": 6546, + "default_state_id": 6550, "states": [ - { - "id": 6546, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 6547, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 6548, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 6549, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 6550, "luminance": 0, @@ -65574,14 +65627,50 @@ "collision_shapes": [ 0 ] + }, + { + "id": 6610, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6611, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6612, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6613, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { - "id": 306, + "id": 307, "name": "red_mushroom_block", "translation_key": "block.minecraft.red_mushroom_block", - "item_id": 329, + "item_id": 331, "properties": [ { "name": "down", @@ -65626,44 +65715,8 @@ ] } ], - "default_state_id": 6610, + "default_state_id": 6614, "states": [ - { - "id": 6610, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 6611, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 6612, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 6613, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 6614, "luminance": 0, @@ -66203,14 +66256,50 @@ "collision_shapes": [ 0 ] + }, + { + "id": 6674, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6675, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6676, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 6677, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { - "id": 307, + "id": 308, "name": "mushroom_stem", "translation_key": "block.minecraft.mushroom_stem", - "item_id": 330, + "item_id": 332, "properties": [ { "name": "down", @@ -66255,44 +66344,8 @@ ] } ], - "default_state_id": 6674, + "default_state_id": 6678, "states": [ - { - "id": 6674, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 6675, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 6676, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 6677, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 6678, "luminance": 0, @@ -66832,449 +66885,49 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 308, - "name": "iron_bars", - "translation_key": "block.minecraft.iron_bars", - "item_id": 331, - "properties": [ - { - "name": "east", - "values": [ - "true", - "false" - ] }, - { - "name": "north", - "values": [ - "true", - "false" - ] - }, - { - "name": "south", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - }, - { - "name": "west", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 6769, - "states": [ { "id": 6738, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 94, - 95, - 96 + 0 ] }, { "id": 6739, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 97, - 98 + 0 ] }, { "id": 6740, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 94, - 95, - 96 + 0 ] }, { "id": 6741, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 97, - 98 - ] - }, - { - "id": 6742, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 95 - ] - }, - { - "id": 6743, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 99, - 98 - ] - }, - { - "id": 6744, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 95 - ] - }, - { - "id": 6745, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 99, - 98 - ] - }, - { - "id": 6746, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 96 - ] - }, - { - "id": 6747, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 100, - 98 - ] - }, - { - "id": 6748, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 96 - ] - }, - { - "id": 6749, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 100, - 98 - ] - }, - { - "id": 6750, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94 - ] - }, - { - "id": 6751, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 101 - ] - }, - { - "id": 6752, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94 - ] - }, - { - "id": 6753, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 101 - ] - }, - { - "id": 6754, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 95, - 96 - ] - }, - { - "id": 6755, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 97 - ] - }, - { - "id": 6756, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 95, - 96 - ] - }, - { - "id": 6757, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 97 - ] - }, - { - "id": 6758, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 95 - ] - }, - { - "id": 6759, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 99 - ] - }, - { - "id": 6760, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 95 - ] - }, - { - "id": 6761, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 99 - ] - }, - { - "id": 6762, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 96 - ] - }, - { - "id": 6763, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 100 - ] - }, - { - "id": 6764, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 96 - ] - }, - { - "id": 6765, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 100 - ] - }, - { - "id": 6766, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102 - ] - }, - { - "id": 6767, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 103 - ] - }, - { - "id": 6768, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102 - ] - }, - { - "id": 6769, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 103 + 0 ] } ] }, { "id": 309, - "name": "chain", - "translation_key": "block.minecraft.chain", - "item_id": 332, - "properties": [ - { - "name": "axis", - "values": [ - "x", - "y", - "z" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 6773, - "states": [ - { - "id": 6770, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 104 - ] - }, - { - "id": 6771, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 104 - ] - }, - { - "id": 6772, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 105 - ] - }, - { - "id": 6773, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 105 - ] - }, - { - "id": 6774, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 106 - ] - }, - { - "id": 6775, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 106 - ] - } - ] - }, - { - "id": 310, - "name": "glass_pane", - "translation_key": "block.minecraft.glass_pane", + "name": "iron_bars", + "translation_key": "block.minecraft.iron_bars", "item_id": 333, "properties": [ { @@ -67313,10 +66966,10 @@ ] } ], - "default_state_id": 6807, + "default_state_id": 6773, "states": [ { - "id": 6776, + "id": 6742, "luminance": 0, "opaque": false, "replaceable": false, @@ -67327,7 +66980,7 @@ ] }, { - "id": 6777, + "id": 6743, "luminance": 0, "opaque": false, "replaceable": false, @@ -67337,7 +66990,7 @@ ] }, { - "id": 6778, + "id": 6744, "luminance": 0, "opaque": false, "replaceable": false, @@ -67348,7 +67001,7 @@ ] }, { - "id": 6779, + "id": 6745, "luminance": 0, "opaque": false, "replaceable": false, @@ -67358,7 +67011,7 @@ ] }, { - "id": 6780, + "id": 6746, "luminance": 0, "opaque": false, "replaceable": false, @@ -67368,7 +67021,7 @@ ] }, { - "id": 6781, + "id": 6747, "luminance": 0, "opaque": false, "replaceable": false, @@ -67377,6 +67030,401 @@ 98 ] }, + { + "id": 6748, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 95 + ] + }, + { + "id": 6749, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 99, + 98 + ] + }, + { + "id": 6750, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 96 + ] + }, + { + "id": 6751, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 100, + 98 + ] + }, + { + "id": 6752, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 96 + ] + }, + { + "id": 6753, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 100, + 98 + ] + }, + { + "id": 6754, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94 + ] + }, + { + "id": 6755, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 6756, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94 + ] + }, + { + "id": 6757, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 6758, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 95, + 96 + ] + }, + { + "id": 6759, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 6760, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 95, + 96 + ] + }, + { + "id": 6761, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 6762, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 95 + ] + }, + { + "id": 6763, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 6764, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 95 + ] + }, + { + "id": 6765, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 6766, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 96 + ] + }, + { + "id": 6767, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 6768, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 96 + ] + }, + { + "id": 6769, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 6770, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102 + ] + }, + { + "id": 6771, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 103 + ] + }, + { + "id": 6772, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102 + ] + }, + { + "id": 6773, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 103 + ] + } + ] + }, + { + "id": 310, + "name": "chain", + "translation_key": "block.minecraft.chain", + "item_id": 334, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 6777, + "states": [ + { + "id": 6774, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 104 + ] + }, + { + "id": 6775, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 104 + ] + }, + { + "id": 6776, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 105 + ] + }, + { + "id": 6777, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 105 + ] + }, + { + "id": 6778, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 106 + ] + }, + { + "id": 6779, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 106 + ] + } + ] + }, + { + "id": 311, + "name": "glass_pane", + "translation_key": "block.minecraft.glass_pane", + "item_id": 335, + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 6811, + "states": [ + { + "id": 6780, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 95, + 96 + ] + }, + { + "id": 6781, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 97, + 98 + ] + }, { "id": 6782, "luminance": 0, @@ -67384,7 +67432,8 @@ "replaceable": false, "collision_shapes": [ 94, - 95 + 95, + 96 ] }, { @@ -67393,7 +67442,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 99, + 97, 98 ] }, @@ -67404,7 +67453,7 @@ "replaceable": false, "collision_shapes": [ 94, - 96 + 95 ] }, { @@ -67413,7 +67462,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 100, + 99, 98 ] }, @@ -67424,7 +67473,7 @@ "replaceable": false, "collision_shapes": [ 94, - 96 + 95 ] }, { @@ -67433,7 +67482,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 100, + 99, 98 ] }, @@ -67443,7 +67492,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 94 + 94, + 96 ] }, { @@ -67452,7 +67502,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 101 + 100, + 98 ] }, { @@ -67461,7 +67512,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 94 + 94, + 96 ] }, { @@ -67470,7 +67522,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 101 + 100, + 98 ] }, { @@ -67479,9 +67532,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 102, - 95, - 96 + 94 ] }, { @@ -67490,7 +67541,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 97 + 101 ] }, { @@ -67499,9 +67550,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 102, - 95, - 96 + 94 ] }, { @@ -67510,7 +67559,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 97 + 101 ] }, { @@ -67520,7 +67569,8 @@ "replaceable": false, "collision_shapes": [ 102, - 95 + 95, + 96 ] }, { @@ -67529,7 +67579,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 99 + 97 ] }, { @@ -67539,7 +67589,8 @@ "replaceable": false, "collision_shapes": [ 102, - 95 + 95, + 96 ] }, { @@ -67548,7 +67599,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 99 + 97 ] }, { @@ -67558,7 +67609,7 @@ "replaceable": false, "collision_shapes": [ 102, - 96 + 95 ] }, { @@ -67567,7 +67618,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 100 + 99 ] }, { @@ -67577,7 +67628,7 @@ "replaceable": false, "collision_shapes": [ 102, - 96 + 95 ] }, { @@ -67586,7 +67637,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 100 + 99 ] }, { @@ -67595,7 +67646,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 102 + 102, + 96 ] }, { @@ -67604,7 +67656,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 103 + 100 ] }, { @@ -67613,7 +67665,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 102 + 102, + 96 ] }, { @@ -67621,6 +67674,42 @@ "luminance": 0, "opaque": false, "replaceable": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 6808, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102 + ] + }, + { + "id": 6809, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 103 + ] + }, + { + "id": 6810, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102 + ] + }, + { + "id": 6811, + "luminance": 0, + "opaque": false, + "replaceable": false, "collision_shapes": [ 103 ] @@ -67628,15 +67717,15 @@ ] }, { - "id": 311, + "id": 312, "name": "melon", "translation_key": "block.minecraft.melon", - "item_id": 334, + "item_id": 336, "properties": [], - "default_state_id": 6808, + "default_state_id": 6812, "states": [ { - "id": 6808, + "id": 6812, "luminance": 0, "opaque": true, "replaceable": false, @@ -67647,7 +67736,7 @@ ] }, { - "id": 312, + "id": 313, "name": "attached_pumpkin_stem", "translation_key": "block.minecraft.attached_pumpkin_stem", "item_id": 0, @@ -67662,54 +67751,6 @@ ] } ], - "default_state_id": 6809, - "states": [ - { - "id": 6809, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 6810, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 6811, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 6812, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 313, - "name": "attached_melon_stem", - "translation_key": "block.minecraft.attached_melon_stem", - "item_id": 0, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], "default_state_id": 6813, "states": [ { @@ -67744,21 +67785,17 @@ }, { "id": 314, - "name": "pumpkin_stem", - "translation_key": "block.minecraft.pumpkin_stem", - "item_id": 941, + "name": "attached_melon_stem", + "translation_key": "block.minecraft.attached_melon_stem", + "item_id": 0, "properties": [ { - "name": "age", + "name": "facing", "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" + "north", + "south", + "west", + "east" ] } ], @@ -67791,7 +67828,31 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - }, + } + ] + }, + { + "id": 315, + "name": "pumpkin_stem", + "translation_key": "block.minecraft.pumpkin_stem", + "item_id": 945, + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "default_state_id": 6821, + "states": [ { "id": 6821, "luminance": 0, @@ -67819,31 +67880,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 315, - "name": "melon_stem", - "translation_key": "block.minecraft.melon_stem", - "item_id": 942, - "properties": [ - { - "name": "age", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - } - ], - "default_state_id": 6825, - "states": [ + }, { "id": 6825, "luminance": 0, @@ -67871,7 +67908,31 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - }, + } + ] + }, + { + "id": 316, + "name": "melon_stem", + "translation_key": "block.minecraft.melon_stem", + "item_id": 946, + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "default_state_id": 6829, + "states": [ { "id": 6829, "luminance": 0, @@ -67899,14 +67960,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 6833, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 6834, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 6835, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 6836, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 316, + "id": 317, "name": "vine", "translation_key": "block.minecraft.vine", - "item_id": 335, + "item_id": 337, "properties": [ { "name": "east", @@ -67944,36 +68033,8 @@ ] } ], - "default_state_id": 6864, + "default_state_id": 6868, "states": [ - { - "id": 6833, - "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 6834, - "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 6835, - "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 6836, - "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, { "id": 6837, "luminance": 0, @@ -68169,14 +68230,42 @@ "opaque": false, "replaceable": true, "collision_shapes": [] + }, + { + "id": 6865, + "luminance": 0, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 6866, + "luminance": 0, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 6867, + "luminance": 0, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 6868, + "luminance": 0, + "opaque": false, + "replaceable": true, + "collision_shapes": [] } ] }, { - "id": 317, + "id": 318, "name": "glow_lichen", "translation_key": "block.minecraft.glow_lichen", - "item_id": 336, + "item_id": 338, "properties": [ { "name": "down", @@ -68228,36 +68317,8 @@ ] } ], - "default_state_id": 6992, + "default_state_id": 6996, "states": [ - { - "id": 6865, - "luminance": 7, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 6866, - "luminance": 7, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 6867, - "luminance": 7, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 6868, - "luminance": 7, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, { "id": 6869, "luminance": 7, @@ -69107,7 +69168,7 @@ }, { "id": 6990, - "luminance": 0, + "luminance": 7, "opaque": false, "replaceable": true, "collision_shapes": [] @@ -69121,6 +69182,34 @@ }, { "id": 6992, + "luminance": 7, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 6993, + "luminance": 7, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 6994, + "luminance": 0, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 6995, + "luminance": 7, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 6996, "luminance": 0, "opaque": false, "replaceable": true, @@ -69129,10 +69218,10 @@ ] }, { - "id": 318, + "id": 319, "name": "oak_fence_gate", "translation_key": "block.minecraft.oak_fence_gate", - "item_id": 708, + "item_id": 712, "properties": [ { "name": "facing", @@ -69165,40 +69254,8 @@ ] } ], - "default_state_id": 7000, + "default_state_id": 7004, "states": [ - { - "id": 6993, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 6994, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 6995, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 6996, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, { "id": 6997, "luminance": 0, @@ -69315,7 +69372,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -69324,7 +69381,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -69422,70 +69479,20 @@ "collision_shapes": [ 78 ] - } - ] - }, - { - "id": 319, - "name": "brick_stairs", - "translation_key": "block.minecraft.brick_stairs", - "item_id": 337, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 7036, - "states": [ { "id": 7025, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] + "collision_shapes": [] }, { "id": 7026, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] + "collision_shapes": [] }, { "id": 7027, @@ -69493,9 +69500,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 + 78 ] }, { @@ -69504,1715 +69509,15 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7029, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7030, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7031, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7032, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7033, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7034, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7035, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 7036, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 7037, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7038, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7039, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7040, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7041, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7042, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7043, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7044, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7045, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 7046, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 7047, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7048, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7049, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7050, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7051, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7052, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7053, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7054, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7055, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 7056, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 7057, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7058, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7059, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7060, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7061, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7062, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7063, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7064, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7065, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 7066, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 7067, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7068, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7069, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7070, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7071, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7072, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7073, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7074, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7075, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 7076, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 7077, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7078, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7079, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7080, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7081, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7082, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7083, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7084, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7085, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 7086, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 7087, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7088, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7089, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7090, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7091, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7092, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7093, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7094, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7095, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 7096, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 7097, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7098, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7099, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7100, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7101, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7102, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7103, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7104, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 + 78 ] } ] }, { "id": 320, - "name": "stone_brick_stairs", - "translation_key": "block.minecraft.stone_brick_stairs", - "item_id": 338, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 7116, - "states": [ - { - "id": 7105, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 7106, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 7107, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7108, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7109, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7110, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7111, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7112, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7113, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7114, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7115, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 7116, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 7117, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7118, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7119, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7120, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7121, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7122, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7123, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7124, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7125, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 7126, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 7127, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7128, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7129, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7130, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7131, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7132, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7133, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7134, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7135, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 7136, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 7137, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7138, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7139, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7140, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7141, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7142, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7143, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7144, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7145, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 7146, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 7147, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7148, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7149, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7150, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7151, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7152, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7153, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7154, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7155, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 7156, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 7157, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7158, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7159, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7160, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7161, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7162, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7163, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7164, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7165, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 7166, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 7167, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7168, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7169, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7170, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7171, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7172, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7173, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7174, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7175, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 7176, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 7177, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7178, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7179, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7180, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7181, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7182, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7183, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7184, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - } - ] - }, - { - "id": 321, - "name": "mud_brick_stairs", - "translation_key": "block.minecraft.mud_brick_stairs", + "name": "brick_stairs", + "translation_key": "block.minecraft.brick_stairs", "item_id": 339, "properties": [ { @@ -71249,10 +69554,10 @@ ] } ], - "default_state_id": 7196, + "default_state_id": 7040, "states": [ { - "id": 7185, + "id": 7029, "luminance": 0, "opaque": true, "replaceable": false, @@ -71261,14 +69566,1714 @@ 42 ] }, + { + "id": 7030, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 7031, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7032, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7033, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7034, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7035, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7036, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7037, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7038, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7039, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7040, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7041, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7042, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7043, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7044, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7045, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7046, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7047, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7048, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7049, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7050, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7051, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7052, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7053, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7054, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7055, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7056, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7057, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7058, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7059, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7060, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7061, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7062, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7063, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7064, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7065, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7066, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7067, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7068, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7069, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7070, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7071, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7072, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7073, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7074, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7075, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7076, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7077, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7078, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7079, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7080, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7081, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7082, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7083, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7084, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7085, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7086, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7087, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7088, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7089, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7090, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7091, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7092, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7093, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7094, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7095, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7096, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7097, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7098, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7099, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7100, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7101, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7102, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7103, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7104, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7105, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7106, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7107, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7108, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 321, + "name": "stone_brick_stairs", + "translation_key": "block.minecraft.stone_brick_stairs", + "item_id": 340, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7120, + "states": [ + { + "id": 7109, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 7110, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 7111, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7112, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7113, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7114, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7115, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7116, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7117, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7118, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7119, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7120, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7121, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7122, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7123, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7124, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7125, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7126, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7127, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7128, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7129, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7130, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7131, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7132, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7133, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7134, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7135, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7136, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7137, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7138, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7139, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7140, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7141, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7142, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7143, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7144, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7145, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7146, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7147, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7148, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7149, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7150, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7151, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7152, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7153, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7154, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7155, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7156, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7157, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7158, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7159, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7160, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7161, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7162, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7163, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7164, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7165, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7166, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7167, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7168, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7169, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7170, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7171, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7172, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7173, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7174, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7175, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7176, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7177, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7178, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7179, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7180, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7181, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7182, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7183, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7184, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7185, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, { "id": 7186, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 42 + 51, + 49 ] }, { @@ -71277,8 +71282,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, + 51, 45 ] }, @@ -71287,813 +71291,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7189, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7190, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7191, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7192, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7193, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7194, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7195, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 7196, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 7197, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7198, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7199, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7200, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7201, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7202, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7203, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7204, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7205, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 7206, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 7207, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7208, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7209, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7210, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7211, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7212, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7213, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7214, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7215, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 7216, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 7217, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7218, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7219, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7220, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7221, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7222, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7223, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7224, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7225, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 7226, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 7227, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7228, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7229, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7230, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7231, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7232, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7233, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7234, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7235, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 7236, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 7237, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7238, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7239, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7240, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7241, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7242, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7243, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7244, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7245, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 7246, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 7247, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7248, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7249, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7250, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7251, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7252, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7253, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7254, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7255, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 7256, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 7257, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7258, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7259, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7260, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7261, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7262, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7263, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7264, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -72103,9 +71300,901 @@ }, { "id": 322, + "name": "mud_brick_stairs", + "translation_key": "block.minecraft.mud_brick_stairs", + "item_id": 341, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7200, + "states": [ + { + "id": 7189, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 7190, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 7191, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7192, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7193, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7194, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7195, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7196, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7197, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7198, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7199, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7200, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7201, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7202, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7203, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7204, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7205, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7206, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7207, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7208, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7209, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7210, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7211, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7212, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7213, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7214, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7215, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7216, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7217, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7218, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7219, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7220, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7221, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7222, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7223, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7224, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7225, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7226, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7227, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7228, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7229, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7230, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7231, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7232, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7233, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7234, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7235, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7236, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7237, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7238, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7239, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7240, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7241, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7242, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7243, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7244, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7245, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7246, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7247, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7248, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7249, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7250, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7251, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7252, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7253, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7254, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7255, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7256, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7257, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7258, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7259, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7260, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7261, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7262, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7263, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7264, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7265, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7266, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7267, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7268, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 323, "name": "mycelium", "translation_key": "block.minecraft.mycelium", - "item_id": 340, + "item_id": 342, "properties": [ { "name": "snowy", @@ -72115,10 +72204,10 @@ ] } ], - "default_state_id": 7266, + "default_state_id": 7270, "states": [ { - "id": 7265, + "id": 7269, "luminance": 0, "opaque": true, "replaceable": false, @@ -72127,7 +72216,7 @@ ] }, { - "id": 7266, + "id": 7270, "luminance": 0, "opaque": true, "replaceable": false, @@ -72138,15 +72227,15 @@ ] }, { - "id": 323, + "id": 324, "name": "lily_pad", "translation_key": "block.minecraft.lily_pad", - "item_id": 341, + "item_id": 343, "properties": [], - "default_state_id": 7267, + "default_state_id": 7271, "states": [ { - "id": 7267, + "id": 7271, "luminance": 0, "opaque": false, "replaceable": false, @@ -72157,15 +72246,15 @@ ] }, { - "id": 324, + "id": 325, "name": "nether_bricks", "translation_key": "block.minecraft.nether_bricks", - "item_id": 342, + "item_id": 344, "properties": [], - "default_state_id": 7268, + "default_state_id": 7272, "states": [ { - "id": 7268, + "id": 7272, "luminance": 0, "opaque": true, "replaceable": false, @@ -72176,10 +72265,10 @@ ] }, { - "id": 325, + "id": 326, "name": "nether_brick_fence", "translation_key": "block.minecraft.nether_brick_fence", - "item_id": 345, + "item_id": 347, "properties": [ { "name": "east", @@ -72217,50 +72306,8 @@ ] } ], - "default_state_id": 7300, + "default_state_id": 7304, "states": [ - { - "id": 7269, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76, - 77 - ] - }, - { - "id": 7270, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78, - 79 - ] - }, - { - "id": 7271, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76, - 77 - ] - }, - { - "id": 7272, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78, - 79 - ] - }, { "id": 7273, "luminance": 0, @@ -72268,7 +72315,8 @@ "replaceable": false, "collision_shapes": [ 75, - 76 + 76, + 77 ] }, { @@ -72277,7 +72325,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 80, + 78, 79 ] }, @@ -72288,7 +72336,8 @@ "replaceable": false, "collision_shapes": [ 75, - 76 + 76, + 77 ] }, { @@ -72297,7 +72346,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 80, + 78, 79 ] }, @@ -72308,7 +72357,7 @@ "replaceable": false, "collision_shapes": [ 75, - 77 + 76 ] }, { @@ -72317,7 +72366,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 81, + 80, 79 ] }, @@ -72328,7 +72377,7 @@ "replaceable": false, "collision_shapes": [ 75, - 77 + 76 ] }, { @@ -72337,7 +72386,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 81, + 80, 79 ] }, @@ -72347,7 +72396,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 75 + 75, + 77 ] }, { @@ -72356,7 +72406,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 82 + 81, + 79 ] }, { @@ -72365,7 +72416,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 75 + 75, + 77 ] }, { @@ -72374,7 +72426,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 82 + 81, + 79 ] }, { @@ -72383,9 +72436,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83, - 76, - 77 + 75 ] }, { @@ -72394,7 +72445,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 82 ] }, { @@ -72403,9 +72454,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83, - 76, - 77 + 75 ] }, { @@ -72414,7 +72463,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 82 ] }, { @@ -72424,7 +72473,8 @@ "replaceable": false, "collision_shapes": [ 83, - 76 + 76, + 77 ] }, { @@ -72433,7 +72483,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 80 + 78 ] }, { @@ -72443,7 +72493,8 @@ "replaceable": false, "collision_shapes": [ 83, - 76 + 76, + 77 ] }, { @@ -72452,7 +72503,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 80 + 78 ] }, { @@ -72462,7 +72513,7 @@ "replaceable": false, "collision_shapes": [ 83, - 77 + 76 ] }, { @@ -72471,7 +72522,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 81 + 80 ] }, { @@ -72481,7 +72532,7 @@ "replaceable": false, "collision_shapes": [ 83, - 77 + 76 ] }, { @@ -72490,7 +72541,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 81 + 80 ] }, { @@ -72499,7 +72550,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83 + 83, + 77 ] }, { @@ -72508,7 +72560,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 84 + 81 ] }, { @@ -72517,7 +72569,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83 + 83, + 77 ] }, { @@ -72525,6 +72578,42 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 81 + ] + }, + { + "id": 7301, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83 + ] + }, + { + "id": 7302, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 84 + ] + }, + { + "id": 7303, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83 + ] + }, + { + "id": 7304, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 84 ] @@ -72532,10 +72621,10 @@ ] }, { - "id": 326, + "id": 327, "name": "nether_brick_stairs", "translation_key": "block.minecraft.nether_brick_stairs", - "item_id": 346, + "item_id": 348, "properties": [ { "name": "facing", @@ -72571,50 +72660,8 @@ ] } ], - "default_state_id": 7312, + "default_state_id": 7316, "states": [ - { - "id": 7301, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 7302, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 7303, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7304, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, { "id": 7305, "luminance": 0, @@ -72622,8 +72669,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -72633,8 +72679,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -72643,9 +72688,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -72654,9 +72699,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -72665,9 +72710,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -72676,9 +72721,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -72687,8 +72732,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -72697,8 +72743,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -72707,9 +72754,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -72718,9 +72765,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -72730,8 +72777,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -72741,8 +72787,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -72752,7 +72797,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -72762,7 +72808,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -72772,7 +72819,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -72782,7 +72830,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -72791,8 +72840,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -72801,8 +72850,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -72811,9 +72860,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -72822,9 +72870,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -72833,9 +72880,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -72844,9 +72890,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -72855,9 +72900,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -72866,9 +72911,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -72877,9 +72922,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -72888,9 +72933,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -72899,8 +72944,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -72909,8 +72955,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -72919,9 +72966,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -72930,9 +72977,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -72942,8 +72989,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -72953,8 +72999,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -72964,7 +73009,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -72974,7 +73020,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -72984,7 +73031,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -72994,7 +73042,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -73003,8 +73052,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -73013,8 +73062,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -73023,9 +73072,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -73034,9 +73082,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -73046,8 +73093,7 @@ "replaceable": false, "collision_shapes": [ 43, - 44, - 45 + 56 ] }, { @@ -73055,54 +73101,53 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7347, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7348, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7349, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 43, 44, 45 ] }, - { - "id": 7347, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7348, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7349, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, { "id": 7350, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -73111,8 +73156,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -73121,8 +73167,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -73131,9 +73178,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -73142,9 +73189,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -73154,8 +73201,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -73165,8 +73211,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -73176,7 +73221,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -73186,7 +73232,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -73196,7 +73243,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -73206,7 +73254,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -73215,8 +73264,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -73225,8 +73274,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -73235,9 +73284,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -73246,9 +73294,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -73257,9 +73304,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -73268,9 +73314,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -73279,9 +73324,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -73290,9 +73335,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -73301,9 +73346,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -73312,9 +73357,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -73323,8 +73368,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -73333,8 +73379,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -73343,9 +73390,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -73354,9 +73401,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -73366,8 +73413,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -73377,8 +73423,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -73388,7 +73433,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -73398,7 +73444,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -73408,7 +73455,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -73416,6 +73464,47 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7381, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7382, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7383, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7384, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 51, 45 @@ -73424,10 +73513,10 @@ ] }, { - "id": 327, + "id": 328, "name": "nether_wart", "translation_key": "block.minecraft.nether_wart", - "item_id": 952, + "item_id": 956, "properties": [ { "name": "age", @@ -73439,31 +73528,31 @@ ] } ], - "default_state_id": 7381, + "default_state_id": 7385, "states": [ { - "id": 7381, + "id": 7385, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 7382, + "id": 7386, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 7383, + "id": 7387, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 7384, + "id": 7388, "luminance": 0, "opaque": false, "replaceable": false, @@ -73472,15 +73561,15 @@ ] }, { - "id": 328, + "id": 329, "name": "enchanting_table", "translation_key": "block.minecraft.enchanting_table", - "item_id": 351, + "item_id": 353, "properties": [], - "default_state_id": 7385, + "default_state_id": 7389, "states": [ { - "id": 7385, + "id": 7389, "luminance": 7, "opaque": true, "replaceable": false, @@ -73492,10 +73581,10 @@ ] }, { - "id": 329, + "id": 330, "name": "brewing_stand", "translation_key": "block.minecraft.brewing_stand", - "item_id": 959, + "item_id": 963, "properties": [ { "name": "has_bottle_0", @@ -73519,52 +73608,8 @@ ] } ], - "default_state_id": 7393, + "default_state_id": 7397, "states": [ - { - "id": 7386, - "luminance": 1, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 108, - 109 - ], - "block_entity_type": 11 - }, - { - "id": 7387, - "luminance": 1, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 108, - 109 - ], - "block_entity_type": 11 - }, - { - "id": 7388, - "luminance": 1, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 108, - 109 - ], - "block_entity_type": 11 - }, - { - "id": 7389, - "luminance": 1, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 108, - 109 - ], - "block_entity_type": 11 - }, { "id": 7390, "luminance": 1, @@ -73608,107 +73653,63 @@ 109 ], "block_entity_type": 11 - } - ] - }, - { - "id": 330, - "name": "cauldron", - "translation_key": "block.minecraft.cauldron", - "item_id": 960, - "properties": [], - "default_state_id": 7394, - "states": [ + }, { "id": 7394, - "luminance": 0, + "luminance": 1, "opaque": false, "replaceable": false, "collision_shapes": [ - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124 - ] + 108, + 109 + ], + "block_entity_type": 11 + }, + { + "id": 7395, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 108, + 109 + ], + "block_entity_type": 11 + }, + { + "id": 7396, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 108, + 109 + ], + "block_entity_type": 11 + }, + { + "id": 7397, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 108, + 109 + ], + "block_entity_type": 11 } ] }, { "id": 331, - "name": "water_cauldron", - "translation_key": "block.minecraft.water_cauldron", - "item_id": 960, - "properties": [ - { - "name": "level", - "values": [ - "1", - "2", - "3" - ] - } - ], - "default_state_id": 7395, + "name": "cauldron", + "translation_key": "block.minecraft.cauldron", + "item_id": 964, + "properties": [], + "default_state_id": 7398, "states": [ { - "id": 7395, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124 - ] - }, - { - "id": 7396, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124 - ] - }, - { - "id": 7397, + "id": 7398, "luminance": 0, "opaque": false, "replaceable": false, @@ -73734,42 +73735,9 @@ }, { "id": 332, - "name": "lava_cauldron", - "translation_key": "block.minecraft.lava_cauldron", - "item_id": 960, - "properties": [], - "default_state_id": 7398, - "states": [ - { - "id": 7398, - "luminance": 15, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124 - ] - } - ] - }, - { - "id": 333, - "name": "powder_snow_cauldron", - "translation_key": "block.minecraft.powder_snow_cauldron", - "item_id": 960, + "name": "water_cauldron", + "translation_key": "block.minecraft.water_cauldron", + "item_id": 964, "properties": [ { "name": "level", @@ -73854,10 +73822,10 @@ ] }, { - "id": 334, - "name": "end_portal", - "translation_key": "block.minecraft.end_portal", - "item_id": 0, + "id": 333, + "name": "lava_cauldron", + "translation_key": "block.minecraft.lava_cauldron", + "item_id": 964, "properties": [], "default_state_id": 7402, "states": [ @@ -73866,16 +73834,137 @@ "luminance": 15, "opaque": false, "replaceable": false, + "collision_shapes": [ + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124 + ] + } + ] + }, + { + "id": 334, + "name": "powder_snow_cauldron", + "translation_key": "block.minecraft.powder_snow_cauldron", + "item_id": 964, + "properties": [ + { + "name": "level", + "values": [ + "1", + "2", + "3" + ] + } + ], + "default_state_id": 7403, + "states": [ + { + "id": 7403, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124 + ] + }, + { + "id": 7404, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124 + ] + }, + { + "id": 7405, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124 + ] + } + ] + }, + { + "id": 335, + "name": "end_portal", + "translation_key": "block.minecraft.end_portal", + "item_id": 0, + "properties": [], + "default_state_id": 7406, + "states": [ + { + "id": 7406, + "luminance": 15, + "opaque": false, + "replaceable": false, "collision_shapes": [], "block_entity_type": 13 } ] }, { - "id": 335, + "id": 336, "name": "end_portal_frame", "translation_key": "block.minecraft.end_portal_frame", - "item_id": 352, + "item_id": 354, "properties": [ { "name": "eye", @@ -73894,55 +73983,16 @@ ] } ], - "default_state_id": 7407, + "default_state_id": 7411, "states": [ - { - "id": 7403, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 125, - 126 - ] - }, - { - "id": 7404, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 125, - 126 - ] - }, - { - "id": 7405, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 125, - 126 - ] - }, - { - "id": 7406, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 125, - 126 - ] - }, { "id": 7407, "luminance": 1, "opaque": true, "replaceable": false, "collision_shapes": [ - 125 + 125, + 126 ] }, { @@ -73951,7 +74001,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 125 + 125, + 126 ] }, { @@ -73960,7 +74011,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 125 + 125, + 126 ] }, { @@ -73968,6 +74020,43 @@ "luminance": 1, "opaque": true, "replaceable": false, + "collision_shapes": [ + 125, + 126 + ] + }, + { + "id": 7411, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 125 + ] + }, + { + "id": 7412, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 125 + ] + }, + { + "id": 7413, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 125 + ] + }, + { + "id": 7414, + "luminance": 1, + "opaque": true, + "replaceable": false, "collision_shapes": [ 125 ] @@ -73975,15 +74064,15 @@ ] }, { - "id": 336, + "id": 337, "name": "end_stone", "translation_key": "block.minecraft.end_stone", - "item_id": 353, + "item_id": 355, "properties": [], - "default_state_id": 7411, + "default_state_id": 7415, "states": [ { - "id": 7411, + "id": 7415, "luminance": 0, "opaque": true, "replaceable": false, @@ -73994,15 +74083,15 @@ ] }, { - "id": 337, + "id": 338, "name": "dragon_egg", "translation_key": "block.minecraft.dragon_egg", - "item_id": 355, + "item_id": 357, "properties": [], - "default_state_id": 7412, + "default_state_id": 7416, "states": [ { - "id": 7412, + "id": 7416, "luminance": 1, "opaque": false, "replaceable": false, @@ -74013,10 +74102,10 @@ ] }, { - "id": 338, + "id": 339, "name": "redstone_lamp", "translation_key": "block.minecraft.redstone_lamp", - "item_id": 654, + "item_id": 658, "properties": [ { "name": "lit", @@ -74026,10 +74115,10 @@ ] } ], - "default_state_id": 7414, + "default_state_id": 7418, "states": [ { - "id": 7413, + "id": 7417, "luminance": 15, "opaque": true, "replaceable": false, @@ -74038,7 +74127,7 @@ ] }, { - "id": 7414, + "id": 7418, "luminance": 0, "opaque": true, "replaceable": false, @@ -74049,10 +74138,10 @@ ] }, { - "id": 339, + "id": 340, "name": "cocoa", "translation_key": "block.minecraft.cocoa", - "item_id": 899, + "item_id": 903, "properties": [ { "name": "age", @@ -74072,10 +74161,10 @@ ] } ], - "default_state_id": 7415, + "default_state_id": 7419, "states": [ { - "id": 7415, + "id": 7419, "luminance": 0, "opaque": false, "replaceable": false, @@ -74084,7 +74173,7 @@ ] }, { - "id": 7416, + "id": 7420, "luminance": 0, "opaque": false, "replaceable": false, @@ -74093,7 +74182,7 @@ ] }, { - "id": 7417, + "id": 7421, "luminance": 0, "opaque": false, "replaceable": false, @@ -74102,7 +74191,7 @@ ] }, { - "id": 7418, + "id": 7422, "luminance": 0, "opaque": false, "replaceable": false, @@ -74111,7 +74200,7 @@ ] }, { - "id": 7419, + "id": 7423, "luminance": 0, "opaque": false, "replaceable": false, @@ -74120,7 +74209,7 @@ ] }, { - "id": 7420, + "id": 7424, "luminance": 0, "opaque": false, "replaceable": false, @@ -74129,7 +74218,7 @@ ] }, { - "id": 7421, + "id": 7425, "luminance": 0, "opaque": false, "replaceable": false, @@ -74138,7 +74227,7 @@ ] }, { - "id": 7422, + "id": 7426, "luminance": 0, "opaque": false, "replaceable": false, @@ -74147,7 +74236,7 @@ ] }, { - "id": 7423, + "id": 7427, "luminance": 0, "opaque": false, "replaceable": false, @@ -74156,7 +74245,7 @@ ] }, { - "id": 7424, + "id": 7428, "luminance": 0, "opaque": false, "replaceable": false, @@ -74165,7 +74254,7 @@ ] }, { - "id": 7425, + "id": 7429, "luminance": 0, "opaque": false, "replaceable": false, @@ -74174,7 +74263,7 @@ ] }, { - "id": 7426, + "id": 7430, "luminance": 0, "opaque": false, "replaceable": false, @@ -74185,10 +74274,10 @@ ] }, { - "id": 340, + "id": 341, "name": "sandstone_stairs", "translation_key": "block.minecraft.sandstone_stairs", - "item_id": 356, + "item_id": 358, "properties": [ { "name": "facing", @@ -74224,50 +74313,8 @@ ] } ], - "default_state_id": 7438, + "default_state_id": 7442, "states": [ - { - "id": 7427, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 7428, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 7429, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7430, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, { "id": 7431, "luminance": 0, @@ -74275,8 +74322,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -74286,8 +74332,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -74296,9 +74341,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -74307,9 +74352,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -74318,9 +74363,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -74329,9 +74374,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -74340,8 +74385,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -74350,8 +74396,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -74360,9 +74407,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -74371,9 +74418,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -74383,8 +74430,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -74394,8 +74440,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -74405,7 +74450,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -74415,7 +74461,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -74425,7 +74472,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -74435,7 +74483,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -74444,8 +74493,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -74454,8 +74503,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -74464,9 +74513,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -74475,9 +74523,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -74486,9 +74533,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -74497,9 +74543,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -74508,9 +74553,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -74519,9 +74564,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -74530,9 +74575,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -74541,9 +74586,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -74552,8 +74597,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -74562,8 +74608,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -74572,9 +74619,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -74583,9 +74630,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -74595,8 +74642,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -74606,8 +74652,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -74617,7 +74662,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -74627,7 +74673,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -74637,7 +74684,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -74647,7 +74695,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -74656,8 +74705,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -74666,8 +74715,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -74676,9 +74725,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -74687,9 +74735,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -74699,8 +74746,7 @@ "replaceable": false, "collision_shapes": [ 43, - 44, - 45 + 56 ] }, { @@ -74708,54 +74754,53 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7473, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7474, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7475, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 43, 44, 45 ] }, - { - "id": 7473, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7474, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7475, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, { "id": 7476, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -74764,8 +74809,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -74774,8 +74820,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -74784,9 +74831,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -74795,9 +74842,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -74807,8 +74854,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -74818,8 +74864,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -74829,7 +74874,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -74839,7 +74885,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -74849,7 +74896,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -74859,7 +74907,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -74868,8 +74917,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -74878,8 +74927,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -74888,9 +74937,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -74899,9 +74947,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -74910,9 +74957,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -74921,9 +74967,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -74932,9 +74977,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -74943,9 +74988,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -74954,9 +74999,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -74965,9 +75010,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -74976,8 +75021,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -74986,8 +75032,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -74996,9 +75043,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -75007,9 +75054,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -75019,8 +75066,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -75030,8 +75076,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -75041,7 +75086,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -75051,7 +75097,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -75061,7 +75108,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -75069,6 +75117,47 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7507, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7508, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7509, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7510, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 51, 45 @@ -75077,34 +75166,15 @@ ] }, { - "id": 341, + "id": 342, "name": "emerald_ore", "translation_key": "block.minecraft.emerald_ore", - "item_id": 58, - "properties": [], - "default_state_id": 7507, - "states": [ - { - "id": 7507, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 342, - "name": "deepslate_emerald_ore", - "translation_key": "block.minecraft.deepslate_emerald_ore", "item_id": 59, "properties": [], - "default_state_id": 7508, + "default_state_id": 7511, "states": [ { - "id": 7508, + "id": 7511, "luminance": 0, "opaque": true, "replaceable": false, @@ -75116,9 +75186,28 @@ }, { "id": 343, + "name": "deepslate_emerald_ore", + "translation_key": "block.minecraft.deepslate_emerald_ore", + "item_id": 60, + "properties": [], + "default_state_id": 7512, + "states": [ + { + "id": 7512, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 344, "name": "ender_chest", "translation_key": "block.minecraft.ender_chest", - "item_id": 357, + "item_id": 359, "properties": [ { "name": "facing", @@ -75137,48 +75226,8 @@ ] } ], - "default_state_id": 7510, + "default_state_id": 7514, "states": [ - { - "id": 7509, - "luminance": 7, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 58 - ], - "block_entity_type": 3 - }, - { - "id": 7510, - "luminance": 7, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 58 - ], - "block_entity_type": 3 - }, - { - "id": 7511, - "luminance": 7, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 58 - ], - "block_entity_type": 3 - }, - { - "id": 7512, - "luminance": 7, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 58 - ], - "block_entity_type": 3 - }, { "id": 7513, "luminance": 7, @@ -75218,14 +75267,54 @@ 58 ], "block_entity_type": 3 + }, + { + "id": 7517, + "luminance": 7, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 58 + ], + "block_entity_type": 3 + }, + { + "id": 7518, + "luminance": 7, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 58 + ], + "block_entity_type": 3 + }, + { + "id": 7519, + "luminance": 7, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 58 + ], + "block_entity_type": 3 + }, + { + "id": 7520, + "luminance": 7, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 58 + ], + "block_entity_type": 3 } ] }, { - "id": 344, + "id": 345, "name": "tripwire_hook", "translation_key": "block.minecraft.tripwire_hook", - "item_id": 651, + "item_id": 655, "properties": [ { "name": "attached", @@ -75251,36 +75340,8 @@ ] } ], - "default_state_id": 7526, + "default_state_id": 7530, "states": [ - { - "id": 7517, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 7518, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 7519, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 7520, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 7521, "luminance": 0, @@ -75364,14 +75425,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 7533, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 7534, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 7535, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 7536, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 345, + "id": 346, "name": "tripwire", "translation_key": "block.minecraft.tripwire", - "item_id": 806, + "item_id": 810, "properties": [ { "name": "attached", @@ -75423,36 +75512,8 @@ ] } ], - "default_state_id": 7660, + "default_state_id": 7664, "states": [ - { - "id": 7533, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 7534, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 7535, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 7536, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 7537, "luminance": 0, @@ -76320,19 +76381,47 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 7661, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 7662, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 7663, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 7664, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 346, + "id": 347, "name": "emerald_block", "translation_key": "block.minecraft.emerald_block", - "item_id": 358, + "item_id": 360, "properties": [], - "default_state_id": 7661, + "default_state_id": 7665, "states": [ { - "id": 7661, + "id": 7665, "luminance": 0, "opaque": true, "replaceable": false, @@ -76343,1793 +76432,9 @@ ] }, { - "id": 347, + "id": 348, "name": "spruce_stairs", "translation_key": "block.minecraft.spruce_stairs", - "item_id": 360, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 7673, - "states": [ - { - "id": 7662, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 7663, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 7664, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7665, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7666, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7667, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7668, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7669, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7670, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7671, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7672, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 7673, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 7674, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7675, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7676, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7677, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7678, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7679, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7680, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7681, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7682, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 7683, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 7684, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7685, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7686, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7687, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7688, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7689, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7690, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7691, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7692, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 7693, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 7694, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7695, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7696, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7697, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7698, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7699, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7700, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7701, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7702, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 7703, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 7704, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7705, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7706, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7707, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7708, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7709, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7710, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7711, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7712, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 7713, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 7714, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7715, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7716, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7717, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7718, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7719, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7720, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7721, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7722, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 7723, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 7724, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7725, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7726, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7727, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7728, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7729, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7730, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7731, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7732, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 7733, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 7734, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7735, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7736, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7737, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7738, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7739, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7740, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7741, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - } - ] - }, - { - "id": 348, - "name": "birch_stairs", - "translation_key": "block.minecraft.birch_stairs", - "item_id": 361, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 7753, - "states": [ - { - "id": 7742, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 7743, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 7744, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7745, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7746, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7747, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7748, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7749, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7750, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7751, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7752, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 7753, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 7754, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7755, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7756, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7757, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7758, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7759, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7760, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7761, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7762, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 7763, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 7764, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7765, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7766, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7767, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7768, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7769, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7770, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7771, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7772, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 7773, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 7774, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7775, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7776, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7777, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7778, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7779, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7780, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7781, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7782, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 7783, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 7784, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7785, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7786, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7787, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7788, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7789, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7790, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7791, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7792, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 7793, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 7794, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7795, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7796, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7797, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7798, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7799, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7800, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7801, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7802, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 7803, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 7804, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7805, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7806, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7807, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7808, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7809, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7810, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7811, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7812, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 7813, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 7814, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7815, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7816, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7817, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7818, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7819, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7820, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7821, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - } - ] - }, - { - "id": 349, - "name": "jungle_stairs", - "translation_key": "block.minecraft.jungle_stairs", "item_id": 362, "properties": [ { @@ -78166,10 +76471,10 @@ ] } ], - "default_state_id": 7833, + "default_state_id": 7677, "states": [ { - "id": 7822, + "id": 7666, "luminance": 0, "opaque": true, "replaceable": false, @@ -78178,14 +76483,1714 @@ 42 ] }, + { + "id": 7667, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 7668, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7669, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7670, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7671, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7672, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7673, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7674, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7675, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7676, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7677, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7678, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7679, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7680, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7681, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7682, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7683, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7684, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7685, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7686, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7687, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7688, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7689, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7690, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7691, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7692, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7693, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7694, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7695, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7696, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7697, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7698, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7699, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7700, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7701, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7702, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7703, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7704, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7705, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7706, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7707, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7708, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7709, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7710, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7711, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7712, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7713, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7714, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7715, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7716, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7717, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7718, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7719, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7720, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7721, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7722, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7723, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7724, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7725, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7726, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7727, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7728, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7729, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7730, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7731, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7732, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7733, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7734, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7735, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7736, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7737, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7738, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7739, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7740, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7741, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7742, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7743, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7744, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7745, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 349, + "name": "birch_stairs", + "translation_key": "block.minecraft.birch_stairs", + "item_id": 363, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7757, + "states": [ + { + "id": 7746, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 7747, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 7748, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7749, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7750, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7751, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7752, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7753, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7754, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7755, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7756, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7757, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7758, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7759, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7760, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7761, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7762, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7763, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7764, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7765, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7766, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7767, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7768, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7769, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7770, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7771, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7772, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7773, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7774, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7775, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7776, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7777, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7778, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7779, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7780, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7781, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7782, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7783, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7784, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7785, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7786, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7787, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7788, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7789, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7790, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7791, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7792, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7793, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7794, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7795, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7796, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7797, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7798, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7799, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7800, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7801, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7802, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7803, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7804, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7805, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7806, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7807, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7808, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7809, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7810, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7811, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7812, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7813, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7814, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7815, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7816, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7817, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7818, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7819, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7820, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7821, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7822, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, { "id": 7823, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 42 + 51, + 49 ] }, { @@ -78194,8 +78199,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, + 51, 45 ] }, @@ -78204,813 +78208,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7826, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7827, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7828, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7829, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7830, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7831, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7832, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 7833, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 7834, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7835, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7836, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7837, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7838, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7839, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7840, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7841, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7842, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 7843, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 7844, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7845, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7846, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7847, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7848, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7849, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7850, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7851, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7852, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 7853, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 7854, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7855, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7856, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7857, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7858, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7859, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7860, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7861, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7862, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 7863, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 7864, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7865, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 7866, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7867, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 7868, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7869, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 7870, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7871, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 7872, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 7873, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 7874, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7875, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 7876, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7877, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 7878, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7879, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 7880, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7881, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 7882, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 7883, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 7884, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7885, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 7886, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7887, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 7888, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7889, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 7890, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7891, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 7892, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 7893, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 7894, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7895, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 7896, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7897, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 7898, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7899, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 7900, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 7901, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -79020,9 +78217,901 @@ }, { "id": 350, + "name": "jungle_stairs", + "translation_key": "block.minecraft.jungle_stairs", + "item_id": 364, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 7837, + "states": [ + { + "id": 7826, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 7827, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 7828, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7829, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7830, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7831, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7832, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7833, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7834, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7835, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7836, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7837, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 7838, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7839, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7840, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7841, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7842, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7843, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7844, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7845, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7846, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7847, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 7848, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7849, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7850, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7851, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7852, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7853, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7854, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7855, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7856, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7857, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 7858, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7859, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7860, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7861, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7862, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7863, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7864, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7865, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7866, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7867, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 7868, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7869, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 7870, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7871, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 7872, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7873, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 7874, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7875, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 7876, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7877, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 7878, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7879, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 7880, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7881, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 7882, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7883, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 7884, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7885, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 7886, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7887, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 7888, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7889, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 7890, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7891, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 7892, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7893, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 7894, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7895, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 7896, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7897, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 7898, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7899, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 7900, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7901, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 7902, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7903, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 7904, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 7905, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 351, "name": "command_block", "translation_key": "block.minecraft.command_block", - "item_id": 371, + "item_id": 373, "properties": [ { "name": "conditional", @@ -79043,48 +79132,8 @@ ] } ], - "default_state_id": 7908, + "default_state_id": 7912, "states": [ - { - "id": 7902, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 7903, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 7904, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 7905, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, { "id": 7906, "luminance": 0, @@ -79164,19 +79213,59 @@ 0 ], "block_entity_type": 22 + }, + { + "id": 7914, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 7915, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 7916, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 7917, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 } ] }, { - "id": 351, + "id": 352, "name": "beacon", "translation_key": "block.minecraft.beacon", - "item_id": 372, + "item_id": 374, "properties": [], - "default_state_id": 7914, + "default_state_id": 7918, "states": [ { - "id": 7914, + "id": 7918, "luminance": 15, "opaque": false, "replaceable": false, @@ -79188,10 +79277,10 @@ ] }, { - "id": 352, + "id": 353, "name": "cobblestone_wall", "translation_key": "block.minecraft.cobblestone_wall", - "item_id": 373, + "item_id": 375, "properties": [ { "name": "east", @@ -79240,57 +79329,15 @@ ] } ], - "default_state_id": 7918, + "default_state_id": 7922, "states": [ - { - "id": 7915, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140 - ] - }, - { - "id": 7916, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 7917, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 7918, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140 - ] - }, { "id": 7919, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 140 ] }, { @@ -79309,7 +79356,11 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 141, + 142, + 143 + ] }, { "id": 7922, @@ -79317,7 +79368,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144 + 140 ] }, { @@ -79326,7 +79377,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144 + 141, + 142, + 143 ] }, { @@ -79334,16 +79387,18 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 141, + 142, + 143 + ] }, { "id": 7925, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 144 - ] + "collision_shapes": [] }, { "id": 7926, @@ -79360,8 +79415,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145 + 144 ] }, { @@ -79369,12 +79423,7 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] + "collision_shapes": [] }, { "id": 7929, @@ -79382,10 +79431,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 145 + 144 ] }, { @@ -79394,8 +79440,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145 + 144 ] }, { @@ -79404,9 +79449,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 145 ] }, @@ -79428,7 +79471,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146 + 141, + 142, + 143, + 145 ] }, { @@ -79437,8 +79483,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 140, + 145 ] }, { @@ -79447,8 +79493,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 141, + 142, + 143, + 145 ] }, { @@ -79457,7 +79505,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146 + 141, + 142, + 143, + 145 ] }, { @@ -79466,8 +79517,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 146 ] }, { @@ -79486,8 +79536,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145 + 144, + 147 ] }, { @@ -79496,10 +79546,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 145 + 146 ] }, { @@ -79508,10 +79555,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 145 + 144, + 147 ] }, { @@ -79520,8 +79565,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145 + 144, + 147 ] }, { @@ -79530,9 +79575,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 145 ] }, @@ -79554,7 +79597,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146 + 141, + 142, + 143, + 145 ] }, { @@ -79563,8 +79609,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 140, + 145 ] }, { @@ -79573,8 +79619,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 141, + 142, + 143, + 145 ] }, { @@ -79583,7 +79631,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146 + 141, + 142, + 143, + 145 ] }, { @@ -79592,8 +79643,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 146 ] }, { @@ -79612,8 +79662,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148 + 144, + 147 ] }, { @@ -79622,10 +79672,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148 + 146 ] }, { @@ -79634,10 +79681,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148 + 144, + 147 ] }, { @@ -79646,8 +79691,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148 + 144, + 147 ] }, { @@ -79656,9 +79701,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 148 ] }, @@ -79680,7 +79723,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149 + 141, + 142, + 143, + 148 ] }, { @@ -79689,8 +79735,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150 + 140, + 148 ] }, { @@ -79699,8 +79745,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150 + 141, + 142, + 143, + 148 ] }, { @@ -79709,7 +79757,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149 + 141, + 142, + 143, + 148 ] }, { @@ -79718,8 +79769,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150 + 149 ] }, { @@ -79738,9 +79788,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150 ] }, { @@ -79749,11 +79798,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 149 ] }, { @@ -79762,11 +79807,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 144, + 150 ] }, { @@ -79775,9 +79817,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150 ] }, { @@ -79786,9 +79827,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 148, 145 ] @@ -79812,7 +79851,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -79821,9 +79864,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 140, + 148, + 145 ] }, { @@ -79832,9 +79875,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -79843,7 +79888,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -79852,9 +79901,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 151 ] }, { @@ -79874,9 +79921,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -79885,11 +79932,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 151 ] }, { @@ -79898,11 +79941,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -79911,9 +79952,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -79922,9 +79963,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 148, 145 ] @@ -79948,7 +79987,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -79957,9 +80000,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 140, + 148, + 145 ] }, { @@ -79968,9 +80011,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -79979,7 +80024,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -79988,9 +80037,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 151 ] }, { @@ -80010,8 +80057,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148 + 144, + 150, + 147 ] }, { @@ -80020,10 +80068,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148 + 151 ] }, { @@ -80032,10 +80077,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148 + 144, + 150, + 147 ] }, { @@ -80044,8 +80088,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148 + 144, + 150, + 147 ] }, { @@ -80054,9 +80099,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 148 ] }, @@ -80078,7 +80121,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149 + 141, + 142, + 143, + 148 ] }, { @@ -80087,8 +80133,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150 + 140, + 148 ] }, { @@ -80097,8 +80143,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150 + 141, + 142, + 143, + 148 ] }, { @@ -80107,7 +80155,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149 + 141, + 142, + 143, + 148 ] }, { @@ -80116,8 +80167,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150 + 149 ] }, { @@ -80136,9 +80186,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150 ] }, { @@ -80147,11 +80196,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 149 ] }, { @@ -80160,11 +80205,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 144, + 150 ] }, { @@ -80173,9 +80215,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150 ] }, { @@ -80184,9 +80225,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 148, 145 ] @@ -80210,7 +80249,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -80219,9 +80262,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 140, + 148, + 145 ] }, { @@ -80230,9 +80273,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -80241,7 +80286,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -80250,9 +80299,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 151 ] }, { @@ -80272,9 +80319,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -80283,11 +80330,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 151 ] }, { @@ -80296,11 +80339,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -80309,9 +80350,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -80320,9 +80361,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 148, 145 ] @@ -80346,7 +80385,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -80355,9 +80398,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 140, + 148, + 145 ] }, { @@ -80366,9 +80409,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -80377,7 +80422,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -80386,9 +80435,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 151 ] }, { @@ -80408,8 +80455,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 152 + 144, + 150, + 147 ] }, { @@ -80418,9 +80466,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143 + 151 ] }, { @@ -80429,9 +80475,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143 + 144, + 150, + 147 ] }, { @@ -80440,8 +80486,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 152 + 144, + 150, + 147 ] }, { @@ -80450,9 +80497,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143 + 140, + 152 ] }, { @@ -80472,7 +80518,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 154 + 153, + 142, + 143 ] }, { @@ -80481,7 +80529,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153 + 140, + 152 ] }, { @@ -80490,7 +80539,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153 + 153, + 142, + 143 ] }, { @@ -80499,7 +80550,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 154 + 153, + 142, + 143 ] }, { @@ -80508,7 +80561,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153 + 154 ] }, { @@ -80526,9 +80579,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153 ] }, { @@ -80537,10 +80588,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 154 ] }, { @@ -80549,10 +80597,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 153 ] }, { @@ -80561,9 +80606,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153 ] }, { @@ -80572,10 +80615,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 140, + 145, + 152 ] }, { @@ -80596,8 +80638,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -80606,8 +80650,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 140, + 145, + 152 ] }, { @@ -80617,7 +80662,9 @@ "replaceable": false, "collision_shapes": [ 153, - 147 + 142, + 143, + 145 ] }, { @@ -80626,8 +80673,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -80636,8 +80685,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 146, + 155 ] }, { @@ -80656,9 +80705,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153, + 147 ] }, { @@ -80667,10 +80715,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 146, + 155 ] }, { @@ -80680,9 +80726,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 145 + 147 ] }, { @@ -80691,9 +80735,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153, + 147 ] }, { @@ -80702,10 +80745,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 140, + 145, + 152 ] }, { @@ -80726,8 +80768,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -80736,8 +80780,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 140, + 145, + 152 ] }, { @@ -80747,7 +80792,9 @@ "replaceable": false, "collision_shapes": [ 153, - 147 + 142, + 143, + 145 ] }, { @@ -80756,8 +80803,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -80766,8 +80815,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 146, + 155 ] }, { @@ -80786,9 +80835,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 147 ] }, { @@ -80797,10 +80845,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 146, + 155 ] }, { @@ -80810,9 +80856,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148 + 147 ] }, { @@ -80821,9 +80865,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 147 ] }, { @@ -80832,10 +80875,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 140, + 148, + 152 ] }, { @@ -80856,8 +80898,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -80866,8 +80910,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 140, + 148, + 152 ] }, { @@ -80877,7 +80922,9 @@ "replaceable": false, "collision_shapes": [ 153, - 150 + 142, + 143, + 148 ] }, { @@ -80886,8 +80933,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -80896,8 +80945,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 149, + 155 ] }, { @@ -80916,10 +80965,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -80928,11 +80975,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 149, + 155 ] }, { @@ -80942,10 +80986,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150 ] }, { @@ -80954,10 +80995,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -80966,11 +81005,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -80992,8 +81030,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -81002,9 +81043,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -81014,8 +81056,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -81024,8 +81068,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -81034,9 +81081,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -81056,10 +81102,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -81068,11 +81113,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 151, + 155 ] }, { @@ -81082,10 +81124,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -81094,10 +81134,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -81106,11 +81145,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -81132,8 +81170,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -81142,9 +81183,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -81154,8 +81196,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -81164,8 +81208,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -81174,9 +81221,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -81196,9 +81242,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 150, + 147 ] }, { @@ -81207,10 +81253,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 151, + 155 ] }, { @@ -81220,9 +81264,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148 + 150, + 147 ] }, { @@ -81231,9 +81274,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 150, + 147 ] }, { @@ -81242,10 +81285,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 140, + 148, + 152 ] }, { @@ -81266,8 +81308,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -81276,8 +81320,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 140, + 148, + 152 ] }, { @@ -81287,7 +81332,9 @@ "replaceable": false, "collision_shapes": [ 153, - 150 + 142, + 143, + 148 ] }, { @@ -81296,8 +81343,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -81306,8 +81355,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 149, + 155 ] }, { @@ -81326,10 +81375,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -81338,11 +81385,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 149, + 155 ] }, { @@ -81352,10 +81396,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150 ] }, { @@ -81364,10 +81405,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -81376,11 +81415,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -81402,8 +81440,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -81412,9 +81453,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -81424,8 +81466,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -81434,8 +81478,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -81444,9 +81491,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -81466,10 +81512,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -81478,11 +81523,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 151, + 155 ] }, { @@ -81492,10 +81534,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -81504,10 +81544,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -81516,11 +81555,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -81542,8 +81580,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -81552,9 +81593,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -81564,8 +81606,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -81574,8 +81618,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -81584,9 +81631,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -81606,8 +81652,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 152 + 153, + 150, + 147 ] }, { @@ -81616,9 +81663,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143 + 151, + 155 ] }, { @@ -81628,8 +81674,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143 + 150, + 147 ] }, { @@ -81638,8 +81684,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 152 + 153, + 150, + 147 ] }, { @@ -81648,9 +81695,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143 + 140, + 152 ] }, { @@ -81670,7 +81716,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 154 + 153, + 142, + 143 ] }, { @@ -81679,7 +81727,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153 + 140, + 152 ] }, { @@ -81688,7 +81737,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153 + 153, + 142, + 143 ] }, { @@ -81697,7 +81748,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 154 + 153, + 142, + 143 ] }, { @@ -81706,7 +81759,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153 + 154 ] }, { @@ -81724,9 +81777,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153 ] }, { @@ -81735,10 +81786,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 154 ] }, { @@ -81747,10 +81795,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 153 ] }, { @@ -81759,9 +81804,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153 ] }, { @@ -81770,10 +81813,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 140, + 145, + 152 ] }, { @@ -81794,8 +81836,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -81804,8 +81848,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 140, + 145, + 152 ] }, { @@ -81815,7 +81860,9 @@ "replaceable": false, "collision_shapes": [ 153, - 147 + 142, + 143, + 145 ] }, { @@ -81824,8 +81871,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -81834,8 +81883,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 146, + 155 ] }, { @@ -81854,9 +81903,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153, + 147 ] }, { @@ -81865,10 +81913,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 146, + 155 ] }, { @@ -81878,9 +81924,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 145 + 147 ] }, { @@ -81889,9 +81933,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153, + 147 ] }, { @@ -81900,10 +81943,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 140, + 145, + 152 ] }, { @@ -81924,8 +81966,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -81934,8 +81978,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 140, + 145, + 152 ] }, { @@ -81945,7 +81990,9 @@ "replaceable": false, "collision_shapes": [ 153, - 147 + 142, + 143, + 145 ] }, { @@ -81954,8 +82001,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -81964,8 +82013,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 146, + 155 ] }, { @@ -81984,9 +82033,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 147 ] }, { @@ -81995,10 +82043,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 146, + 155 ] }, { @@ -82008,9 +82054,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148 + 147 ] }, { @@ -82019,9 +82063,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 147 ] }, { @@ -82030,10 +82073,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 140, + 148, + 152 ] }, { @@ -82054,8 +82096,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -82064,8 +82108,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 140, + 148, + 152 ] }, { @@ -82075,7 +82120,9 @@ "replaceable": false, "collision_shapes": [ 153, - 150 + 142, + 143, + 148 ] }, { @@ -82084,8 +82131,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -82094,8 +82143,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 149, + 155 ] }, { @@ -82114,10 +82163,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -82126,11 +82173,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 149, + 155 ] }, { @@ -82140,10 +82184,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150 ] }, { @@ -82152,10 +82193,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -82164,11 +82203,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -82190,8 +82228,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -82200,9 +82241,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -82212,8 +82254,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -82222,8 +82266,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -82232,9 +82279,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -82254,10 +82300,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -82266,11 +82311,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 151, + 155 ] }, { @@ -82280,10 +82322,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -82292,10 +82332,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -82304,11 +82343,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -82330,8 +82368,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -82340,9 +82381,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -82352,8 +82394,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -82362,8 +82406,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -82372,9 +82419,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -82394,9 +82440,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 150, + 147 ] }, { @@ -82405,10 +82451,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 151, + 155 ] }, { @@ -82418,9 +82462,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148 + 150, + 147 ] }, { @@ -82429,9 +82472,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 150, + 147 ] }, { @@ -82440,10 +82483,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 140, + 148, + 152 ] }, { @@ -82464,8 +82506,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -82474,8 +82518,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 140, + 148, + 152 ] }, { @@ -82485,7 +82530,9 @@ "replaceable": false, "collision_shapes": [ 153, - 150 + 142, + 143, + 148 ] }, { @@ -82494,8 +82541,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -82504,8 +82553,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 149, + 155 ] }, { @@ -82524,10 +82573,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -82536,11 +82583,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 149, + 155 ] }, { @@ -82550,10 +82594,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150 ] }, { @@ -82562,10 +82603,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -82574,11 +82613,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -82600,8 +82638,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -82610,9 +82651,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -82622,8 +82664,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -82632,8 +82676,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -82642,9 +82689,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -82664,10 +82710,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -82676,11 +82721,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 151, + 155 ] }, { @@ -82690,10 +82732,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -82702,10 +82742,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -82714,11 +82753,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -82740,8 +82778,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -82750,9 +82791,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -82762,8 +82804,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -82772,8 +82816,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -82782,9 +82829,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -82797,14 +82843,57 @@ 150, 147 ] + }, + { + "id": 8239, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 8240, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 8241, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 8242, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] } ] }, { - "id": 353, + "id": 354, "name": "mossy_cobblestone_wall", "translation_key": "block.minecraft.mossy_cobblestone_wall", - "item_id": 374, + "item_id": 376, "properties": [ { "name": "east", @@ -82853,57 +82942,15 @@ ] } ], - "default_state_id": 8242, + "default_state_id": 8246, "states": [ - { - "id": 8239, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140 - ] - }, - { - "id": 8240, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 8241, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 8242, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140 - ] - }, { "id": 8243, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 140 ] }, { @@ -82922,7 +82969,11 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 141, + 142, + 143 + ] }, { "id": 8246, @@ -82930,7 +82981,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144 + 140 ] }, { @@ -82939,7 +82990,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144 + 141, + 142, + 143 ] }, { @@ -82947,16 +83000,18 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 141, + 142, + 143 + ] }, { "id": 8249, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 144 - ] + "collision_shapes": [] }, { "id": 8250, @@ -82973,8 +83028,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145 + 144 ] }, { @@ -82982,12 +83036,7 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] + "collision_shapes": [] }, { "id": 8253, @@ -82995,10 +83044,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 145 + 144 ] }, { @@ -83007,8 +83053,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145 + 144 ] }, { @@ -83017,9 +83062,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 145 ] }, @@ -83041,7 +83084,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146 + 141, + 142, + 143, + 145 ] }, { @@ -83050,8 +83096,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 140, + 145 ] }, { @@ -83060,8 +83106,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 141, + 142, + 143, + 145 ] }, { @@ -83070,7 +83118,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146 + 141, + 142, + 143, + 145 ] }, { @@ -83079,8 +83130,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 146 ] }, { @@ -83099,8 +83149,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145 + 144, + 147 ] }, { @@ -83109,10 +83159,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 145 + 146 ] }, { @@ -83121,10 +83168,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 145 + 144, + 147 ] }, { @@ -83133,8 +83178,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145 + 144, + 147 ] }, { @@ -83143,9 +83188,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 145 ] }, @@ -83167,7 +83210,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146 + 141, + 142, + 143, + 145 ] }, { @@ -83176,8 +83222,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 140, + 145 ] }, { @@ -83186,8 +83232,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 141, + 142, + 143, + 145 ] }, { @@ -83196,7 +83244,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146 + 141, + 142, + 143, + 145 ] }, { @@ -83205,8 +83256,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 146 ] }, { @@ -83225,8 +83275,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148 + 144, + 147 ] }, { @@ -83235,10 +83285,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148 + 146 ] }, { @@ -83247,10 +83294,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148 + 144, + 147 ] }, { @@ -83259,8 +83304,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148 + 144, + 147 ] }, { @@ -83269,9 +83314,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 148 ] }, @@ -83293,7 +83336,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149 + 141, + 142, + 143, + 148 ] }, { @@ -83302,8 +83348,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150 + 140, + 148 ] }, { @@ -83312,8 +83358,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150 + 141, + 142, + 143, + 148 ] }, { @@ -83322,7 +83370,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149 + 141, + 142, + 143, + 148 ] }, { @@ -83331,8 +83382,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150 + 149 ] }, { @@ -83351,9 +83401,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150 ] }, { @@ -83362,11 +83411,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 149 ] }, { @@ -83375,11 +83420,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 144, + 150 ] }, { @@ -83388,9 +83430,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150 ] }, { @@ -83399,9 +83440,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 148, 145 ] @@ -83425,7 +83464,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -83434,9 +83477,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 140, + 148, + 145 ] }, { @@ -83445,9 +83488,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -83456,7 +83501,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -83465,9 +83514,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 151 ] }, { @@ -83487,9 +83534,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -83498,11 +83545,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 151 ] }, { @@ -83511,11 +83554,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -83524,9 +83565,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -83535,9 +83576,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 148, 145 ] @@ -83561,7 +83600,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -83570,9 +83613,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 140, + 148, + 145 ] }, { @@ -83581,9 +83624,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -83592,7 +83637,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -83601,9 +83650,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 151 ] }, { @@ -83623,8 +83670,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148 + 144, + 150, + 147 ] }, { @@ -83633,10 +83681,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148 + 151 ] }, { @@ -83645,10 +83690,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148 + 144, + 150, + 147 ] }, { @@ -83657,8 +83701,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148 + 144, + 150, + 147 ] }, { @@ -83667,9 +83712,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 148 ] }, @@ -83691,7 +83734,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149 + 141, + 142, + 143, + 148 ] }, { @@ -83700,8 +83746,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150 + 140, + 148 ] }, { @@ -83710,8 +83756,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150 + 141, + 142, + 143, + 148 ] }, { @@ -83720,7 +83768,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149 + 141, + 142, + 143, + 148 ] }, { @@ -83729,8 +83780,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150 + 149 ] }, { @@ -83749,9 +83799,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150 ] }, { @@ -83760,11 +83809,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 149 ] }, { @@ -83773,11 +83818,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 144, + 150 ] }, { @@ -83786,9 +83828,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150 ] }, { @@ -83797,9 +83838,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 148, 145 ] @@ -83823,7 +83862,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -83832,9 +83875,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 140, + 148, + 145 ] }, { @@ -83843,9 +83886,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -83854,7 +83899,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -83863,9 +83912,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 151 ] }, { @@ -83885,9 +83932,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -83896,11 +83943,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 151 ] }, { @@ -83909,11 +83952,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -83922,9 +83963,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -83933,9 +83974,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, + 140, 148, 145 ] @@ -83959,7 +83998,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -83968,9 +84011,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 140, + 148, + 145 ] }, { @@ -83979,9 +84022,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -83990,7 +84035,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -83999,9 +84048,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 151 ] }, { @@ -84021,8 +84068,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 152 + 144, + 150, + 147 ] }, { @@ -84031,9 +84079,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143 + 151 ] }, { @@ -84042,9 +84088,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143 + 144, + 150, + 147 ] }, { @@ -84053,8 +84099,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 152 + 144, + 150, + 147 ] }, { @@ -84063,9 +84110,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143 + 140, + 152 ] }, { @@ -84085,7 +84131,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 154 + 153, + 142, + 143 ] }, { @@ -84094,7 +84142,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153 + 140, + 152 ] }, { @@ -84103,7 +84152,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153 + 153, + 142, + 143 ] }, { @@ -84112,7 +84163,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 154 + 153, + 142, + 143 ] }, { @@ -84121,7 +84174,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153 + 154 ] }, { @@ -84139,9 +84192,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153 ] }, { @@ -84150,10 +84201,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 154 ] }, { @@ -84162,10 +84210,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 153 ] }, { @@ -84174,9 +84219,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153 ] }, { @@ -84185,10 +84228,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 140, + 145, + 152 ] }, { @@ -84209,8 +84251,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -84219,8 +84263,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 140, + 145, + 152 ] }, { @@ -84230,7 +84275,9 @@ "replaceable": false, "collision_shapes": [ 153, - 147 + 142, + 143, + 145 ] }, { @@ -84239,8 +84286,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -84249,8 +84298,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 146, + 155 ] }, { @@ -84269,9 +84318,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153, + 147 ] }, { @@ -84280,10 +84328,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 146, + 155 ] }, { @@ -84293,9 +84339,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 145 + 147 ] }, { @@ -84304,9 +84348,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153, + 147 ] }, { @@ -84315,10 +84358,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 140, + 145, + 152 ] }, { @@ -84339,8 +84381,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -84349,8 +84393,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 140, + 145, + 152 ] }, { @@ -84360,7 +84405,9 @@ "replaceable": false, "collision_shapes": [ 153, - 147 + 142, + 143, + 145 ] }, { @@ -84369,8 +84416,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -84379,8 +84428,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 146, + 155 ] }, { @@ -84399,9 +84448,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 147 ] }, { @@ -84410,10 +84458,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 146, + 155 ] }, { @@ -84423,9 +84469,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148 + 147 ] }, { @@ -84434,9 +84478,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 147 ] }, { @@ -84445,10 +84488,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 140, + 148, + 152 ] }, { @@ -84469,8 +84511,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -84479,8 +84523,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 140, + 148, + 152 ] }, { @@ -84490,7 +84535,9 @@ "replaceable": false, "collision_shapes": [ 153, - 150 + 142, + 143, + 148 ] }, { @@ -84499,8 +84546,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -84509,8 +84558,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 149, + 155 ] }, { @@ -84529,10 +84578,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -84541,11 +84588,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 149, + 155 ] }, { @@ -84555,10 +84599,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150 ] }, { @@ -84567,10 +84608,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -84579,11 +84618,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -84605,8 +84643,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -84615,9 +84656,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -84627,8 +84669,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -84637,8 +84681,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -84647,9 +84694,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -84669,10 +84715,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -84681,11 +84726,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 151, + 155 ] }, { @@ -84695,10 +84737,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -84707,10 +84747,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -84719,11 +84758,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -84745,8 +84783,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -84755,9 +84796,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -84767,8 +84809,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -84777,8 +84821,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -84787,9 +84834,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -84809,9 +84855,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 150, + 147 ] }, { @@ -84820,10 +84866,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 151, + 155 ] }, { @@ -84833,9 +84877,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148 + 150, + 147 ] }, { @@ -84844,9 +84887,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 150, + 147 ] }, { @@ -84855,10 +84898,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 140, + 148, + 152 ] }, { @@ -84879,8 +84921,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -84889,8 +84933,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 140, + 148, + 152 ] }, { @@ -84900,7 +84945,9 @@ "replaceable": false, "collision_shapes": [ 153, - 150 + 142, + 143, + 148 ] }, { @@ -84909,8 +84956,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -84919,8 +84968,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 149, + 155 ] }, { @@ -84939,10 +84988,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -84951,11 +84998,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 149, + 155 ] }, { @@ -84965,10 +85009,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150 ] }, { @@ -84977,10 +85018,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -84989,11 +85028,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -85015,8 +85053,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -85025,9 +85066,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -85037,8 +85079,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -85047,8 +85091,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -85057,9 +85104,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -85079,10 +85125,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -85091,11 +85136,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 151, + 155 ] }, { @@ -85105,10 +85147,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -85117,10 +85157,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -85129,11 +85168,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -85155,8 +85193,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -85165,9 +85206,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -85177,8 +85219,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -85187,8 +85231,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -85197,9 +85244,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -85219,8 +85265,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 152 + 153, + 150, + 147 ] }, { @@ -85229,9 +85276,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143 + 151, + 155 ] }, { @@ -85241,8 +85287,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143 + 150, + 147 ] }, { @@ -85251,8 +85297,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 152 + 153, + 150, + 147 ] }, { @@ -85261,9 +85308,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143 + 140, + 152 ] }, { @@ -85283,7 +85329,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 154 + 153, + 142, + 143 ] }, { @@ -85292,7 +85340,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153 + 140, + 152 ] }, { @@ -85301,7 +85350,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153 + 153, + 142, + 143 ] }, { @@ -85310,7 +85361,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 154 + 153, + 142, + 143 ] }, { @@ -85319,7 +85372,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153 + 154 ] }, { @@ -85337,9 +85390,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153 ] }, { @@ -85348,10 +85399,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 154 ] }, { @@ -85360,10 +85408,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 153 ] }, { @@ -85372,9 +85417,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153 ] }, { @@ -85383,10 +85426,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 140, + 145, + 152 ] }, { @@ -85407,8 +85449,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -85417,8 +85461,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 140, + 145, + 152 ] }, { @@ -85428,7 +85473,9 @@ "replaceable": false, "collision_shapes": [ 153, - 147 + 142, + 143, + 145 ] }, { @@ -85437,8 +85484,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -85447,8 +85496,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 146, + 155 ] }, { @@ -85467,9 +85516,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153, + 147 ] }, { @@ -85478,10 +85526,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 146, + 155 ] }, { @@ -85491,9 +85537,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 145 + 147 ] }, { @@ -85502,9 +85546,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 153, + 147 ] }, { @@ -85513,10 +85556,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 145 + 140, + 145, + 152 ] }, { @@ -85537,8 +85579,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -85547,8 +85591,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 140, + 145, + 152 ] }, { @@ -85558,7 +85603,9 @@ "replaceable": false, "collision_shapes": [ 153, - 147 + 142, + 143, + 145 ] }, { @@ -85567,8 +85614,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 153, + 142, + 143, + 145 ] }, { @@ -85577,8 +85626,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 147 + 146, + 155 ] }, { @@ -85597,9 +85646,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 147 ] }, { @@ -85608,10 +85656,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 146, + 155 ] }, { @@ -85621,9 +85667,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148 + 147 ] }, { @@ -85632,9 +85676,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 147 ] }, { @@ -85643,10 +85686,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 140, + 148, + 152 ] }, { @@ -85667,8 +85709,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -85677,8 +85721,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 140, + 148, + 152 ] }, { @@ -85688,7 +85733,9 @@ "replaceable": false, "collision_shapes": [ 153, - 150 + 142, + 143, + 148 ] }, { @@ -85697,8 +85744,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -85707,8 +85756,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 149, + 155 ] }, { @@ -85727,10 +85776,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -85739,11 +85786,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 149, + 155 ] }, { @@ -85753,10 +85797,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150 ] }, { @@ -85765,10 +85806,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -85777,11 +85816,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -85803,8 +85841,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -85813,9 +85854,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -85825,8 +85867,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -85835,8 +85879,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -85845,9 +85892,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -85867,10 +85913,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -85879,11 +85924,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 151, + 155 ] }, { @@ -85893,10 +85935,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -85905,10 +85945,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -85917,11 +85956,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -85943,8 +85981,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -85953,9 +85994,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -85965,8 +86007,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -85975,8 +86019,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -85985,9 +86032,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -86007,9 +86053,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 150, + 147 ] }, { @@ -86018,10 +86064,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 151, + 155 ] }, { @@ -86031,9 +86075,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148 + 150, + 147 ] }, { @@ -86042,9 +86085,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 152 + 153, + 150, + 147 ] }, { @@ -86053,10 +86096,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148 + 140, + 148, + 152 ] }, { @@ -86077,8 +86119,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -86087,8 +86131,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 140, + 148, + 152 ] }, { @@ -86098,7 +86143,9 @@ "replaceable": false, "collision_shapes": [ 153, - 150 + 142, + 143, + 148 ] }, { @@ -86107,8 +86154,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 149, - 155 + 153, + 142, + 143, + 148 ] }, { @@ -86117,8 +86166,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150 + 149, + 155 ] }, { @@ -86137,10 +86186,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -86149,11 +86196,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 149, + 155 ] }, { @@ -86163,10 +86207,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150 ] }, { @@ -86175,10 +86216,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150 ] }, { @@ -86187,11 +86226,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -86213,8 +86251,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -86223,9 +86264,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -86235,8 +86277,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -86245,8 +86289,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -86255,9 +86302,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -86277,10 +86323,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -86289,11 +86334,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 151, + 155 ] }, { @@ -86303,10 +86345,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -86315,10 +86355,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 153, + 150, + 147 ] }, { @@ -86327,11 +86366,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, + 140, 148, - 145 + 145, + 152 ] }, { @@ -86353,8 +86391,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -86363,9 +86404,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 140, + 148, + 145, + 152 ] }, { @@ -86375,8 +86417,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -86385,8 +86429,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 153, + 142, + 143, + 148, + 145 ] }, { @@ -86395,9 +86442,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 150, - 147 + 151, + 155 ] }, { @@ -86410,90 +86456,57 @@ 150, 147 ] - } - ] - }, - { - "id": 354, - "name": "flower_pot", - "translation_key": "block.minecraft.flower_pot", - "item_id": 1046, - "properties": [], - "default_state_id": 8563, - "states": [ + }, { "id": 8563, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 156 + 153, + 150, + 147 + ] + }, + { + "id": 8564, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 8565, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 8566, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 ] } ] }, { "id": 355, - "name": "potted_torchflower", - "translation_key": "block.minecraft.potted_torchflower", - "item_id": 0, - "properties": [], - "default_state_id": 8564, - "states": [ - { - "id": 8564, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 156 - ] - } - ] - }, - { - "id": 356, - "name": "potted_oak_sapling", - "translation_key": "block.minecraft.potted_oak_sapling", - "item_id": 0, - "properties": [], - "default_state_id": 8565, - "states": [ - { - "id": 8565, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 156 - ] - } - ] - }, - { - "id": 357, - "name": "potted_spruce_sapling", - "translation_key": "block.minecraft.potted_spruce_sapling", - "item_id": 0, - "properties": [], - "default_state_id": 8566, - "states": [ - { - "id": 8566, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 156 - ] - } - ] - }, - { - "id": 358, - "name": "potted_birch_sapling", - "translation_key": "block.minecraft.potted_birch_sapling", - "item_id": 0, + "name": "flower_pot", + "translation_key": "block.minecraft.flower_pot", + "item_id": 1050, "properties": [], "default_state_id": 8567, "states": [ @@ -86509,9 +86522,9 @@ ] }, { - "id": 359, - "name": "potted_jungle_sapling", - "translation_key": "block.minecraft.potted_jungle_sapling", + "id": 356, + "name": "potted_torchflower", + "translation_key": "block.minecraft.potted_torchflower", "item_id": 0, "properties": [], "default_state_id": 8568, @@ -86528,9 +86541,9 @@ ] }, { - "id": 360, - "name": "potted_acacia_sapling", - "translation_key": "block.minecraft.potted_acacia_sapling", + "id": 357, + "name": "potted_oak_sapling", + "translation_key": "block.minecraft.potted_oak_sapling", "item_id": 0, "properties": [], "default_state_id": 8569, @@ -86547,9 +86560,9 @@ ] }, { - "id": 361, - "name": "potted_cherry_sapling", - "translation_key": "block.minecraft.potted_cherry_sapling", + "id": 358, + "name": "potted_spruce_sapling", + "translation_key": "block.minecraft.potted_spruce_sapling", "item_id": 0, "properties": [], "default_state_id": 8570, @@ -86566,9 +86579,9 @@ ] }, { - "id": 362, - "name": "potted_dark_oak_sapling", - "translation_key": "block.minecraft.potted_dark_oak_sapling", + "id": 359, + "name": "potted_birch_sapling", + "translation_key": "block.minecraft.potted_birch_sapling", "item_id": 0, "properties": [], "default_state_id": 8571, @@ -86585,9 +86598,9 @@ ] }, { - "id": 363, - "name": "potted_mangrove_propagule", - "translation_key": "block.minecraft.potted_mangrove_propagule", + "id": 360, + "name": "potted_jungle_sapling", + "translation_key": "block.minecraft.potted_jungle_sapling", "item_id": 0, "properties": [], "default_state_id": 8572, @@ -86604,9 +86617,9 @@ ] }, { - "id": 364, - "name": "potted_fern", - "translation_key": "block.minecraft.potted_fern", + "id": 361, + "name": "potted_acacia_sapling", + "translation_key": "block.minecraft.potted_acacia_sapling", "item_id": 0, "properties": [], "default_state_id": 8573, @@ -86623,9 +86636,9 @@ ] }, { - "id": 365, - "name": "potted_dandelion", - "translation_key": "block.minecraft.potted_dandelion", + "id": 362, + "name": "potted_cherry_sapling", + "translation_key": "block.minecraft.potted_cherry_sapling", "item_id": 0, "properties": [], "default_state_id": 8574, @@ -86642,9 +86655,9 @@ ] }, { - "id": 366, - "name": "potted_poppy", - "translation_key": "block.minecraft.potted_poppy", + "id": 363, + "name": "potted_dark_oak_sapling", + "translation_key": "block.minecraft.potted_dark_oak_sapling", "item_id": 0, "properties": [], "default_state_id": 8575, @@ -86661,9 +86674,9 @@ ] }, { - "id": 367, - "name": "potted_blue_orchid", - "translation_key": "block.minecraft.potted_blue_orchid", + "id": 364, + "name": "potted_mangrove_propagule", + "translation_key": "block.minecraft.potted_mangrove_propagule", "item_id": 0, "properties": [], "default_state_id": 8576, @@ -86680,9 +86693,9 @@ ] }, { - "id": 368, - "name": "potted_allium", - "translation_key": "block.minecraft.potted_allium", + "id": 365, + "name": "potted_fern", + "translation_key": "block.minecraft.potted_fern", "item_id": 0, "properties": [], "default_state_id": 8577, @@ -86699,9 +86712,9 @@ ] }, { - "id": 369, - "name": "potted_azure_bluet", - "translation_key": "block.minecraft.potted_azure_bluet", + "id": 366, + "name": "potted_dandelion", + "translation_key": "block.minecraft.potted_dandelion", "item_id": 0, "properties": [], "default_state_id": 8578, @@ -86718,9 +86731,9 @@ ] }, { - "id": 370, - "name": "potted_red_tulip", - "translation_key": "block.minecraft.potted_red_tulip", + "id": 367, + "name": "potted_poppy", + "translation_key": "block.minecraft.potted_poppy", "item_id": 0, "properties": [], "default_state_id": 8579, @@ -86737,9 +86750,9 @@ ] }, { - "id": 371, - "name": "potted_orange_tulip", - "translation_key": "block.minecraft.potted_orange_tulip", + "id": 368, + "name": "potted_blue_orchid", + "translation_key": "block.minecraft.potted_blue_orchid", "item_id": 0, "properties": [], "default_state_id": 8580, @@ -86756,9 +86769,9 @@ ] }, { - "id": 372, - "name": "potted_white_tulip", - "translation_key": "block.minecraft.potted_white_tulip", + "id": 369, + "name": "potted_allium", + "translation_key": "block.minecraft.potted_allium", "item_id": 0, "properties": [], "default_state_id": 8581, @@ -86775,9 +86788,9 @@ ] }, { - "id": 373, - "name": "potted_pink_tulip", - "translation_key": "block.minecraft.potted_pink_tulip", + "id": 370, + "name": "potted_azure_bluet", + "translation_key": "block.minecraft.potted_azure_bluet", "item_id": 0, "properties": [], "default_state_id": 8582, @@ -86794,9 +86807,9 @@ ] }, { - "id": 374, - "name": "potted_oxeye_daisy", - "translation_key": "block.minecraft.potted_oxeye_daisy", + "id": 371, + "name": "potted_red_tulip", + "translation_key": "block.minecraft.potted_red_tulip", "item_id": 0, "properties": [], "default_state_id": 8583, @@ -86813,9 +86826,9 @@ ] }, { - "id": 375, - "name": "potted_cornflower", - "translation_key": "block.minecraft.potted_cornflower", + "id": 372, + "name": "potted_orange_tulip", + "translation_key": "block.minecraft.potted_orange_tulip", "item_id": 0, "properties": [], "default_state_id": 8584, @@ -86832,9 +86845,9 @@ ] }, { - "id": 376, - "name": "potted_lily_of_the_valley", - "translation_key": "block.minecraft.potted_lily_of_the_valley", + "id": 373, + "name": "potted_white_tulip", + "translation_key": "block.minecraft.potted_white_tulip", "item_id": 0, "properties": [], "default_state_id": 8585, @@ -86851,9 +86864,9 @@ ] }, { - "id": 377, - "name": "potted_wither_rose", - "translation_key": "block.minecraft.potted_wither_rose", + "id": 374, + "name": "potted_pink_tulip", + "translation_key": "block.minecraft.potted_pink_tulip", "item_id": 0, "properties": [], "default_state_id": 8586, @@ -86870,9 +86883,9 @@ ] }, { - "id": 378, - "name": "potted_red_mushroom", - "translation_key": "block.minecraft.potted_red_mushroom", + "id": 375, + "name": "potted_oxeye_daisy", + "translation_key": "block.minecraft.potted_oxeye_daisy", "item_id": 0, "properties": [], "default_state_id": 8587, @@ -86889,9 +86902,9 @@ ] }, { - "id": 379, - "name": "potted_brown_mushroom", - "translation_key": "block.minecraft.potted_brown_mushroom", + "id": 376, + "name": "potted_cornflower", + "translation_key": "block.minecraft.potted_cornflower", "item_id": 0, "properties": [], "default_state_id": 8588, @@ -86908,9 +86921,9 @@ ] }, { - "id": 380, - "name": "potted_dead_bush", - "translation_key": "block.minecraft.potted_dead_bush", + "id": 377, + "name": "potted_lily_of_the_valley", + "translation_key": "block.minecraft.potted_lily_of_the_valley", "item_id": 0, "properties": [], "default_state_id": 8589, @@ -86927,9 +86940,9 @@ ] }, { - "id": 381, - "name": "potted_cactus", - "translation_key": "block.minecraft.potted_cactus", + "id": 378, + "name": "potted_wither_rose", + "translation_key": "block.minecraft.potted_wither_rose", "item_id": 0, "properties": [], "default_state_id": 8590, @@ -86945,11 +86958,87 @@ } ] }, + { + "id": 379, + "name": "potted_red_mushroom", + "translation_key": "block.minecraft.potted_red_mushroom", + "item_id": 0, + "properties": [], + "default_state_id": 8591, + "states": [ + { + "id": 8591, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 156 + ] + } + ] + }, + { + "id": 380, + "name": "potted_brown_mushroom", + "translation_key": "block.minecraft.potted_brown_mushroom", + "item_id": 0, + "properties": [], + "default_state_id": 8592, + "states": [ + { + "id": 8592, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 156 + ] + } + ] + }, + { + "id": 381, + "name": "potted_dead_bush", + "translation_key": "block.minecraft.potted_dead_bush", + "item_id": 0, + "properties": [], + "default_state_id": 8593, + "states": [ + { + "id": 8593, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 156 + ] + } + ] + }, { "id": 382, + "name": "potted_cactus", + "translation_key": "block.minecraft.potted_cactus", + "item_id": 0, + "properties": [], + "default_state_id": 8594, + "states": [ + { + "id": 8594, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 156 + ] + } + ] + }, + { + "id": 383, "name": "carrots", "translation_key": "block.minecraft.carrots", - "item_id": 1047, + "item_id": 1051, "properties": [ { "name": "age", @@ -86965,36 +87054,8 @@ ] } ], - "default_state_id": 8591, + "default_state_id": 8595, "states": [ - { - "id": 8591, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 8592, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 8593, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 8594, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 8595, "luminance": 0, @@ -87022,31 +87083,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 383, - "name": "potatoes", - "translation_key": "block.minecraft.potatoes", - "item_id": 1048, - "properties": [ - { - "name": "age", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7" - ] - } - ], - "default_state_id": 8599, - "states": [ + }, { "id": 8599, "luminance": 0, @@ -87074,7 +87111,31 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - }, + } + ] + }, + { + "id": 384, + "name": "potatoes", + "translation_key": "block.minecraft.potatoes", + "item_id": 1052, + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + } + ], + "default_state_id": 8603, + "states": [ { "id": 8603, "luminance": 0, @@ -87102,42 +87163,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 384, - "name": "oak_button", - "translation_key": "block.minecraft.oak_button", - "item_id": 658, - "properties": [ - { - "name": "face", - "values": [ - "floor", - "wall", - "ceiling" - ] }, - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 8616, - "states": [ { "id": 8607, "luminance": 0, @@ -87165,7 +87191,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 385, + "name": "oak_button", + "translation_key": "block.minecraft.oak_button", + "item_id": 662, + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8620, + "states": [ { "id": 8611, "luminance": 0, @@ -87305,42 +87366,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 385, - "name": "spruce_button", - "translation_key": "block.minecraft.spruce_button", - "item_id": 659, - "properties": [ - { - "name": "face", - "values": [ - "floor", - "wall", - "ceiling" - ] }, - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 8640, - "states": [ { "id": 8631, "luminance": 0, @@ -87368,7 +87394,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 386, + "name": "spruce_button", + "translation_key": "block.minecraft.spruce_button", + "item_id": 663, + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8644, + "states": [ { "id": 8635, "luminance": 0, @@ -87508,42 +87569,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 386, - "name": "birch_button", - "translation_key": "block.minecraft.birch_button", - "item_id": 660, - "properties": [ - { - "name": "face", - "values": [ - "floor", - "wall", - "ceiling" - ] }, - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 8664, - "states": [ { "id": 8655, "luminance": 0, @@ -87571,7 +87597,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 387, + "name": "birch_button", + "translation_key": "block.minecraft.birch_button", + "item_id": 664, + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8668, + "states": [ { "id": 8659, "luminance": 0, @@ -87711,42 +87772,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 387, - "name": "jungle_button", - "translation_key": "block.minecraft.jungle_button", - "item_id": 661, - "properties": [ - { - "name": "face", - "values": [ - "floor", - "wall", - "ceiling" - ] }, - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 8688, - "states": [ { "id": 8679, "luminance": 0, @@ -87774,7 +87800,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 388, + "name": "jungle_button", + "translation_key": "block.minecraft.jungle_button", + "item_id": 665, + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8692, + "states": [ { "id": 8683, "luminance": 0, @@ -87914,42 +87975,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 388, - "name": "acacia_button", - "translation_key": "block.minecraft.acacia_button", - "item_id": 662, - "properties": [ - { - "name": "face", - "values": [ - "floor", - "wall", - "ceiling" - ] }, - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 8712, - "states": [ { "id": 8703, "luminance": 0, @@ -87977,7 +88003,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 389, + "name": "acacia_button", + "translation_key": "block.minecraft.acacia_button", + "item_id": 666, + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8716, + "states": [ { "id": 8707, "luminance": 0, @@ -88117,42 +88178,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 389, - "name": "cherry_button", - "translation_key": "block.minecraft.cherry_button", - "item_id": 663, - "properties": [ - { - "name": "face", - "values": [ - "floor", - "wall", - "ceiling" - ] }, - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 8736, - "states": [ { "id": 8727, "luminance": 0, @@ -88180,7 +88206,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 390, + "name": "cherry_button", + "translation_key": "block.minecraft.cherry_button", + "item_id": 667, + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8740, + "states": [ { "id": 8731, "luminance": 0, @@ -88320,42 +88381,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 390, - "name": "dark_oak_button", - "translation_key": "block.minecraft.dark_oak_button", - "item_id": 664, - "properties": [ - { - "name": "face", - "values": [ - "floor", - "wall", - "ceiling" - ] }, - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 8760, - "states": [ { "id": 8751, "luminance": 0, @@ -88383,7 +88409,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 391, + "name": "dark_oak_button", + "translation_key": "block.minecraft.dark_oak_button", + "item_id": 668, + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8764, + "states": [ { "id": 8755, "luminance": 0, @@ -88523,42 +88584,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 391, - "name": "mangrove_button", - "translation_key": "block.minecraft.mangrove_button", - "item_id": 665, - "properties": [ - { - "name": "face", - "values": [ - "floor", - "wall", - "ceiling" - ] }, - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 8784, - "states": [ { "id": 8775, "luminance": 0, @@ -88586,7 +88612,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 392, + "name": "mangrove_button", + "translation_key": "block.minecraft.mangrove_button", + "item_id": 669, + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8788, + "states": [ { "id": 8779, "luminance": 0, @@ -88726,42 +88787,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 392, - "name": "bamboo_button", - "translation_key": "block.minecraft.bamboo_button", - "item_id": 666, - "properties": [ - { - "name": "face", - "values": [ - "floor", - "wall", - "ceiling" - ] }, - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 8808, - "states": [ { "id": 8799, "luminance": 0, @@ -88789,7 +88815,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 393, + "name": "bamboo_button", + "translation_key": "block.minecraft.bamboo_button", + "item_id": 670, + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 8812, + "states": [ { "id": 8803, "luminance": 0, @@ -88929,15 +88990,43 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 8823, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 8824, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 8825, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 8826, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 393, + "id": 394, "name": "skeleton_skull", "translation_key": "block.minecraft.skeleton_skull", - "item_id": 1053, - "wall_variant_id": 394, + "item_id": 1057, + "wall_variant_id": 395, "properties": [ { "name": "rotation", @@ -88961,48 +89050,8 @@ ] } ], - "default_state_id": 8823, + "default_state_id": 8827, "states": [ - { - "id": 8823, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8824, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8825, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8826, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, { "id": 8827, "luminance": 0, @@ -89122,14 +89171,54 @@ 157 ], "block_entity_type": 15 + }, + { + "id": 8839, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8840, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8841, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8842, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 } ] }, { - "id": 394, + "id": 395, "name": "skeleton_wall_skull", "translation_key": "block.minecraft.skeleton_skull", - "item_id": 1053, + "item_id": 1057, "properties": [ { "name": "facing", @@ -89141,10 +89230,10 @@ ] } ], - "default_state_id": 8839, + "default_state_id": 8843, "states": [ { - "id": 8839, + "id": 8843, "luminance": 0, "opaque": true, "replaceable": false, @@ -89154,7 +89243,7 @@ "block_entity_type": 15 }, { - "id": 8840, + "id": 8844, "luminance": 0, "opaque": true, "replaceable": false, @@ -89164,7 +89253,7 @@ "block_entity_type": 15 }, { - "id": 8841, + "id": 8845, "luminance": 0, "opaque": true, "replaceable": false, @@ -89174,7 +89263,7 @@ "block_entity_type": 15 }, { - "id": 8842, + "id": 8846, "luminance": 0, "opaque": true, "replaceable": false, @@ -89186,11 +89275,11 @@ ] }, { - "id": 395, + "id": 396, "name": "wither_skeleton_skull", "translation_key": "block.minecraft.wither_skeleton_skull", - "item_id": 1054, - "wall_variant_id": 396, + "item_id": 1058, + "wall_variant_id": 397, "properties": [ { "name": "rotation", @@ -89214,48 +89303,8 @@ ] } ], - "default_state_id": 8843, + "default_state_id": 8847, "states": [ - { - "id": 8843, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8844, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8845, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8846, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, { "id": 8847, "luminance": 0, @@ -89375,14 +89424,54 @@ 157 ], "block_entity_type": 15 + }, + { + "id": 8859, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8860, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8861, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8862, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 } ] }, { - "id": 396, + "id": 397, "name": "wither_skeleton_wall_skull", "translation_key": "block.minecraft.wither_skeleton_skull", - "item_id": 1054, + "item_id": 1058, "properties": [ { "name": "facing", @@ -89394,10 +89483,10 @@ ] } ], - "default_state_id": 8859, + "default_state_id": 8863, "states": [ { - "id": 8859, + "id": 8863, "luminance": 0, "opaque": true, "replaceable": false, @@ -89407,7 +89496,7 @@ "block_entity_type": 15 }, { - "id": 8860, + "id": 8864, "luminance": 0, "opaque": true, "replaceable": false, @@ -89417,7 +89506,7 @@ "block_entity_type": 15 }, { - "id": 8861, + "id": 8865, "luminance": 0, "opaque": true, "replaceable": false, @@ -89427,7 +89516,7 @@ "block_entity_type": 15 }, { - "id": 8862, + "id": 8866, "luminance": 0, "opaque": true, "replaceable": false, @@ -89439,11 +89528,11 @@ ] }, { - "id": 397, + "id": 398, "name": "zombie_head", "translation_key": "block.minecraft.zombie_head", - "item_id": 1056, - "wall_variant_id": 398, + "item_id": 1060, + "wall_variant_id": 399, "properties": [ { "name": "rotation", @@ -89467,48 +89556,8 @@ ] } ], - "default_state_id": 8863, + "default_state_id": 8867, "states": [ - { - "id": 8863, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8864, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8865, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8866, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, { "id": 8867, "luminance": 0, @@ -89628,14 +89677,54 @@ 157 ], "block_entity_type": 15 + }, + { + "id": 8879, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8880, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8881, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8882, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 } ] }, { - "id": 398, + "id": 399, "name": "zombie_wall_head", "translation_key": "block.minecraft.zombie_head", - "item_id": 1056, + "item_id": 1060, "properties": [ { "name": "facing", @@ -89647,10 +89736,10 @@ ] } ], - "default_state_id": 8879, + "default_state_id": 8883, "states": [ { - "id": 8879, + "id": 8883, "luminance": 0, "opaque": true, "replaceable": false, @@ -89660,7 +89749,7 @@ "block_entity_type": 15 }, { - "id": 8880, + "id": 8884, "luminance": 0, "opaque": true, "replaceable": false, @@ -89670,7 +89759,7 @@ "block_entity_type": 15 }, { - "id": 8881, + "id": 8885, "luminance": 0, "opaque": true, "replaceable": false, @@ -89680,7 +89769,7 @@ "block_entity_type": 15 }, { - "id": 8882, + "id": 8886, "luminance": 0, "opaque": true, "replaceable": false, @@ -89692,11 +89781,11 @@ ] }, { - "id": 399, + "id": 400, "name": "player_head", "translation_key": "block.minecraft.player_head", - "item_id": 1055, - "wall_variant_id": 400, + "item_id": 1059, + "wall_variant_id": 401, "properties": [ { "name": "rotation", @@ -89720,48 +89809,8 @@ ] } ], - "default_state_id": 8883, + "default_state_id": 8887, "states": [ - { - "id": 8883, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8884, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8885, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8886, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, { "id": 8887, "luminance": 0, @@ -89881,14 +89930,54 @@ 157 ], "block_entity_type": 15 + }, + { + "id": 8899, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8900, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8901, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8902, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 } ] }, { - "id": 400, + "id": 401, "name": "player_wall_head", "translation_key": "block.minecraft.player_head", - "item_id": 1055, + "item_id": 1059, "properties": [ { "name": "facing", @@ -89900,10 +89989,10 @@ ] } ], - "default_state_id": 8899, + "default_state_id": 8903, "states": [ { - "id": 8899, + "id": 8903, "luminance": 0, "opaque": true, "replaceable": false, @@ -89913,7 +90002,7 @@ "block_entity_type": 15 }, { - "id": 8900, + "id": 8904, "luminance": 0, "opaque": true, "replaceable": false, @@ -89923,7 +90012,7 @@ "block_entity_type": 15 }, { - "id": 8901, + "id": 8905, "luminance": 0, "opaque": true, "replaceable": false, @@ -89933,7 +90022,7 @@ "block_entity_type": 15 }, { - "id": 8902, + "id": 8906, "luminance": 0, "opaque": true, "replaceable": false, @@ -89945,11 +90034,11 @@ ] }, { - "id": 401, + "id": 402, "name": "creeper_head", "translation_key": "block.minecraft.creeper_head", - "item_id": 1057, - "wall_variant_id": 402, + "item_id": 1061, + "wall_variant_id": 403, "properties": [ { "name": "rotation", @@ -89973,48 +90062,8 @@ ] } ], - "default_state_id": 8903, + "default_state_id": 8907, "states": [ - { - "id": 8903, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8904, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8905, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8906, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, { "id": 8907, "luminance": 0, @@ -90134,14 +90183,54 @@ 157 ], "block_entity_type": 15 + }, + { + "id": 8919, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8920, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8921, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8922, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 } ] }, { - "id": 402, + "id": 403, "name": "creeper_wall_head", "translation_key": "block.minecraft.creeper_head", - "item_id": 1057, + "item_id": 1061, "properties": [ { "name": "facing", @@ -90153,10 +90242,10 @@ ] } ], - "default_state_id": 8919, + "default_state_id": 8923, "states": [ { - "id": 8919, + "id": 8923, "luminance": 0, "opaque": true, "replaceable": false, @@ -90166,7 +90255,7 @@ "block_entity_type": 15 }, { - "id": 8920, + "id": 8924, "luminance": 0, "opaque": true, "replaceable": false, @@ -90176,7 +90265,7 @@ "block_entity_type": 15 }, { - "id": 8921, + "id": 8925, "luminance": 0, "opaque": true, "replaceable": false, @@ -90186,7 +90275,7 @@ "block_entity_type": 15 }, { - "id": 8922, + "id": 8926, "luminance": 0, "opaque": true, "replaceable": false, @@ -90198,11 +90287,11 @@ ] }, { - "id": 403, + "id": 404, "name": "dragon_head", "translation_key": "block.minecraft.dragon_head", - "item_id": 1058, - "wall_variant_id": 404, + "item_id": 1062, + "wall_variant_id": 405, "properties": [ { "name": "rotation", @@ -90226,48 +90315,8 @@ ] } ], - "default_state_id": 8923, + "default_state_id": 8927, "states": [ - { - "id": 8923, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8924, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8925, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, - { - "id": 8926, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 157 - ], - "block_entity_type": 15 - }, { "id": 8927, "luminance": 0, @@ -90387,14 +90436,54 @@ 157 ], "block_entity_type": 15 + }, + { + "id": 8939, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8940, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8941, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 + }, + { + "id": 8942, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 157 + ], + "block_entity_type": 15 } ] }, { - "id": 404, + "id": 405, "name": "dragon_wall_head", "translation_key": "block.minecraft.dragon_head", - "item_id": 1058, + "item_id": 1062, "properties": [ { "name": "facing", @@ -90406,10 +90495,10 @@ ] } ], - "default_state_id": 8939, + "default_state_id": 8943, "states": [ { - "id": 8939, + "id": 8943, "luminance": 0, "opaque": true, "replaceable": false, @@ -90419,7 +90508,7 @@ "block_entity_type": 15 }, { - "id": 8940, + "id": 8944, "luminance": 0, "opaque": true, "replaceable": false, @@ -90429,7 +90518,7 @@ "block_entity_type": 15 }, { - "id": 8941, + "id": 8945, "luminance": 0, "opaque": true, "replaceable": false, @@ -90439,7 +90528,7 @@ "block_entity_type": 15 }, { - "id": 8942, + "id": 8946, "luminance": 0, "opaque": true, "replaceable": false, @@ -90451,11 +90540,11 @@ ] }, { - "id": 405, + "id": 406, "name": "piglin_head", "translation_key": "block.minecraft.piglin_head", - "item_id": 1059, - "wall_variant_id": 406, + "item_id": 1063, + "wall_variant_id": 407, "properties": [ { "name": "rotation", @@ -90479,48 +90568,8 @@ ] } ], - "default_state_id": 8943, + "default_state_id": 8947, "states": [ - { - "id": 8943, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 162 - ], - "block_entity_type": 15 - }, - { - "id": 8944, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 162 - ], - "block_entity_type": 15 - }, - { - "id": 8945, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 162 - ], - "block_entity_type": 15 - }, - { - "id": 8946, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 162 - ], - "block_entity_type": 15 - }, { "id": 8947, "luminance": 0, @@ -90640,34 +90689,14 @@ 162 ], "block_entity_type": 15 - } - ] - }, - { - "id": 406, - "name": "piglin_wall_head", - "translation_key": "block.minecraft.piglin_head", - "item_id": 1059, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "default_state_id": 8959, - "states": [ + }, { "id": 8959, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 163 + 162 ], "block_entity_type": 15 }, @@ -90677,7 +90706,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 164 + 162 ], "block_entity_type": 15 }, @@ -90687,7 +90716,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 165 + 162 ], "block_entity_type": 15 }, @@ -90697,7 +90726,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 166 + 162 ], "block_entity_type": 15 } @@ -90705,9 +90734,9 @@ }, { "id": 407, - "name": "anvil", - "translation_key": "block.minecraft.anvil", - "item_id": 395, + "name": "piglin_wall_head", + "translation_key": "block.minecraft.piglin_head", + "item_id": 1063, "properties": [ { "name": "facing", @@ -90727,14 +90756,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 167, - 168, - 169, - 170, - 171, - 172, - 173 - ] + 163 + ], + "block_entity_type": 15 }, { "id": 8964, @@ -90742,14 +90766,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 167, - 168, - 169, - 170, - 171, - 172, - 173 - ] + 164 + ], + "block_entity_type": 15 }, { "id": 8965, @@ -90757,14 +90776,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 167, - 174, - 175, - 176, - 177, - 178, - 179 - ] + 165 + ], + "block_entity_type": 15 }, { "id": 8966, @@ -90772,22 +90786,17 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 167, - 174, - 175, - 176, - 177, - 178, - 179 - ] + 166 + ], + "block_entity_type": 15 } ] }, { "id": 408, - "name": "chipped_anvil", - "translation_key": "block.minecraft.chipped_anvil", - "item_id": 396, + "name": "anvil", + "translation_key": "block.minecraft.anvil", + "item_id": 397, "properties": [ { "name": "facing", @@ -90865,9 +90874,9 @@ }, { "id": 409, - "name": "damaged_anvil", - "translation_key": "block.minecraft.damaged_anvil", - "item_id": 397, + "name": "chipped_anvil", + "translation_key": "block.minecraft.chipped_anvil", + "item_id": 398, "properties": [ { "name": "facing", @@ -90945,9 +90954,89 @@ }, { "id": 410, + "name": "damaged_anvil", + "translation_key": "block.minecraft.damaged_anvil", + "item_id": 399, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 8975, + "states": [ + { + "id": 8975, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 167, + 168, + 169, + 170, + 171, + 172, + 173 + ] + }, + { + "id": 8976, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 167, + 168, + 169, + 170, + 171, + 172, + 173 + ] + }, + { + "id": 8977, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 167, + 174, + 175, + 176, + 177, + 178, + 179 + ] + }, + { + "id": 8978, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 167, + 174, + 175, + 176, + 177, + 178, + 179 + ] + } + ] + }, + { + "id": 411, "name": "trapped_chest", "translation_key": "block.minecraft.trapped_chest", - "item_id": 652, + "item_id": 656, "properties": [ { "name": "facing", @@ -90974,55 +91063,15 @@ ] } ], - "default_state_id": 8976, + "default_state_id": 8980, "states": [ - { - "id": 8975, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 58 - ], - "block_entity_type": 2 - }, - { - "id": 8976, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 58 - ], - "block_entity_type": 2 - }, - { - "id": 8977, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 59 - ], - "block_entity_type": 2 - }, - { - "id": 8978, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 59 - ], - "block_entity_type": 2 - }, { "id": 8979, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 60 + 58 ], "block_entity_type": 2 }, @@ -91032,7 +91081,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 60 + 58 ], "block_entity_type": 2 }, @@ -91042,7 +91091,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 58 + 59 ], "block_entity_type": 2 }, @@ -91052,7 +91101,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 58 + 59 ], "block_entity_type": 2 }, @@ -91082,7 +91131,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 59 + 58 ], "block_entity_type": 2 }, @@ -91092,7 +91141,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 59 + 58 ], "block_entity_type": 2 }, @@ -91102,7 +91151,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 58 + 60 ], "block_entity_type": 2 }, @@ -91112,7 +91161,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 58 + 60 ], "block_entity_type": 2 }, @@ -91122,7 +91171,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 61 + 59 ], "block_entity_type": 2 }, @@ -91132,7 +91181,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 61 + 59 ], "block_entity_type": 2 }, @@ -91142,7 +91191,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 62 + 58 ], "block_entity_type": 2 }, @@ -91152,7 +91201,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 62 + 58 ], "block_entity_type": 2 }, @@ -91162,7 +91211,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 58 + 61 ], "block_entity_type": 2 }, @@ -91172,7 +91221,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 58 + 61 ], "block_entity_type": 2 }, @@ -91202,7 +91251,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 61 + 58 ], "block_entity_type": 2 }, @@ -91211,6 +91260,46 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 58 + ], + "block_entity_type": 2 + }, + { + "id": 8999, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 62 + ], + "block_entity_type": 2 + }, + { + "id": 9000, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 62 + ], + "block_entity_type": 2 + }, + { + "id": 9001, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 61 + ], + "block_entity_type": 2 + }, + { + "id": 9002, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 61 ], @@ -91219,10 +91308,10 @@ ] }, { - "id": 411, + "id": 412, "name": "light_weighted_pressure_plate", "translation_key": "block.minecraft.light_weighted_pressure_plate", - "item_id": 671, + "item_id": 675, "properties": [ { "name": "power", @@ -91246,36 +91335,8 @@ ] } ], - "default_state_id": 8999, + "default_state_id": 9003, "states": [ - { - "id": 8999, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 9000, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 9001, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 9002, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 9003, "luminance": 0, @@ -91359,39 +91420,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 412, - "name": "heavy_weighted_pressure_plate", - "translation_key": "block.minecraft.heavy_weighted_pressure_plate", - "item_id": 672, - "properties": [ - { - "name": "power", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 9015, - "states": [ + }, { "id": 9015, "luminance": 0, @@ -91419,7 +91448,39 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - }, + } + ] + }, + { + "id": 413, + "name": "heavy_weighted_pressure_plate", + "translation_key": "block.minecraft.heavy_weighted_pressure_plate", + "item_id": 676, + "properties": [ + { + "name": "power", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 9019, + "states": [ { "id": 9019, "luminance": 0, @@ -91503,14 +91564,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 9031, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 9032, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 9033, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 9034, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 413, + "id": 414, "name": "comparator", "translation_key": "block.minecraft.comparator", - "item_id": 636, + "item_id": 639, "properties": [ { "name": "facing", @@ -91536,48 +91625,8 @@ ] } ], - "default_state_id": 9032, + "default_state_id": 9036, "states": [ - { - "id": 9031, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 70 - ], - "block_entity_type": 18 - }, - { - "id": 9032, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 70 - ], - "block_entity_type": 18 - }, - { - "id": 9033, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 70 - ], - "block_entity_type": 18 - }, - { - "id": 9034, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 70 - ], - "block_entity_type": 18 - }, { "id": 9035, "luminance": 0, @@ -91697,14 +91746,54 @@ 70 ], "block_entity_type": 18 + }, + { + "id": 9047, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 70 + ], + "block_entity_type": 18 + }, + { + "id": 9048, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 70 + ], + "block_entity_type": 18 + }, + { + "id": 9049, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 70 + ], + "block_entity_type": 18 + }, + { + "id": 9050, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 70 + ], + "block_entity_type": 18 } ] }, { - "id": 414, + "id": 415, "name": "daylight_detector", "translation_key": "block.minecraft.daylight_detector", - "item_id": 649, + "item_id": 652, "properties": [ { "name": "inverted", @@ -91735,48 +91824,8 @@ ] } ], - "default_state_id": 9063, + "default_state_id": 9067, "states": [ - { - "id": 9047, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 71 - ], - "block_entity_type": 16 - }, - { - "id": 9048, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 71 - ], - "block_entity_type": 16 - }, - { - "id": 9049, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 71 - ], - "block_entity_type": 16 - }, - { - "id": 9050, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 71 - ], - "block_entity_type": 16 - }, { "id": 9051, "luminance": 0, @@ -92056,38 +92105,59 @@ 71 ], "block_entity_type": 16 - } - ] - }, - { - "id": 415, - "name": "redstone_block", - "translation_key": "block.minecraft.redstone_block", - "item_id": 634, - "properties": [], - "default_state_id": 9079, - "states": [ + }, { "id": 9079, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 0 - ] + 71 + ], + "block_entity_type": 16 + }, + { + "id": 9080, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 71 + ], + "block_entity_type": 16 + }, + { + "id": 9081, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 71 + ], + "block_entity_type": 16 + }, + { + "id": 9082, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 71 + ], + "block_entity_type": 16 } ] }, { "id": 416, - "name": "nether_quartz_ore", - "translation_key": "block.minecraft.nether_quartz_ore", - "item_id": 65, + "name": "redstone_block", + "translation_key": "block.minecraft.redstone_block", + "item_id": 637, "properties": [], - "default_state_id": 9080, + "default_state_id": 9083, "states": [ { - "id": 9080, + "id": 9083, "luminance": 0, "opaque": true, "replaceable": false, @@ -92099,9 +92169,28 @@ }, { "id": 417, + "name": "nether_quartz_ore", + "translation_key": "block.minecraft.nether_quartz_ore", + "item_id": 66, + "properties": [], + "default_state_id": 9084, + "states": [ + { + "id": 9084, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 418, "name": "hopper", "translation_key": "block.minecraft.hopper", - "item_id": 642, + "item_id": 645, "properties": [ { "name": "enabled", @@ -92121,10 +92210,10 @@ ] } ], - "default_state_id": 9081, + "default_state_id": 9085, "states": [ { - "id": 9081, + "id": 9085, "luminance": 0, "opaque": false, "replaceable": false, @@ -92145,95 +92234,14 @@ ], "block_entity_type": 17 }, - { - "id": 9082, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 193, - 194, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192 - ], - "block_entity_type": 17 - }, - { - "id": 9083, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 193, - 195, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192 - ], - "block_entity_type": 17 - }, - { - "id": 9084, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 196, - 197, - 198, - 199, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192 - ], - "block_entity_type": 17 - }, - { - "id": 9085, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 193, - 200, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192 - ], - "block_entity_type": 17 - }, { "id": 9086, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 180, - 181, - 182, - 183, - 184, + 193, + 194, 185, 186, 187, @@ -92250,25 +92258,6 @@ "luminance": 0, "opaque": false, "replaceable": false, - "collision_shapes": [ - 193, - 194, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192 - ], - "block_entity_type": 17 - }, - { - "id": 9088, - "luminance": 0, - "opaque": false, - "replaceable": false, "collision_shapes": [ 193, 195, @@ -92284,7 +92273,7 @@ "block_entity_type": 17 }, { - "id": 9089, + "id": 9088, "luminance": 0, "opaque": false, "replaceable": false, @@ -92304,11 +92293,111 @@ ], "block_entity_type": 17 }, + { + "id": 9089, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 193, + 200, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192 + ], + "block_entity_type": 17 + }, { "id": 9090, "luminance": 0, "opaque": false, "replaceable": false, + "collision_shapes": [ + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192 + ], + "block_entity_type": 17 + }, + { + "id": 9091, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 193, + 194, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192 + ], + "block_entity_type": 17 + }, + { + "id": 9092, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 193, + 195, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192 + ], + "block_entity_type": 17 + }, + { + "id": 9093, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 196, + 197, + 198, + 199, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192 + ], + "block_entity_type": 17 + }, + { + "id": 9094, + "luminance": 0, + "opaque": false, + "replaceable": false, "collision_shapes": [ 193, 200, @@ -92326,78 +92415,13 @@ ] }, { - "id": 418, + "id": 419, "name": "quartz_block", "translation_key": "block.minecraft.quartz_block", - "item_id": 399, - "properties": [], - "default_state_id": 9091, - "states": [ - { - "id": 9091, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 419, - "name": "chiseled_quartz_block", - "translation_key": "block.minecraft.chiseled_quartz_block", - "item_id": 398, - "properties": [], - "default_state_id": 9092, - "states": [ - { - "id": 9092, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 420, - "name": "quartz_pillar", - "translation_key": "block.minecraft.quartz_pillar", "item_id": 401, - "properties": [ - { - "name": "axis", - "values": [ - "x", - "y", - "z" - ] - } - ], - "default_state_id": 9094, + "properties": [], + "default_state_id": 9095, "states": [ - { - "id": 9093, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 9094, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 9095, "luminance": 0, @@ -92409,11 +92433,76 @@ } ] }, + { + "id": 420, + "name": "chiseled_quartz_block", + "translation_key": "block.minecraft.chiseled_quartz_block", + "item_id": 400, + "properties": [], + "default_state_id": 9096, + "states": [ + { + "id": 9096, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, { "id": 421, + "name": "quartz_pillar", + "translation_key": "block.minecraft.quartz_pillar", + "item_id": 403, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 9098, + "states": [ + { + "id": 9097, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9098, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 9099, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 422, "name": "quartz_stairs", "translation_key": "block.minecraft.quartz_stairs", - "item_id": 402, + "item_id": 404, "properties": [ { "name": "facing", @@ -92449,50 +92538,8 @@ ] } ], - "default_state_id": 9107, + "default_state_id": 9111, "states": [ - { - "id": 9096, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 9097, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 9098, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 9099, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, { "id": 9100, "luminance": 0, @@ -92500,8 +92547,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -92511,8 +92557,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -92521,9 +92566,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -92532,9 +92577,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -92543,9 +92588,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -92554,9 +92599,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -92565,8 +92610,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -92575,8 +92621,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -92585,9 +92632,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -92596,9 +92643,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -92608,8 +92655,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -92619,8 +92665,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -92630,7 +92675,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -92640,7 +92686,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -92650,7 +92697,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -92660,7 +92708,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -92669,8 +92718,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -92679,8 +92728,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -92689,9 +92738,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -92700,9 +92748,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -92711,9 +92758,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -92722,9 +92768,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -92733,9 +92778,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -92744,9 +92789,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -92755,9 +92800,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -92766,9 +92811,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -92777,8 +92822,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -92787,8 +92833,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -92797,9 +92844,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -92808,9 +92855,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -92820,8 +92867,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -92831,8 +92877,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -92842,7 +92887,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -92852,7 +92898,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -92862,7 +92909,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -92872,7 +92920,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -92881,8 +92930,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -92891,8 +92940,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -92901,9 +92950,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -92912,9 +92960,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -92924,8 +92971,7 @@ "replaceable": false, "collision_shapes": [ 43, - 44, - 45 + 56 ] }, { @@ -92933,54 +92979,53 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 9142, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 9143, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 9144, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 43, 44, 45 ] }, - { - "id": 9142, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 9143, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 9144, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, { "id": 9145, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -92989,8 +93034,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -92999,8 +93045,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -93009,9 +93056,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -93020,9 +93067,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -93032,8 +93079,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -93043,8 +93089,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -93054,7 +93099,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -93064,7 +93110,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -93074,7 +93121,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -93084,7 +93132,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -93093,8 +93142,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -93103,8 +93152,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -93113,9 +93162,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -93124,9 +93172,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -93135,9 +93182,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -93146,9 +93192,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -93157,9 +93202,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -93168,9 +93213,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -93179,9 +93224,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -93190,9 +93235,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -93201,8 +93246,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -93211,8 +93257,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -93221,9 +93268,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -93232,9 +93279,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -93244,8 +93291,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -93255,8 +93301,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -93266,7 +93311,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -93276,7 +93322,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -93286,7 +93333,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -93294,6 +93342,47 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 9176, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 9177, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 9178, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 9179, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 51, 45 @@ -93302,10 +93391,10 @@ ] }, { - "id": 422, + "id": 423, "name": "activator_rail", "translation_key": "block.minecraft.activator_rail", - "item_id": 722, + "item_id": 726, "properties": [ { "name": "powered", @@ -93333,36 +93422,8 @@ ] } ], - "default_state_id": 9189, + "default_state_id": 9193, "states": [ - { - "id": 9176, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 9177, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 9178, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 9179, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 9180, "luminance": 0, @@ -93502,14 +93563,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 9200, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 9201, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 9202, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 9203, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 423, + "id": 424, "name": "dropper", "translation_key": "block.minecraft.dropper", - "item_id": 644, + "item_id": 647, "properties": [ { "name": "facing", @@ -93530,48 +93619,8 @@ ] } ], - "default_state_id": 9201, + "default_state_id": 9205, "states": [ - { - "id": 9200, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 6 - }, - { - "id": 9201, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 6 - }, - { - "id": 9202, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 6 - }, - { - "id": 9203, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 6 - }, { "id": 9204, "luminance": 0, @@ -93651,17 +93700,7 @@ 0 ], "block_entity_type": 6 - } - ] - }, - { - "id": 424, - "name": "white_terracotta", - "translation_key": "block.minecraft.white_terracotta", - "item_id": 403, - "properties": [], - "default_state_id": 9212, - "states": [ + }, { "id": 9212, "luminance": 0, @@ -93669,18 +93708,9 @@ "replaceable": false, "collision_shapes": [ 0 - ] - } - ] - }, - { - "id": 425, - "name": "orange_terracotta", - "translation_key": "block.minecraft.orange_terracotta", - "item_id": 404, - "properties": [], - "default_state_id": 9213, - "states": [ + ], + "block_entity_type": 6 + }, { "id": 9213, "luminance": 0, @@ -93688,18 +93718,9 @@ "replaceable": false, "collision_shapes": [ 0 - ] - } - ] - }, - { - "id": 426, - "name": "magenta_terracotta", - "translation_key": "block.minecraft.magenta_terracotta", - "item_id": 405, - "properties": [], - "default_state_id": 9214, - "states": [ + ], + "block_entity_type": 6 + }, { "id": 9214, "luminance": 0, @@ -93707,18 +93728,9 @@ "replaceable": false, "collision_shapes": [ 0 - ] - } - ] - }, - { - "id": 427, - "name": "light_blue_terracotta", - "translation_key": "block.minecraft.light_blue_terracotta", - "item_id": 406, - "properties": [], - "default_state_id": 9215, - "states": [ + ], + "block_entity_type": 6 + }, { "id": 9215, "luminance": 0, @@ -93726,15 +93738,16 @@ "replaceable": false, "collision_shapes": [ 0 - ] + ], + "block_entity_type": 6 } ] }, { - "id": 428, - "name": "yellow_terracotta", - "translation_key": "block.minecraft.yellow_terracotta", - "item_id": 407, + "id": 425, + "name": "white_terracotta", + "translation_key": "block.minecraft.white_terracotta", + "item_id": 405, "properties": [], "default_state_id": 9216, "states": [ @@ -93750,10 +93763,10 @@ ] }, { - "id": 429, - "name": "lime_terracotta", - "translation_key": "block.minecraft.lime_terracotta", - "item_id": 408, + "id": 426, + "name": "orange_terracotta", + "translation_key": "block.minecraft.orange_terracotta", + "item_id": 406, "properties": [], "default_state_id": 9217, "states": [ @@ -93769,10 +93782,10 @@ ] }, { - "id": 430, - "name": "pink_terracotta", - "translation_key": "block.minecraft.pink_terracotta", - "item_id": 409, + "id": 427, + "name": "magenta_terracotta", + "translation_key": "block.minecraft.magenta_terracotta", + "item_id": 407, "properties": [], "default_state_id": 9218, "states": [ @@ -93788,10 +93801,10 @@ ] }, { - "id": 431, - "name": "gray_terracotta", - "translation_key": "block.minecraft.gray_terracotta", - "item_id": 410, + "id": 428, + "name": "light_blue_terracotta", + "translation_key": "block.minecraft.light_blue_terracotta", + "item_id": 408, "properties": [], "default_state_id": 9219, "states": [ @@ -93807,10 +93820,10 @@ ] }, { - "id": 432, - "name": "light_gray_terracotta", - "translation_key": "block.minecraft.light_gray_terracotta", - "item_id": 411, + "id": 429, + "name": "yellow_terracotta", + "translation_key": "block.minecraft.yellow_terracotta", + "item_id": 409, "properties": [], "default_state_id": 9220, "states": [ @@ -93826,10 +93839,10 @@ ] }, { - "id": 433, - "name": "cyan_terracotta", - "translation_key": "block.minecraft.cyan_terracotta", - "item_id": 412, + "id": 430, + "name": "lime_terracotta", + "translation_key": "block.minecraft.lime_terracotta", + "item_id": 410, "properties": [], "default_state_id": 9221, "states": [ @@ -93845,10 +93858,10 @@ ] }, { - "id": 434, - "name": "purple_terracotta", - "translation_key": "block.minecraft.purple_terracotta", - "item_id": 413, + "id": 431, + "name": "pink_terracotta", + "translation_key": "block.minecraft.pink_terracotta", + "item_id": 411, "properties": [], "default_state_id": 9222, "states": [ @@ -93864,10 +93877,10 @@ ] }, { - "id": 435, - "name": "blue_terracotta", - "translation_key": "block.minecraft.blue_terracotta", - "item_id": 414, + "id": 432, + "name": "gray_terracotta", + "translation_key": "block.minecraft.gray_terracotta", + "item_id": 412, "properties": [], "default_state_id": 9223, "states": [ @@ -93883,10 +93896,10 @@ ] }, { - "id": 436, - "name": "brown_terracotta", - "translation_key": "block.minecraft.brown_terracotta", - "item_id": 415, + "id": 433, + "name": "light_gray_terracotta", + "translation_key": "block.minecraft.light_gray_terracotta", + "item_id": 413, "properties": [], "default_state_id": 9224, "states": [ @@ -93902,10 +93915,10 @@ ] }, { - "id": 437, - "name": "green_terracotta", - "translation_key": "block.minecraft.green_terracotta", - "item_id": 416, + "id": 434, + "name": "cyan_terracotta", + "translation_key": "block.minecraft.cyan_terracotta", + "item_id": 414, "properties": [], "default_state_id": 9225, "states": [ @@ -93921,10 +93934,10 @@ ] }, { - "id": 438, - "name": "red_terracotta", - "translation_key": "block.minecraft.red_terracotta", - "item_id": 417, + "id": 435, + "name": "purple_terracotta", + "translation_key": "block.minecraft.purple_terracotta", + "item_id": 415, "properties": [], "default_state_id": 9226, "states": [ @@ -93940,10 +93953,10 @@ ] }, { - "id": 439, - "name": "black_terracotta", - "translation_key": "block.minecraft.black_terracotta", - "item_id": 418, + "id": 436, + "name": "blue_terracotta", + "translation_key": "block.minecraft.blue_terracotta", + "item_id": 416, "properties": [], "default_state_id": 9227, "states": [ @@ -93959,721 +93972,85 @@ ] }, { - "id": 440, - "name": "white_stained_glass_pane", - "translation_key": "block.minecraft.white_stained_glass_pane", - "item_id": 463, - "properties": [ - { - "name": "east", - "values": [ - "true", - "false" - ] - }, - { - "name": "north", - "values": [ - "true", - "false" - ] - }, - { - "name": "south", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - }, - { - "name": "west", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 9259, + "id": 437, + "name": "brown_terracotta", + "translation_key": "block.minecraft.brown_terracotta", + "item_id": 417, + "properties": [], + "default_state_id": 9228, "states": [ { "id": 9228, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 94, - 95, - 96 + 0 ] - }, + } + ] + }, + { + "id": 438, + "name": "green_terracotta", + "translation_key": "block.minecraft.green_terracotta", + "item_id": 418, + "properties": [], + "default_state_id": 9229, + "states": [ { "id": 9229, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 97, - 98 + 0 ] - }, + } + ] + }, + { + "id": 439, + "name": "red_terracotta", + "translation_key": "block.minecraft.red_terracotta", + "item_id": 419, + "properties": [], + "default_state_id": 9230, + "states": [ { "id": 9230, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 94, - 95, - 96 + 0 ] - }, + } + ] + }, + { + "id": 440, + "name": "black_terracotta", + "translation_key": "block.minecraft.black_terracotta", + "item_id": 420, + "properties": [], + "default_state_id": 9231, + "states": [ { "id": 9231, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 97, - 98 - ] - }, - { - "id": 9232, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 95 - ] - }, - { - "id": 9233, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 99, - 98 - ] - }, - { - "id": 9234, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 95 - ] - }, - { - "id": 9235, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 99, - 98 - ] - }, - { - "id": 9236, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 96 - ] - }, - { - "id": 9237, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 100, - 98 - ] - }, - { - "id": 9238, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 96 - ] - }, - { - "id": 9239, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 100, - 98 - ] - }, - { - "id": 9240, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94 - ] - }, - { - "id": 9241, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 101 - ] - }, - { - "id": 9242, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94 - ] - }, - { - "id": 9243, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 101 - ] - }, - { - "id": 9244, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 95, - 96 - ] - }, - { - "id": 9245, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 97 - ] - }, - { - "id": 9246, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 95, - 96 - ] - }, - { - "id": 9247, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 97 - ] - }, - { - "id": 9248, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 95 - ] - }, - { - "id": 9249, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 99 - ] - }, - { - "id": 9250, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 95 - ] - }, - { - "id": 9251, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 99 - ] - }, - { - "id": 9252, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 96 - ] - }, - { - "id": 9253, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 100 - ] - }, - { - "id": 9254, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 96 - ] - }, - { - "id": 9255, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 100 - ] - }, - { - "id": 9256, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102 - ] - }, - { - "id": 9257, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 103 - ] - }, - { - "id": 9258, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102 - ] - }, - { - "id": 9259, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 103 + 0 ] } ] }, { "id": 441, - "name": "orange_stained_glass_pane", - "translation_key": "block.minecraft.orange_stained_glass_pane", - "item_id": 464, - "properties": [ - { - "name": "east", - "values": [ - "true", - "false" - ] - }, - { - "name": "north", - "values": [ - "true", - "false" - ] - }, - { - "name": "south", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - }, - { - "name": "west", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 9291, - "states": [ - { - "id": 9260, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 95, - 96 - ] - }, - { - "id": 9261, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 97, - 98 - ] - }, - { - "id": 9262, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 95, - 96 - ] - }, - { - "id": 9263, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 97, - 98 - ] - }, - { - "id": 9264, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 95 - ] - }, - { - "id": 9265, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 99, - 98 - ] - }, - { - "id": 9266, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 95 - ] - }, - { - "id": 9267, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 99, - 98 - ] - }, - { - "id": 9268, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 96 - ] - }, - { - "id": 9269, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 100, - 98 - ] - }, - { - "id": 9270, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94, - 96 - ] - }, - { - "id": 9271, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 100, - 98 - ] - }, - { - "id": 9272, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94 - ] - }, - { - "id": 9273, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 101 - ] - }, - { - "id": 9274, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 94 - ] - }, - { - "id": 9275, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 101 - ] - }, - { - "id": 9276, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 95, - 96 - ] - }, - { - "id": 9277, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 97 - ] - }, - { - "id": 9278, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 95, - 96 - ] - }, - { - "id": 9279, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 97 - ] - }, - { - "id": 9280, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 95 - ] - }, - { - "id": 9281, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 99 - ] - }, - { - "id": 9282, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 95 - ] - }, - { - "id": 9283, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 99 - ] - }, - { - "id": 9284, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 96 - ] - }, - { - "id": 9285, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 100 - ] - }, - { - "id": 9286, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102, - 96 - ] - }, - { - "id": 9287, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 100 - ] - }, - { - "id": 9288, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102 - ] - }, - { - "id": 9289, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 103 - ] - }, - { - "id": 9290, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 102 - ] - }, - { - "id": 9291, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 103 - ] - } - ] - }, - { - "id": 442, - "name": "magenta_stained_glass_pane", - "translation_key": "block.minecraft.magenta_stained_glass_pane", + "name": "white_stained_glass_pane", + "translation_key": "block.minecraft.white_stained_glass_pane", "item_id": 465, "properties": [ { @@ -94712,10 +94089,10 @@ ] } ], - "default_state_id": 9323, + "default_state_id": 9263, "states": [ { - "id": 9292, + "id": 9232, "luminance": 0, "opaque": false, "replaceable": false, @@ -94726,7 +94103,7 @@ ] }, { - "id": 9293, + "id": 9233, "luminance": 0, "opaque": false, "replaceable": false, @@ -94736,7 +94113,7 @@ ] }, { - "id": 9294, + "id": 9234, "luminance": 0, "opaque": false, "replaceable": false, @@ -94747,7 +94124,7 @@ ] }, { - "id": 9295, + "id": 9235, "luminance": 0, "opaque": false, "replaceable": false, @@ -94757,7 +94134,7 @@ ] }, { - "id": 9296, + "id": 9236, "luminance": 0, "opaque": false, "replaceable": false, @@ -94767,7 +94144,7 @@ ] }, { - "id": 9297, + "id": 9237, "luminance": 0, "opaque": false, "replaceable": false, @@ -94777,7 +94154,7 @@ ] }, { - "id": 9298, + "id": 9238, "luminance": 0, "opaque": false, "replaceable": false, @@ -94787,7 +94164,7 @@ ] }, { - "id": 9299, + "id": 9239, "luminance": 0, "opaque": false, "replaceable": false, @@ -94797,7 +94174,7 @@ ] }, { - "id": 9300, + "id": 9240, "luminance": 0, "opaque": false, "replaceable": false, @@ -94807,7 +94184,7 @@ ] }, { - "id": 9301, + "id": 9241, "luminance": 0, "opaque": false, "replaceable": false, @@ -94817,7 +94194,7 @@ ] }, { - "id": 9302, + "id": 9242, "luminance": 0, "opaque": false, "replaceable": false, @@ -94827,7 +94204,7 @@ ] }, { - "id": 9303, + "id": 9243, "luminance": 0, "opaque": false, "replaceable": false, @@ -94837,7 +94214,7 @@ ] }, { - "id": 9304, + "id": 9244, "luminance": 0, "opaque": false, "replaceable": false, @@ -94846,7 +94223,7 @@ ] }, { - "id": 9305, + "id": 9245, "luminance": 0, "opaque": false, "replaceable": false, @@ -94855,7 +94232,7 @@ ] }, { - "id": 9306, + "id": 9246, "luminance": 0, "opaque": false, "replaceable": false, @@ -94864,7 +94241,7 @@ ] }, { - "id": 9307, + "id": 9247, "luminance": 0, "opaque": false, "replaceable": false, @@ -94873,7 +94250,7 @@ ] }, { - "id": 9308, + "id": 9248, "luminance": 0, "opaque": false, "replaceable": false, @@ -94884,7 +94261,7 @@ ] }, { - "id": 9309, + "id": 9249, "luminance": 0, "opaque": false, "replaceable": false, @@ -94893,7 +94270,7 @@ ] }, { - "id": 9310, + "id": 9250, "luminance": 0, "opaque": false, "replaceable": false, @@ -94904,7 +94281,7 @@ ] }, { - "id": 9311, + "id": 9251, "luminance": 0, "opaque": false, "replaceable": false, @@ -94913,7 +94290,7 @@ ] }, { - "id": 9312, + "id": 9252, "luminance": 0, "opaque": false, "replaceable": false, @@ -94923,7 +94300,7 @@ ] }, { - "id": 9313, + "id": 9253, "luminance": 0, "opaque": false, "replaceable": false, @@ -94932,7 +94309,7 @@ ] }, { - "id": 9314, + "id": 9254, "luminance": 0, "opaque": false, "replaceable": false, @@ -94942,7 +94319,7 @@ ] }, { - "id": 9315, + "id": 9255, "luminance": 0, "opaque": false, "replaceable": false, @@ -94951,7 +94328,7 @@ ] }, { - "id": 9316, + "id": 9256, "luminance": 0, "opaque": false, "replaceable": false, @@ -94961,7 +94338,7 @@ ] }, { - "id": 9317, + "id": 9257, "luminance": 0, "opaque": false, "replaceable": false, @@ -94970,7 +94347,7 @@ ] }, { - "id": 9318, + "id": 9258, "luminance": 0, "opaque": false, "replaceable": false, @@ -94980,7 +94357,7 @@ ] }, { - "id": 9319, + "id": 9259, "luminance": 0, "opaque": false, "replaceable": false, @@ -94989,7 +94366,7 @@ ] }, { - "id": 9320, + "id": 9260, "luminance": 0, "opaque": false, "replaceable": false, @@ -94998,7 +94375,7 @@ ] }, { - "id": 9321, + "id": 9261, "luminance": 0, "opaque": false, "replaceable": false, @@ -95007,7 +94384,7 @@ ] }, { - "id": 9322, + "id": 9262, "luminance": 0, "opaque": false, "replaceable": false, @@ -95016,7 +94393,7 @@ ] }, { - "id": 9323, + "id": 9263, "luminance": 0, "opaque": false, "replaceable": false, @@ -95027,9 +94404,9 @@ ] }, { - "id": 443, - "name": "light_blue_stained_glass_pane", - "translation_key": "block.minecraft.light_blue_stained_glass_pane", + "id": 442, + "name": "orange_stained_glass_pane", + "translation_key": "block.minecraft.orange_stained_glass_pane", "item_id": 466, "properties": [ { @@ -95068,10 +94445,10 @@ ] } ], - "default_state_id": 9355, + "default_state_id": 9295, "states": [ { - "id": 9324, + "id": 9264, "luminance": 0, "opaque": false, "replaceable": false, @@ -95082,7 +94459,7 @@ ] }, { - "id": 9325, + "id": 9265, "luminance": 0, "opaque": false, "replaceable": false, @@ -95092,7 +94469,7 @@ ] }, { - "id": 9326, + "id": 9266, "luminance": 0, "opaque": false, "replaceable": false, @@ -95103,7 +94480,7 @@ ] }, { - "id": 9327, + "id": 9267, "luminance": 0, "opaque": false, "replaceable": false, @@ -95113,7 +94490,7 @@ ] }, { - "id": 9328, + "id": 9268, "luminance": 0, "opaque": false, "replaceable": false, @@ -95123,7 +94500,7 @@ ] }, { - "id": 9329, + "id": 9269, "luminance": 0, "opaque": false, "replaceable": false, @@ -95133,7 +94510,7 @@ ] }, { - "id": 9330, + "id": 9270, "luminance": 0, "opaque": false, "replaceable": false, @@ -95143,7 +94520,7 @@ ] }, { - "id": 9331, + "id": 9271, "luminance": 0, "opaque": false, "replaceable": false, @@ -95153,7 +94530,7 @@ ] }, { - "id": 9332, + "id": 9272, "luminance": 0, "opaque": false, "replaceable": false, @@ -95163,7 +94540,7 @@ ] }, { - "id": 9333, + "id": 9273, "luminance": 0, "opaque": false, "replaceable": false, @@ -95173,7 +94550,7 @@ ] }, { - "id": 9334, + "id": 9274, "luminance": 0, "opaque": false, "replaceable": false, @@ -95183,7 +94560,7 @@ ] }, { - "id": 9335, + "id": 9275, "luminance": 0, "opaque": false, "replaceable": false, @@ -95193,7 +94570,7 @@ ] }, { - "id": 9336, + "id": 9276, "luminance": 0, "opaque": false, "replaceable": false, @@ -95202,7 +94579,7 @@ ] }, { - "id": 9337, + "id": 9277, "luminance": 0, "opaque": false, "replaceable": false, @@ -95211,7 +94588,7 @@ ] }, { - "id": 9338, + "id": 9278, "luminance": 0, "opaque": false, "replaceable": false, @@ -95220,7 +94597,7 @@ ] }, { - "id": 9339, + "id": 9279, "luminance": 0, "opaque": false, "replaceable": false, @@ -95229,7 +94606,7 @@ ] }, { - "id": 9340, + "id": 9280, "luminance": 0, "opaque": false, "replaceable": false, @@ -95240,7 +94617,7 @@ ] }, { - "id": 9341, + "id": 9281, "luminance": 0, "opaque": false, "replaceable": false, @@ -95249,7 +94626,7 @@ ] }, { - "id": 9342, + "id": 9282, "luminance": 0, "opaque": false, "replaceable": false, @@ -95260,7 +94637,7 @@ ] }, { - "id": 9343, + "id": 9283, "luminance": 0, "opaque": false, "replaceable": false, @@ -95269,7 +94646,7 @@ ] }, { - "id": 9344, + "id": 9284, "luminance": 0, "opaque": false, "replaceable": false, @@ -95279,7 +94656,7 @@ ] }, { - "id": 9345, + "id": 9285, "luminance": 0, "opaque": false, "replaceable": false, @@ -95288,7 +94665,7 @@ ] }, { - "id": 9346, + "id": 9286, "luminance": 0, "opaque": false, "replaceable": false, @@ -95298,7 +94675,7 @@ ] }, { - "id": 9347, + "id": 9287, "luminance": 0, "opaque": false, "replaceable": false, @@ -95307,7 +94684,7 @@ ] }, { - "id": 9348, + "id": 9288, "luminance": 0, "opaque": false, "replaceable": false, @@ -95317,7 +94694,7 @@ ] }, { - "id": 9349, + "id": 9289, "luminance": 0, "opaque": false, "replaceable": false, @@ -95326,7 +94703,7 @@ ] }, { - "id": 9350, + "id": 9290, "luminance": 0, "opaque": false, "replaceable": false, @@ -95336,7 +94713,7 @@ ] }, { - "id": 9351, + "id": 9291, "luminance": 0, "opaque": false, "replaceable": false, @@ -95345,7 +94722,7 @@ ] }, { - "id": 9352, + "id": 9292, "luminance": 0, "opaque": false, "replaceable": false, @@ -95354,7 +94731,7 @@ ] }, { - "id": 9353, + "id": 9293, "luminance": 0, "opaque": false, "replaceable": false, @@ -95363,7 +94740,7 @@ ] }, { - "id": 9354, + "id": 9294, "luminance": 0, "opaque": false, "replaceable": false, @@ -95372,7 +94749,7 @@ ] }, { - "id": 9355, + "id": 9295, "luminance": 0, "opaque": false, "replaceable": false, @@ -95383,9 +94760,9 @@ ] }, { - "id": 444, - "name": "yellow_stained_glass_pane", - "translation_key": "block.minecraft.yellow_stained_glass_pane", + "id": 443, + "name": "magenta_stained_glass_pane", + "translation_key": "block.minecraft.magenta_stained_glass_pane", "item_id": 467, "properties": [ { @@ -95424,10 +94801,10 @@ ] } ], - "default_state_id": 9387, + "default_state_id": 9327, "states": [ { - "id": 9356, + "id": 9296, "luminance": 0, "opaque": false, "replaceable": false, @@ -95438,7 +94815,7 @@ ] }, { - "id": 9357, + "id": 9297, "luminance": 0, "opaque": false, "replaceable": false, @@ -95448,7 +94825,7 @@ ] }, { - "id": 9358, + "id": 9298, "luminance": 0, "opaque": false, "replaceable": false, @@ -95459,7 +94836,7 @@ ] }, { - "id": 9359, + "id": 9299, "luminance": 0, "opaque": false, "replaceable": false, @@ -95469,7 +94846,7 @@ ] }, { - "id": 9360, + "id": 9300, "luminance": 0, "opaque": false, "replaceable": false, @@ -95479,7 +94856,7 @@ ] }, { - "id": 9361, + "id": 9301, "luminance": 0, "opaque": false, "replaceable": false, @@ -95489,7 +94866,7 @@ ] }, { - "id": 9362, + "id": 9302, "luminance": 0, "opaque": false, "replaceable": false, @@ -95499,7 +94876,7 @@ ] }, { - "id": 9363, + "id": 9303, "luminance": 0, "opaque": false, "replaceable": false, @@ -95509,7 +94886,7 @@ ] }, { - "id": 9364, + "id": 9304, "luminance": 0, "opaque": false, "replaceable": false, @@ -95519,7 +94896,7 @@ ] }, { - "id": 9365, + "id": 9305, "luminance": 0, "opaque": false, "replaceable": false, @@ -95529,7 +94906,7 @@ ] }, { - "id": 9366, + "id": 9306, "luminance": 0, "opaque": false, "replaceable": false, @@ -95539,7 +94916,7 @@ ] }, { - "id": 9367, + "id": 9307, "luminance": 0, "opaque": false, "replaceable": false, @@ -95549,7 +94926,7 @@ ] }, { - "id": 9368, + "id": 9308, "luminance": 0, "opaque": false, "replaceable": false, @@ -95558,7 +94935,7 @@ ] }, { - "id": 9369, + "id": 9309, "luminance": 0, "opaque": false, "replaceable": false, @@ -95567,7 +94944,7 @@ ] }, { - "id": 9370, + "id": 9310, "luminance": 0, "opaque": false, "replaceable": false, @@ -95576,7 +94953,7 @@ ] }, { - "id": 9371, + "id": 9311, "luminance": 0, "opaque": false, "replaceable": false, @@ -95585,7 +94962,7 @@ ] }, { - "id": 9372, + "id": 9312, "luminance": 0, "opaque": false, "replaceable": false, @@ -95596,7 +94973,7 @@ ] }, { - "id": 9373, + "id": 9313, "luminance": 0, "opaque": false, "replaceable": false, @@ -95605,7 +94982,7 @@ ] }, { - "id": 9374, + "id": 9314, "luminance": 0, "opaque": false, "replaceable": false, @@ -95616,7 +94993,7 @@ ] }, { - "id": 9375, + "id": 9315, "luminance": 0, "opaque": false, "replaceable": false, @@ -95625,7 +95002,7 @@ ] }, { - "id": 9376, + "id": 9316, "luminance": 0, "opaque": false, "replaceable": false, @@ -95635,7 +95012,7 @@ ] }, { - "id": 9377, + "id": 9317, "luminance": 0, "opaque": false, "replaceable": false, @@ -95644,7 +95021,7 @@ ] }, { - "id": 9378, + "id": 9318, "luminance": 0, "opaque": false, "replaceable": false, @@ -95654,7 +95031,7 @@ ] }, { - "id": 9379, + "id": 9319, "luminance": 0, "opaque": false, "replaceable": false, @@ -95663,7 +95040,7 @@ ] }, { - "id": 9380, + "id": 9320, "luminance": 0, "opaque": false, "replaceable": false, @@ -95673,7 +95050,7 @@ ] }, { - "id": 9381, + "id": 9321, "luminance": 0, "opaque": false, "replaceable": false, @@ -95682,7 +95059,7 @@ ] }, { - "id": 9382, + "id": 9322, "luminance": 0, "opaque": false, "replaceable": false, @@ -95692,7 +95069,7 @@ ] }, { - "id": 9383, + "id": 9323, "luminance": 0, "opaque": false, "replaceable": false, @@ -95701,7 +95078,7 @@ ] }, { - "id": 9384, + "id": 9324, "luminance": 0, "opaque": false, "replaceable": false, @@ -95710,7 +95087,7 @@ ] }, { - "id": 9385, + "id": 9325, "luminance": 0, "opaque": false, "replaceable": false, @@ -95719,7 +95096,7 @@ ] }, { - "id": 9386, + "id": 9326, "luminance": 0, "opaque": false, "replaceable": false, @@ -95728,7 +95105,7 @@ ] }, { - "id": 9387, + "id": 9327, "luminance": 0, "opaque": false, "replaceable": false, @@ -95739,9 +95116,9 @@ ] }, { - "id": 445, - "name": "lime_stained_glass_pane", - "translation_key": "block.minecraft.lime_stained_glass_pane", + "id": 444, + "name": "light_blue_stained_glass_pane", + "translation_key": "block.minecraft.light_blue_stained_glass_pane", "item_id": 468, "properties": [ { @@ -95780,10 +95157,10 @@ ] } ], - "default_state_id": 9419, + "default_state_id": 9359, "states": [ { - "id": 9388, + "id": 9328, "luminance": 0, "opaque": false, "replaceable": false, @@ -95794,7 +95171,7 @@ ] }, { - "id": 9389, + "id": 9329, "luminance": 0, "opaque": false, "replaceable": false, @@ -95804,7 +95181,7 @@ ] }, { - "id": 9390, + "id": 9330, "luminance": 0, "opaque": false, "replaceable": false, @@ -95815,7 +95192,7 @@ ] }, { - "id": 9391, + "id": 9331, "luminance": 0, "opaque": false, "replaceable": false, @@ -95825,7 +95202,7 @@ ] }, { - "id": 9392, + "id": 9332, "luminance": 0, "opaque": false, "replaceable": false, @@ -95835,7 +95212,7 @@ ] }, { - "id": 9393, + "id": 9333, "luminance": 0, "opaque": false, "replaceable": false, @@ -95845,7 +95222,7 @@ ] }, { - "id": 9394, + "id": 9334, "luminance": 0, "opaque": false, "replaceable": false, @@ -95855,7 +95232,7 @@ ] }, { - "id": 9395, + "id": 9335, "luminance": 0, "opaque": false, "replaceable": false, @@ -95865,7 +95242,7 @@ ] }, { - "id": 9396, + "id": 9336, "luminance": 0, "opaque": false, "replaceable": false, @@ -95875,7 +95252,7 @@ ] }, { - "id": 9397, + "id": 9337, "luminance": 0, "opaque": false, "replaceable": false, @@ -95885,7 +95262,7 @@ ] }, { - "id": 9398, + "id": 9338, "luminance": 0, "opaque": false, "replaceable": false, @@ -95895,7 +95272,7 @@ ] }, { - "id": 9399, + "id": 9339, "luminance": 0, "opaque": false, "replaceable": false, @@ -95905,7 +95282,7 @@ ] }, { - "id": 9400, + "id": 9340, "luminance": 0, "opaque": false, "replaceable": false, @@ -95914,7 +95291,7 @@ ] }, { - "id": 9401, + "id": 9341, "luminance": 0, "opaque": false, "replaceable": false, @@ -95923,7 +95300,7 @@ ] }, { - "id": 9402, + "id": 9342, "luminance": 0, "opaque": false, "replaceable": false, @@ -95932,7 +95309,7 @@ ] }, { - "id": 9403, + "id": 9343, "luminance": 0, "opaque": false, "replaceable": false, @@ -95941,7 +95318,7 @@ ] }, { - "id": 9404, + "id": 9344, "luminance": 0, "opaque": false, "replaceable": false, @@ -95952,7 +95329,7 @@ ] }, { - "id": 9405, + "id": 9345, "luminance": 0, "opaque": false, "replaceable": false, @@ -95961,7 +95338,7 @@ ] }, { - "id": 9406, + "id": 9346, "luminance": 0, "opaque": false, "replaceable": false, @@ -95972,7 +95349,7 @@ ] }, { - "id": 9407, + "id": 9347, "luminance": 0, "opaque": false, "replaceable": false, @@ -95981,7 +95358,7 @@ ] }, { - "id": 9408, + "id": 9348, "luminance": 0, "opaque": false, "replaceable": false, @@ -95991,7 +95368,7 @@ ] }, { - "id": 9409, + "id": 9349, "luminance": 0, "opaque": false, "replaceable": false, @@ -96000,7 +95377,7 @@ ] }, { - "id": 9410, + "id": 9350, "luminance": 0, "opaque": false, "replaceable": false, @@ -96010,7 +95387,7 @@ ] }, { - "id": 9411, + "id": 9351, "luminance": 0, "opaque": false, "replaceable": false, @@ -96019,7 +95396,7 @@ ] }, { - "id": 9412, + "id": 9352, "luminance": 0, "opaque": false, "replaceable": false, @@ -96029,7 +95406,7 @@ ] }, { - "id": 9413, + "id": 9353, "luminance": 0, "opaque": false, "replaceable": false, @@ -96038,7 +95415,7 @@ ] }, { - "id": 9414, + "id": 9354, "luminance": 0, "opaque": false, "replaceable": false, @@ -96048,7 +95425,7 @@ ] }, { - "id": 9415, + "id": 9355, "luminance": 0, "opaque": false, "replaceable": false, @@ -96057,7 +95434,7 @@ ] }, { - "id": 9416, + "id": 9356, "luminance": 0, "opaque": false, "replaceable": false, @@ -96066,7 +95443,7 @@ ] }, { - "id": 9417, + "id": 9357, "luminance": 0, "opaque": false, "replaceable": false, @@ -96075,7 +95452,7 @@ ] }, { - "id": 9418, + "id": 9358, "luminance": 0, "opaque": false, "replaceable": false, @@ -96084,7 +95461,7 @@ ] }, { - "id": 9419, + "id": 9359, "luminance": 0, "opaque": false, "replaceable": false, @@ -96095,9 +95472,9 @@ ] }, { - "id": 446, - "name": "pink_stained_glass_pane", - "translation_key": "block.minecraft.pink_stained_glass_pane", + "id": 445, + "name": "yellow_stained_glass_pane", + "translation_key": "block.minecraft.yellow_stained_glass_pane", "item_id": 469, "properties": [ { @@ -96136,10 +95513,10 @@ ] } ], - "default_state_id": 9451, + "default_state_id": 9391, "states": [ { - "id": 9420, + "id": 9360, "luminance": 0, "opaque": false, "replaceable": false, @@ -96150,7 +95527,7 @@ ] }, { - "id": 9421, + "id": 9361, "luminance": 0, "opaque": false, "replaceable": false, @@ -96160,7 +95537,7 @@ ] }, { - "id": 9422, + "id": 9362, "luminance": 0, "opaque": false, "replaceable": false, @@ -96171,7 +95548,7 @@ ] }, { - "id": 9423, + "id": 9363, "luminance": 0, "opaque": false, "replaceable": false, @@ -96181,7 +95558,7 @@ ] }, { - "id": 9424, + "id": 9364, "luminance": 0, "opaque": false, "replaceable": false, @@ -96191,7 +95568,7 @@ ] }, { - "id": 9425, + "id": 9365, "luminance": 0, "opaque": false, "replaceable": false, @@ -96201,7 +95578,7 @@ ] }, { - "id": 9426, + "id": 9366, "luminance": 0, "opaque": false, "replaceable": false, @@ -96211,7 +95588,7 @@ ] }, { - "id": 9427, + "id": 9367, "luminance": 0, "opaque": false, "replaceable": false, @@ -96221,7 +95598,7 @@ ] }, { - "id": 9428, + "id": 9368, "luminance": 0, "opaque": false, "replaceable": false, @@ -96231,7 +95608,7 @@ ] }, { - "id": 9429, + "id": 9369, "luminance": 0, "opaque": false, "replaceable": false, @@ -96241,7 +95618,7 @@ ] }, { - "id": 9430, + "id": 9370, "luminance": 0, "opaque": false, "replaceable": false, @@ -96251,7 +95628,7 @@ ] }, { - "id": 9431, + "id": 9371, "luminance": 0, "opaque": false, "replaceable": false, @@ -96261,7 +95638,7 @@ ] }, { - "id": 9432, + "id": 9372, "luminance": 0, "opaque": false, "replaceable": false, @@ -96270,7 +95647,7 @@ ] }, { - "id": 9433, + "id": 9373, "luminance": 0, "opaque": false, "replaceable": false, @@ -96279,7 +95656,7 @@ ] }, { - "id": 9434, + "id": 9374, "luminance": 0, "opaque": false, "replaceable": false, @@ -96288,7 +95665,7 @@ ] }, { - "id": 9435, + "id": 9375, "luminance": 0, "opaque": false, "replaceable": false, @@ -96297,7 +95674,7 @@ ] }, { - "id": 9436, + "id": 9376, "luminance": 0, "opaque": false, "replaceable": false, @@ -96308,7 +95685,7 @@ ] }, { - "id": 9437, + "id": 9377, "luminance": 0, "opaque": false, "replaceable": false, @@ -96317,7 +95694,7 @@ ] }, { - "id": 9438, + "id": 9378, "luminance": 0, "opaque": false, "replaceable": false, @@ -96328,7 +95705,7 @@ ] }, { - "id": 9439, + "id": 9379, "luminance": 0, "opaque": false, "replaceable": false, @@ -96337,7 +95714,7 @@ ] }, { - "id": 9440, + "id": 9380, "luminance": 0, "opaque": false, "replaceable": false, @@ -96347,7 +95724,7 @@ ] }, { - "id": 9441, + "id": 9381, "luminance": 0, "opaque": false, "replaceable": false, @@ -96356,7 +95733,7 @@ ] }, { - "id": 9442, + "id": 9382, "luminance": 0, "opaque": false, "replaceable": false, @@ -96366,7 +95743,7 @@ ] }, { - "id": 9443, + "id": 9383, "luminance": 0, "opaque": false, "replaceable": false, @@ -96375,7 +95752,7 @@ ] }, { - "id": 9444, + "id": 9384, "luminance": 0, "opaque": false, "replaceable": false, @@ -96385,7 +95762,7 @@ ] }, { - "id": 9445, + "id": 9385, "luminance": 0, "opaque": false, "replaceable": false, @@ -96394,7 +95771,7 @@ ] }, { - "id": 9446, + "id": 9386, "luminance": 0, "opaque": false, "replaceable": false, @@ -96404,7 +95781,7 @@ ] }, { - "id": 9447, + "id": 9387, "luminance": 0, "opaque": false, "replaceable": false, @@ -96413,7 +95790,7 @@ ] }, { - "id": 9448, + "id": 9388, "luminance": 0, "opaque": false, "replaceable": false, @@ -96422,7 +95799,7 @@ ] }, { - "id": 9449, + "id": 9389, "luminance": 0, "opaque": false, "replaceable": false, @@ -96431,7 +95808,7 @@ ] }, { - "id": 9450, + "id": 9390, "luminance": 0, "opaque": false, "replaceable": false, @@ -96440,7 +95817,7 @@ ] }, { - "id": 9451, + "id": 9391, "luminance": 0, "opaque": false, "replaceable": false, @@ -96451,9 +95828,9 @@ ] }, { - "id": 447, - "name": "gray_stained_glass_pane", - "translation_key": "block.minecraft.gray_stained_glass_pane", + "id": 446, + "name": "lime_stained_glass_pane", + "translation_key": "block.minecraft.lime_stained_glass_pane", "item_id": 470, "properties": [ { @@ -96492,10 +95869,10 @@ ] } ], - "default_state_id": 9483, + "default_state_id": 9423, "states": [ { - "id": 9452, + "id": 9392, "luminance": 0, "opaque": false, "replaceable": false, @@ -96506,7 +95883,7 @@ ] }, { - "id": 9453, + "id": 9393, "luminance": 0, "opaque": false, "replaceable": false, @@ -96516,7 +95893,7 @@ ] }, { - "id": 9454, + "id": 9394, "luminance": 0, "opaque": false, "replaceable": false, @@ -96527,7 +95904,7 @@ ] }, { - "id": 9455, + "id": 9395, "luminance": 0, "opaque": false, "replaceable": false, @@ -96537,7 +95914,7 @@ ] }, { - "id": 9456, + "id": 9396, "luminance": 0, "opaque": false, "replaceable": false, @@ -96547,7 +95924,7 @@ ] }, { - "id": 9457, + "id": 9397, "luminance": 0, "opaque": false, "replaceable": false, @@ -96557,7 +95934,7 @@ ] }, { - "id": 9458, + "id": 9398, "luminance": 0, "opaque": false, "replaceable": false, @@ -96567,7 +95944,7 @@ ] }, { - "id": 9459, + "id": 9399, "luminance": 0, "opaque": false, "replaceable": false, @@ -96577,7 +95954,7 @@ ] }, { - "id": 9460, + "id": 9400, "luminance": 0, "opaque": false, "replaceable": false, @@ -96587,7 +95964,7 @@ ] }, { - "id": 9461, + "id": 9401, "luminance": 0, "opaque": false, "replaceable": false, @@ -96597,7 +95974,7 @@ ] }, { - "id": 9462, + "id": 9402, "luminance": 0, "opaque": false, "replaceable": false, @@ -96607,7 +95984,7 @@ ] }, { - "id": 9463, + "id": 9403, "luminance": 0, "opaque": false, "replaceable": false, @@ -96617,7 +95994,7 @@ ] }, { - "id": 9464, + "id": 9404, "luminance": 0, "opaque": false, "replaceable": false, @@ -96626,7 +96003,7 @@ ] }, { - "id": 9465, + "id": 9405, "luminance": 0, "opaque": false, "replaceable": false, @@ -96635,7 +96012,7 @@ ] }, { - "id": 9466, + "id": 9406, "luminance": 0, "opaque": false, "replaceable": false, @@ -96644,7 +96021,7 @@ ] }, { - "id": 9467, + "id": 9407, "luminance": 0, "opaque": false, "replaceable": false, @@ -96653,7 +96030,7 @@ ] }, { - "id": 9468, + "id": 9408, "luminance": 0, "opaque": false, "replaceable": false, @@ -96664,7 +96041,7 @@ ] }, { - "id": 9469, + "id": 9409, "luminance": 0, "opaque": false, "replaceable": false, @@ -96673,7 +96050,7 @@ ] }, { - "id": 9470, + "id": 9410, "luminance": 0, "opaque": false, "replaceable": false, @@ -96684,7 +96061,7 @@ ] }, { - "id": 9471, + "id": 9411, "luminance": 0, "opaque": false, "replaceable": false, @@ -96693,7 +96070,7 @@ ] }, { - "id": 9472, + "id": 9412, "luminance": 0, "opaque": false, "replaceable": false, @@ -96703,7 +96080,7 @@ ] }, { - "id": 9473, + "id": 9413, "luminance": 0, "opaque": false, "replaceable": false, @@ -96712,7 +96089,7 @@ ] }, { - "id": 9474, + "id": 9414, "luminance": 0, "opaque": false, "replaceable": false, @@ -96722,7 +96099,7 @@ ] }, { - "id": 9475, + "id": 9415, "luminance": 0, "opaque": false, "replaceable": false, @@ -96731,7 +96108,7 @@ ] }, { - "id": 9476, + "id": 9416, "luminance": 0, "opaque": false, "replaceable": false, @@ -96741,7 +96118,7 @@ ] }, { - "id": 9477, + "id": 9417, "luminance": 0, "opaque": false, "replaceable": false, @@ -96750,7 +96127,7 @@ ] }, { - "id": 9478, + "id": 9418, "luminance": 0, "opaque": false, "replaceable": false, @@ -96760,7 +96137,7 @@ ] }, { - "id": 9479, + "id": 9419, "luminance": 0, "opaque": false, "replaceable": false, @@ -96769,7 +96146,7 @@ ] }, { - "id": 9480, + "id": 9420, "luminance": 0, "opaque": false, "replaceable": false, @@ -96778,7 +96155,7 @@ ] }, { - "id": 9481, + "id": 9421, "luminance": 0, "opaque": false, "replaceable": false, @@ -96787,7 +96164,7 @@ ] }, { - "id": 9482, + "id": 9422, "luminance": 0, "opaque": false, "replaceable": false, @@ -96796,7 +96173,7 @@ ] }, { - "id": 9483, + "id": 9423, "luminance": 0, "opaque": false, "replaceable": false, @@ -96807,9 +96184,9 @@ ] }, { - "id": 448, - "name": "light_gray_stained_glass_pane", - "translation_key": "block.minecraft.light_gray_stained_glass_pane", + "id": 447, + "name": "pink_stained_glass_pane", + "translation_key": "block.minecraft.pink_stained_glass_pane", "item_id": 471, "properties": [ { @@ -96848,10 +96225,10 @@ ] } ], - "default_state_id": 9515, + "default_state_id": 9455, "states": [ { - "id": 9484, + "id": 9424, "luminance": 0, "opaque": false, "replaceable": false, @@ -96862,7 +96239,7 @@ ] }, { - "id": 9485, + "id": 9425, "luminance": 0, "opaque": false, "replaceable": false, @@ -96872,7 +96249,7 @@ ] }, { - "id": 9486, + "id": 9426, "luminance": 0, "opaque": false, "replaceable": false, @@ -96883,7 +96260,7 @@ ] }, { - "id": 9487, + "id": 9427, "luminance": 0, "opaque": false, "replaceable": false, @@ -96893,7 +96270,7 @@ ] }, { - "id": 9488, + "id": 9428, "luminance": 0, "opaque": false, "replaceable": false, @@ -96903,7 +96280,7 @@ ] }, { - "id": 9489, + "id": 9429, "luminance": 0, "opaque": false, "replaceable": false, @@ -96913,7 +96290,7 @@ ] }, { - "id": 9490, + "id": 9430, "luminance": 0, "opaque": false, "replaceable": false, @@ -96923,7 +96300,7 @@ ] }, { - "id": 9491, + "id": 9431, "luminance": 0, "opaque": false, "replaceable": false, @@ -96933,7 +96310,7 @@ ] }, { - "id": 9492, + "id": 9432, "luminance": 0, "opaque": false, "replaceable": false, @@ -96943,7 +96320,7 @@ ] }, { - "id": 9493, + "id": 9433, "luminance": 0, "opaque": false, "replaceable": false, @@ -96953,7 +96330,7 @@ ] }, { - "id": 9494, + "id": 9434, "luminance": 0, "opaque": false, "replaceable": false, @@ -96963,7 +96340,7 @@ ] }, { - "id": 9495, + "id": 9435, "luminance": 0, "opaque": false, "replaceable": false, @@ -96973,7 +96350,7 @@ ] }, { - "id": 9496, + "id": 9436, "luminance": 0, "opaque": false, "replaceable": false, @@ -96982,7 +96359,7 @@ ] }, { - "id": 9497, + "id": 9437, "luminance": 0, "opaque": false, "replaceable": false, @@ -96991,7 +96368,7 @@ ] }, { - "id": 9498, + "id": 9438, "luminance": 0, "opaque": false, "replaceable": false, @@ -97000,7 +96377,7 @@ ] }, { - "id": 9499, + "id": 9439, "luminance": 0, "opaque": false, "replaceable": false, @@ -97009,7 +96386,7 @@ ] }, { - "id": 9500, + "id": 9440, "luminance": 0, "opaque": false, "replaceable": false, @@ -97020,7 +96397,7 @@ ] }, { - "id": 9501, + "id": 9441, "luminance": 0, "opaque": false, "replaceable": false, @@ -97029,7 +96406,7 @@ ] }, { - "id": 9502, + "id": 9442, "luminance": 0, "opaque": false, "replaceable": false, @@ -97040,7 +96417,7 @@ ] }, { - "id": 9503, + "id": 9443, "luminance": 0, "opaque": false, "replaceable": false, @@ -97049,7 +96426,7 @@ ] }, { - "id": 9504, + "id": 9444, "luminance": 0, "opaque": false, "replaceable": false, @@ -97059,7 +96436,7 @@ ] }, { - "id": 9505, + "id": 9445, "luminance": 0, "opaque": false, "replaceable": false, @@ -97068,7 +96445,7 @@ ] }, { - "id": 9506, + "id": 9446, "luminance": 0, "opaque": false, "replaceable": false, @@ -97078,7 +96455,7 @@ ] }, { - "id": 9507, + "id": 9447, "luminance": 0, "opaque": false, "replaceable": false, @@ -97087,7 +96464,7 @@ ] }, { - "id": 9508, + "id": 9448, "luminance": 0, "opaque": false, "replaceable": false, @@ -97097,7 +96474,7 @@ ] }, { - "id": 9509, + "id": 9449, "luminance": 0, "opaque": false, "replaceable": false, @@ -97106,7 +96483,7 @@ ] }, { - "id": 9510, + "id": 9450, "luminance": 0, "opaque": false, "replaceable": false, @@ -97116,7 +96493,7 @@ ] }, { - "id": 9511, + "id": 9451, "luminance": 0, "opaque": false, "replaceable": false, @@ -97125,7 +96502,7 @@ ] }, { - "id": 9512, + "id": 9452, "luminance": 0, "opaque": false, "replaceable": false, @@ -97134,7 +96511,7 @@ ] }, { - "id": 9513, + "id": 9453, "luminance": 0, "opaque": false, "replaceable": false, @@ -97143,7 +96520,7 @@ ] }, { - "id": 9514, + "id": 9454, "luminance": 0, "opaque": false, "replaceable": false, @@ -97152,7 +96529,7 @@ ] }, { - "id": 9515, + "id": 9455, "luminance": 0, "opaque": false, "replaceable": false, @@ -97163,9 +96540,9 @@ ] }, { - "id": 449, - "name": "cyan_stained_glass_pane", - "translation_key": "block.minecraft.cyan_stained_glass_pane", + "id": 448, + "name": "gray_stained_glass_pane", + "translation_key": "block.minecraft.gray_stained_glass_pane", "item_id": 472, "properties": [ { @@ -97204,10 +96581,10 @@ ] } ], - "default_state_id": 9547, + "default_state_id": 9487, "states": [ { - "id": 9516, + "id": 9456, "luminance": 0, "opaque": false, "replaceable": false, @@ -97218,7 +96595,7 @@ ] }, { - "id": 9517, + "id": 9457, "luminance": 0, "opaque": false, "replaceable": false, @@ -97228,7 +96605,7 @@ ] }, { - "id": 9518, + "id": 9458, "luminance": 0, "opaque": false, "replaceable": false, @@ -97239,7 +96616,7 @@ ] }, { - "id": 9519, + "id": 9459, "luminance": 0, "opaque": false, "replaceable": false, @@ -97249,7 +96626,7 @@ ] }, { - "id": 9520, + "id": 9460, "luminance": 0, "opaque": false, "replaceable": false, @@ -97259,7 +96636,7 @@ ] }, { - "id": 9521, + "id": 9461, "luminance": 0, "opaque": false, "replaceable": false, @@ -97269,7 +96646,7 @@ ] }, { - "id": 9522, + "id": 9462, "luminance": 0, "opaque": false, "replaceable": false, @@ -97279,7 +96656,7 @@ ] }, { - "id": 9523, + "id": 9463, "luminance": 0, "opaque": false, "replaceable": false, @@ -97289,7 +96666,7 @@ ] }, { - "id": 9524, + "id": 9464, "luminance": 0, "opaque": false, "replaceable": false, @@ -97299,7 +96676,7 @@ ] }, { - "id": 9525, + "id": 9465, "luminance": 0, "opaque": false, "replaceable": false, @@ -97309,7 +96686,7 @@ ] }, { - "id": 9526, + "id": 9466, "luminance": 0, "opaque": false, "replaceable": false, @@ -97319,7 +96696,7 @@ ] }, { - "id": 9527, + "id": 9467, "luminance": 0, "opaque": false, "replaceable": false, @@ -97329,7 +96706,7 @@ ] }, { - "id": 9528, + "id": 9468, "luminance": 0, "opaque": false, "replaceable": false, @@ -97338,7 +96715,7 @@ ] }, { - "id": 9529, + "id": 9469, "luminance": 0, "opaque": false, "replaceable": false, @@ -97347,7 +96724,7 @@ ] }, { - "id": 9530, + "id": 9470, "luminance": 0, "opaque": false, "replaceable": false, @@ -97356,7 +96733,7 @@ ] }, { - "id": 9531, + "id": 9471, "luminance": 0, "opaque": false, "replaceable": false, @@ -97365,7 +96742,7 @@ ] }, { - "id": 9532, + "id": 9472, "luminance": 0, "opaque": false, "replaceable": false, @@ -97376,7 +96753,7 @@ ] }, { - "id": 9533, + "id": 9473, "luminance": 0, "opaque": false, "replaceable": false, @@ -97385,7 +96762,7 @@ ] }, { - "id": 9534, + "id": 9474, "luminance": 0, "opaque": false, "replaceable": false, @@ -97396,7 +96773,7 @@ ] }, { - "id": 9535, + "id": 9475, "luminance": 0, "opaque": false, "replaceable": false, @@ -97405,7 +96782,7 @@ ] }, { - "id": 9536, + "id": 9476, "luminance": 0, "opaque": false, "replaceable": false, @@ -97415,7 +96792,7 @@ ] }, { - "id": 9537, + "id": 9477, "luminance": 0, "opaque": false, "replaceable": false, @@ -97424,7 +96801,7 @@ ] }, { - "id": 9538, + "id": 9478, "luminance": 0, "opaque": false, "replaceable": false, @@ -97434,7 +96811,7 @@ ] }, { - "id": 9539, + "id": 9479, "luminance": 0, "opaque": false, "replaceable": false, @@ -97443,7 +96820,7 @@ ] }, { - "id": 9540, + "id": 9480, "luminance": 0, "opaque": false, "replaceable": false, @@ -97453,7 +96830,7 @@ ] }, { - "id": 9541, + "id": 9481, "luminance": 0, "opaque": false, "replaceable": false, @@ -97462,7 +96839,7 @@ ] }, { - "id": 9542, + "id": 9482, "luminance": 0, "opaque": false, "replaceable": false, @@ -97472,7 +96849,7 @@ ] }, { - "id": 9543, + "id": 9483, "luminance": 0, "opaque": false, "replaceable": false, @@ -97481,7 +96858,7 @@ ] }, { - "id": 9544, + "id": 9484, "luminance": 0, "opaque": false, "replaceable": false, @@ -97490,7 +96867,7 @@ ] }, { - "id": 9545, + "id": 9485, "luminance": 0, "opaque": false, "replaceable": false, @@ -97499,7 +96876,7 @@ ] }, { - "id": 9546, + "id": 9486, "luminance": 0, "opaque": false, "replaceable": false, @@ -97508,7 +96885,7 @@ ] }, { - "id": 9547, + "id": 9487, "luminance": 0, "opaque": false, "replaceable": false, @@ -97519,9 +96896,9 @@ ] }, { - "id": 450, - "name": "purple_stained_glass_pane", - "translation_key": "block.minecraft.purple_stained_glass_pane", + "id": 449, + "name": "light_gray_stained_glass_pane", + "translation_key": "block.minecraft.light_gray_stained_glass_pane", "item_id": 473, "properties": [ { @@ -97560,10 +96937,10 @@ ] } ], - "default_state_id": 9579, + "default_state_id": 9519, "states": [ { - "id": 9548, + "id": 9488, "luminance": 0, "opaque": false, "replaceable": false, @@ -97574,7 +96951,7 @@ ] }, { - "id": 9549, + "id": 9489, "luminance": 0, "opaque": false, "replaceable": false, @@ -97584,7 +96961,7 @@ ] }, { - "id": 9550, + "id": 9490, "luminance": 0, "opaque": false, "replaceable": false, @@ -97595,7 +96972,7 @@ ] }, { - "id": 9551, + "id": 9491, "luminance": 0, "opaque": false, "replaceable": false, @@ -97605,7 +96982,7 @@ ] }, { - "id": 9552, + "id": 9492, "luminance": 0, "opaque": false, "replaceable": false, @@ -97615,7 +96992,7 @@ ] }, { - "id": 9553, + "id": 9493, "luminance": 0, "opaque": false, "replaceable": false, @@ -97625,7 +97002,7 @@ ] }, { - "id": 9554, + "id": 9494, "luminance": 0, "opaque": false, "replaceable": false, @@ -97635,7 +97012,7 @@ ] }, { - "id": 9555, + "id": 9495, "luminance": 0, "opaque": false, "replaceable": false, @@ -97645,7 +97022,7 @@ ] }, { - "id": 9556, + "id": 9496, "luminance": 0, "opaque": false, "replaceable": false, @@ -97655,7 +97032,7 @@ ] }, { - "id": 9557, + "id": 9497, "luminance": 0, "opaque": false, "replaceable": false, @@ -97665,7 +97042,7 @@ ] }, { - "id": 9558, + "id": 9498, "luminance": 0, "opaque": false, "replaceable": false, @@ -97675,7 +97052,7 @@ ] }, { - "id": 9559, + "id": 9499, "luminance": 0, "opaque": false, "replaceable": false, @@ -97685,7 +97062,7 @@ ] }, { - "id": 9560, + "id": 9500, "luminance": 0, "opaque": false, "replaceable": false, @@ -97694,7 +97071,7 @@ ] }, { - "id": 9561, + "id": 9501, "luminance": 0, "opaque": false, "replaceable": false, @@ -97703,7 +97080,7 @@ ] }, { - "id": 9562, + "id": 9502, "luminance": 0, "opaque": false, "replaceable": false, @@ -97712,7 +97089,7 @@ ] }, { - "id": 9563, + "id": 9503, "luminance": 0, "opaque": false, "replaceable": false, @@ -97721,7 +97098,7 @@ ] }, { - "id": 9564, + "id": 9504, "luminance": 0, "opaque": false, "replaceable": false, @@ -97732,7 +97109,7 @@ ] }, { - "id": 9565, + "id": 9505, "luminance": 0, "opaque": false, "replaceable": false, @@ -97741,7 +97118,7 @@ ] }, { - "id": 9566, + "id": 9506, "luminance": 0, "opaque": false, "replaceable": false, @@ -97752,7 +97129,7 @@ ] }, { - "id": 9567, + "id": 9507, "luminance": 0, "opaque": false, "replaceable": false, @@ -97761,7 +97138,7 @@ ] }, { - "id": 9568, + "id": 9508, "luminance": 0, "opaque": false, "replaceable": false, @@ -97771,7 +97148,7 @@ ] }, { - "id": 9569, + "id": 9509, "luminance": 0, "opaque": false, "replaceable": false, @@ -97780,7 +97157,7 @@ ] }, { - "id": 9570, + "id": 9510, "luminance": 0, "opaque": false, "replaceable": false, @@ -97790,7 +97167,7 @@ ] }, { - "id": 9571, + "id": 9511, "luminance": 0, "opaque": false, "replaceable": false, @@ -97799,7 +97176,7 @@ ] }, { - "id": 9572, + "id": 9512, "luminance": 0, "opaque": false, "replaceable": false, @@ -97809,7 +97186,7 @@ ] }, { - "id": 9573, + "id": 9513, "luminance": 0, "opaque": false, "replaceable": false, @@ -97818,7 +97195,7 @@ ] }, { - "id": 9574, + "id": 9514, "luminance": 0, "opaque": false, "replaceable": false, @@ -97828,7 +97205,7 @@ ] }, { - "id": 9575, + "id": 9515, "luminance": 0, "opaque": false, "replaceable": false, @@ -97837,7 +97214,7 @@ ] }, { - "id": 9576, + "id": 9516, "luminance": 0, "opaque": false, "replaceable": false, @@ -97846,7 +97223,7 @@ ] }, { - "id": 9577, + "id": 9517, "luminance": 0, "opaque": false, "replaceable": false, @@ -97855,7 +97232,7 @@ ] }, { - "id": 9578, + "id": 9518, "luminance": 0, "opaque": false, "replaceable": false, @@ -97864,7 +97241,7 @@ ] }, { - "id": 9579, + "id": 9519, "luminance": 0, "opaque": false, "replaceable": false, @@ -97875,9 +97252,9 @@ ] }, { - "id": 451, - "name": "blue_stained_glass_pane", - "translation_key": "block.minecraft.blue_stained_glass_pane", + "id": 450, + "name": "cyan_stained_glass_pane", + "translation_key": "block.minecraft.cyan_stained_glass_pane", "item_id": 474, "properties": [ { @@ -97916,10 +97293,10 @@ ] } ], - "default_state_id": 9611, + "default_state_id": 9551, "states": [ { - "id": 9580, + "id": 9520, "luminance": 0, "opaque": false, "replaceable": false, @@ -97930,7 +97307,7 @@ ] }, { - "id": 9581, + "id": 9521, "luminance": 0, "opaque": false, "replaceable": false, @@ -97940,7 +97317,7 @@ ] }, { - "id": 9582, + "id": 9522, "luminance": 0, "opaque": false, "replaceable": false, @@ -97951,7 +97328,7 @@ ] }, { - "id": 9583, + "id": 9523, "luminance": 0, "opaque": false, "replaceable": false, @@ -97961,7 +97338,7 @@ ] }, { - "id": 9584, + "id": 9524, "luminance": 0, "opaque": false, "replaceable": false, @@ -97971,7 +97348,7 @@ ] }, { - "id": 9585, + "id": 9525, "luminance": 0, "opaque": false, "replaceable": false, @@ -97981,7 +97358,7 @@ ] }, { - "id": 9586, + "id": 9526, "luminance": 0, "opaque": false, "replaceable": false, @@ -97991,7 +97368,7 @@ ] }, { - "id": 9587, + "id": 9527, "luminance": 0, "opaque": false, "replaceable": false, @@ -98001,7 +97378,7 @@ ] }, { - "id": 9588, + "id": 9528, "luminance": 0, "opaque": false, "replaceable": false, @@ -98011,7 +97388,7 @@ ] }, { - "id": 9589, + "id": 9529, "luminance": 0, "opaque": false, "replaceable": false, @@ -98021,7 +97398,7 @@ ] }, { - "id": 9590, + "id": 9530, "luminance": 0, "opaque": false, "replaceable": false, @@ -98031,7 +97408,7 @@ ] }, { - "id": 9591, + "id": 9531, "luminance": 0, "opaque": false, "replaceable": false, @@ -98041,7 +97418,7 @@ ] }, { - "id": 9592, + "id": 9532, "luminance": 0, "opaque": false, "replaceable": false, @@ -98050,7 +97427,7 @@ ] }, { - "id": 9593, + "id": 9533, "luminance": 0, "opaque": false, "replaceable": false, @@ -98059,7 +97436,7 @@ ] }, { - "id": 9594, + "id": 9534, "luminance": 0, "opaque": false, "replaceable": false, @@ -98068,7 +97445,7 @@ ] }, { - "id": 9595, + "id": 9535, "luminance": 0, "opaque": false, "replaceable": false, @@ -98077,7 +97454,7 @@ ] }, { - "id": 9596, + "id": 9536, "luminance": 0, "opaque": false, "replaceable": false, @@ -98088,7 +97465,7 @@ ] }, { - "id": 9597, + "id": 9537, "luminance": 0, "opaque": false, "replaceable": false, @@ -98097,7 +97474,7 @@ ] }, { - "id": 9598, + "id": 9538, "luminance": 0, "opaque": false, "replaceable": false, @@ -98108,7 +97485,7 @@ ] }, { - "id": 9599, + "id": 9539, "luminance": 0, "opaque": false, "replaceable": false, @@ -98117,7 +97494,7 @@ ] }, { - "id": 9600, + "id": 9540, "luminance": 0, "opaque": false, "replaceable": false, @@ -98127,7 +97504,7 @@ ] }, { - "id": 9601, + "id": 9541, "luminance": 0, "opaque": false, "replaceable": false, @@ -98136,7 +97513,7 @@ ] }, { - "id": 9602, + "id": 9542, "luminance": 0, "opaque": false, "replaceable": false, @@ -98146,7 +97523,7 @@ ] }, { - "id": 9603, + "id": 9543, "luminance": 0, "opaque": false, "replaceable": false, @@ -98155,7 +97532,7 @@ ] }, { - "id": 9604, + "id": 9544, "luminance": 0, "opaque": false, "replaceable": false, @@ -98165,7 +97542,7 @@ ] }, { - "id": 9605, + "id": 9545, "luminance": 0, "opaque": false, "replaceable": false, @@ -98174,7 +97551,7 @@ ] }, { - "id": 9606, + "id": 9546, "luminance": 0, "opaque": false, "replaceable": false, @@ -98184,7 +97561,7 @@ ] }, { - "id": 9607, + "id": 9547, "luminance": 0, "opaque": false, "replaceable": false, @@ -98193,7 +97570,7 @@ ] }, { - "id": 9608, + "id": 9548, "luminance": 0, "opaque": false, "replaceable": false, @@ -98202,7 +97579,7 @@ ] }, { - "id": 9609, + "id": 9549, "luminance": 0, "opaque": false, "replaceable": false, @@ -98211,7 +97588,7 @@ ] }, { - "id": 9610, + "id": 9550, "luminance": 0, "opaque": false, "replaceable": false, @@ -98220,7 +97597,7 @@ ] }, { - "id": 9611, + "id": 9551, "luminance": 0, "opaque": false, "replaceable": false, @@ -98231,9 +97608,9 @@ ] }, { - "id": 452, - "name": "brown_stained_glass_pane", - "translation_key": "block.minecraft.brown_stained_glass_pane", + "id": 451, + "name": "purple_stained_glass_pane", + "translation_key": "block.minecraft.purple_stained_glass_pane", "item_id": 475, "properties": [ { @@ -98272,10 +97649,10 @@ ] } ], - "default_state_id": 9643, + "default_state_id": 9583, "states": [ { - "id": 9612, + "id": 9552, "luminance": 0, "opaque": false, "replaceable": false, @@ -98286,7 +97663,7 @@ ] }, { - "id": 9613, + "id": 9553, "luminance": 0, "opaque": false, "replaceable": false, @@ -98296,7 +97673,7 @@ ] }, { - "id": 9614, + "id": 9554, "luminance": 0, "opaque": false, "replaceable": false, @@ -98307,7 +97684,7 @@ ] }, { - "id": 9615, + "id": 9555, "luminance": 0, "opaque": false, "replaceable": false, @@ -98317,7 +97694,7 @@ ] }, { - "id": 9616, + "id": 9556, "luminance": 0, "opaque": false, "replaceable": false, @@ -98327,7 +97704,7 @@ ] }, { - "id": 9617, + "id": 9557, "luminance": 0, "opaque": false, "replaceable": false, @@ -98337,7 +97714,7 @@ ] }, { - "id": 9618, + "id": 9558, "luminance": 0, "opaque": false, "replaceable": false, @@ -98347,7 +97724,7 @@ ] }, { - "id": 9619, + "id": 9559, "luminance": 0, "opaque": false, "replaceable": false, @@ -98357,7 +97734,7 @@ ] }, { - "id": 9620, + "id": 9560, "luminance": 0, "opaque": false, "replaceable": false, @@ -98367,7 +97744,7 @@ ] }, { - "id": 9621, + "id": 9561, "luminance": 0, "opaque": false, "replaceable": false, @@ -98377,7 +97754,7 @@ ] }, { - "id": 9622, + "id": 9562, "luminance": 0, "opaque": false, "replaceable": false, @@ -98387,7 +97764,7 @@ ] }, { - "id": 9623, + "id": 9563, "luminance": 0, "opaque": false, "replaceable": false, @@ -98397,7 +97774,7 @@ ] }, { - "id": 9624, + "id": 9564, "luminance": 0, "opaque": false, "replaceable": false, @@ -98406,7 +97783,7 @@ ] }, { - "id": 9625, + "id": 9565, "luminance": 0, "opaque": false, "replaceable": false, @@ -98415,7 +97792,7 @@ ] }, { - "id": 9626, + "id": 9566, "luminance": 0, "opaque": false, "replaceable": false, @@ -98424,7 +97801,7 @@ ] }, { - "id": 9627, + "id": 9567, "luminance": 0, "opaque": false, "replaceable": false, @@ -98433,7 +97810,7 @@ ] }, { - "id": 9628, + "id": 9568, "luminance": 0, "opaque": false, "replaceable": false, @@ -98444,7 +97821,7 @@ ] }, { - "id": 9629, + "id": 9569, "luminance": 0, "opaque": false, "replaceable": false, @@ -98453,7 +97830,7 @@ ] }, { - "id": 9630, + "id": 9570, "luminance": 0, "opaque": false, "replaceable": false, @@ -98464,7 +97841,7 @@ ] }, { - "id": 9631, + "id": 9571, "luminance": 0, "opaque": false, "replaceable": false, @@ -98473,7 +97850,7 @@ ] }, { - "id": 9632, + "id": 9572, "luminance": 0, "opaque": false, "replaceable": false, @@ -98483,7 +97860,7 @@ ] }, { - "id": 9633, + "id": 9573, "luminance": 0, "opaque": false, "replaceable": false, @@ -98492,7 +97869,7 @@ ] }, { - "id": 9634, + "id": 9574, "luminance": 0, "opaque": false, "replaceable": false, @@ -98502,7 +97879,7 @@ ] }, { - "id": 9635, + "id": 9575, "luminance": 0, "opaque": false, "replaceable": false, @@ -98511,7 +97888,7 @@ ] }, { - "id": 9636, + "id": 9576, "luminance": 0, "opaque": false, "replaceable": false, @@ -98521,7 +97898,7 @@ ] }, { - "id": 9637, + "id": 9577, "luminance": 0, "opaque": false, "replaceable": false, @@ -98530,7 +97907,7 @@ ] }, { - "id": 9638, + "id": 9578, "luminance": 0, "opaque": false, "replaceable": false, @@ -98540,7 +97917,7 @@ ] }, { - "id": 9639, + "id": 9579, "luminance": 0, "opaque": false, "replaceable": false, @@ -98549,7 +97926,7 @@ ] }, { - "id": 9640, + "id": 9580, "luminance": 0, "opaque": false, "replaceable": false, @@ -98558,7 +97935,7 @@ ] }, { - "id": 9641, + "id": 9581, "luminance": 0, "opaque": false, "replaceable": false, @@ -98567,7 +97944,7 @@ ] }, { - "id": 9642, + "id": 9582, "luminance": 0, "opaque": false, "replaceable": false, @@ -98576,7 +97953,7 @@ ] }, { - "id": 9643, + "id": 9583, "luminance": 0, "opaque": false, "replaceable": false, @@ -98587,9 +97964,9 @@ ] }, { - "id": 453, - "name": "green_stained_glass_pane", - "translation_key": "block.minecraft.green_stained_glass_pane", + "id": 452, + "name": "blue_stained_glass_pane", + "translation_key": "block.minecraft.blue_stained_glass_pane", "item_id": 476, "properties": [ { @@ -98628,10 +98005,10 @@ ] } ], - "default_state_id": 9675, + "default_state_id": 9615, "states": [ { - "id": 9644, + "id": 9584, "luminance": 0, "opaque": false, "replaceable": false, @@ -98642,7 +98019,7 @@ ] }, { - "id": 9645, + "id": 9585, "luminance": 0, "opaque": false, "replaceable": false, @@ -98652,7 +98029,7 @@ ] }, { - "id": 9646, + "id": 9586, "luminance": 0, "opaque": false, "replaceable": false, @@ -98663,7 +98040,7 @@ ] }, { - "id": 9647, + "id": 9587, "luminance": 0, "opaque": false, "replaceable": false, @@ -98673,7 +98050,7 @@ ] }, { - "id": 9648, + "id": 9588, "luminance": 0, "opaque": false, "replaceable": false, @@ -98683,7 +98060,7 @@ ] }, { - "id": 9649, + "id": 9589, "luminance": 0, "opaque": false, "replaceable": false, @@ -98693,7 +98070,7 @@ ] }, { - "id": 9650, + "id": 9590, "luminance": 0, "opaque": false, "replaceable": false, @@ -98703,7 +98080,7 @@ ] }, { - "id": 9651, + "id": 9591, "luminance": 0, "opaque": false, "replaceable": false, @@ -98713,7 +98090,7 @@ ] }, { - "id": 9652, + "id": 9592, "luminance": 0, "opaque": false, "replaceable": false, @@ -98723,7 +98100,7 @@ ] }, { - "id": 9653, + "id": 9593, "luminance": 0, "opaque": false, "replaceable": false, @@ -98733,7 +98110,7 @@ ] }, { - "id": 9654, + "id": 9594, "luminance": 0, "opaque": false, "replaceable": false, @@ -98743,7 +98120,7 @@ ] }, { - "id": 9655, + "id": 9595, "luminance": 0, "opaque": false, "replaceable": false, @@ -98753,7 +98130,7 @@ ] }, { - "id": 9656, + "id": 9596, "luminance": 0, "opaque": false, "replaceable": false, @@ -98762,7 +98139,7 @@ ] }, { - "id": 9657, + "id": 9597, "luminance": 0, "opaque": false, "replaceable": false, @@ -98771,7 +98148,7 @@ ] }, { - "id": 9658, + "id": 9598, "luminance": 0, "opaque": false, "replaceable": false, @@ -98780,7 +98157,7 @@ ] }, { - "id": 9659, + "id": 9599, "luminance": 0, "opaque": false, "replaceable": false, @@ -98789,7 +98166,7 @@ ] }, { - "id": 9660, + "id": 9600, "luminance": 0, "opaque": false, "replaceable": false, @@ -98800,7 +98177,7 @@ ] }, { - "id": 9661, + "id": 9601, "luminance": 0, "opaque": false, "replaceable": false, @@ -98809,7 +98186,7 @@ ] }, { - "id": 9662, + "id": 9602, "luminance": 0, "opaque": false, "replaceable": false, @@ -98820,7 +98197,7 @@ ] }, { - "id": 9663, + "id": 9603, "luminance": 0, "opaque": false, "replaceable": false, @@ -98829,7 +98206,7 @@ ] }, { - "id": 9664, + "id": 9604, "luminance": 0, "opaque": false, "replaceable": false, @@ -98839,7 +98216,7 @@ ] }, { - "id": 9665, + "id": 9605, "luminance": 0, "opaque": false, "replaceable": false, @@ -98848,7 +98225,7 @@ ] }, { - "id": 9666, + "id": 9606, "luminance": 0, "opaque": false, "replaceable": false, @@ -98858,7 +98235,7 @@ ] }, { - "id": 9667, + "id": 9607, "luminance": 0, "opaque": false, "replaceable": false, @@ -98867,7 +98244,7 @@ ] }, { - "id": 9668, + "id": 9608, "luminance": 0, "opaque": false, "replaceable": false, @@ -98877,7 +98254,7 @@ ] }, { - "id": 9669, + "id": 9609, "luminance": 0, "opaque": false, "replaceable": false, @@ -98886,7 +98263,7 @@ ] }, { - "id": 9670, + "id": 9610, "luminance": 0, "opaque": false, "replaceable": false, @@ -98896,7 +98273,7 @@ ] }, { - "id": 9671, + "id": 9611, "luminance": 0, "opaque": false, "replaceable": false, @@ -98905,7 +98282,7 @@ ] }, { - "id": 9672, + "id": 9612, "luminance": 0, "opaque": false, "replaceable": false, @@ -98914,7 +98291,7 @@ ] }, { - "id": 9673, + "id": 9613, "luminance": 0, "opaque": false, "replaceable": false, @@ -98923,7 +98300,7 @@ ] }, { - "id": 9674, + "id": 9614, "luminance": 0, "opaque": false, "replaceable": false, @@ -98932,7 +98309,7 @@ ] }, { - "id": 9675, + "id": 9615, "luminance": 0, "opaque": false, "replaceable": false, @@ -98943,9 +98320,9 @@ ] }, { - "id": 454, - "name": "red_stained_glass_pane", - "translation_key": "block.minecraft.red_stained_glass_pane", + "id": 453, + "name": "brown_stained_glass_pane", + "translation_key": "block.minecraft.brown_stained_glass_pane", "item_id": 477, "properties": [ { @@ -98984,10 +98361,10 @@ ] } ], - "default_state_id": 9707, + "default_state_id": 9647, "states": [ { - "id": 9676, + "id": 9616, "luminance": 0, "opaque": false, "replaceable": false, @@ -98998,7 +98375,7 @@ ] }, { - "id": 9677, + "id": 9617, "luminance": 0, "opaque": false, "replaceable": false, @@ -99008,7 +98385,7 @@ ] }, { - "id": 9678, + "id": 9618, "luminance": 0, "opaque": false, "replaceable": false, @@ -99019,7 +98396,7 @@ ] }, { - "id": 9679, + "id": 9619, "luminance": 0, "opaque": false, "replaceable": false, @@ -99029,7 +98406,7 @@ ] }, { - "id": 9680, + "id": 9620, "luminance": 0, "opaque": false, "replaceable": false, @@ -99039,7 +98416,7 @@ ] }, { - "id": 9681, + "id": 9621, "luminance": 0, "opaque": false, "replaceable": false, @@ -99049,7 +98426,7 @@ ] }, { - "id": 9682, + "id": 9622, "luminance": 0, "opaque": false, "replaceable": false, @@ -99059,7 +98436,7 @@ ] }, { - "id": 9683, + "id": 9623, "luminance": 0, "opaque": false, "replaceable": false, @@ -99069,7 +98446,7 @@ ] }, { - "id": 9684, + "id": 9624, "luminance": 0, "opaque": false, "replaceable": false, @@ -99079,7 +98456,7 @@ ] }, { - "id": 9685, + "id": 9625, "luminance": 0, "opaque": false, "replaceable": false, @@ -99089,7 +98466,7 @@ ] }, { - "id": 9686, + "id": 9626, "luminance": 0, "opaque": false, "replaceable": false, @@ -99099,7 +98476,7 @@ ] }, { - "id": 9687, + "id": 9627, "luminance": 0, "opaque": false, "replaceable": false, @@ -99109,7 +98486,7 @@ ] }, { - "id": 9688, + "id": 9628, "luminance": 0, "opaque": false, "replaceable": false, @@ -99118,7 +98495,7 @@ ] }, { - "id": 9689, + "id": 9629, "luminance": 0, "opaque": false, "replaceable": false, @@ -99127,7 +98504,7 @@ ] }, { - "id": 9690, + "id": 9630, "luminance": 0, "opaque": false, "replaceable": false, @@ -99136,7 +98513,7 @@ ] }, { - "id": 9691, + "id": 9631, "luminance": 0, "opaque": false, "replaceable": false, @@ -99145,7 +98522,7 @@ ] }, { - "id": 9692, + "id": 9632, "luminance": 0, "opaque": false, "replaceable": false, @@ -99156,7 +98533,7 @@ ] }, { - "id": 9693, + "id": 9633, "luminance": 0, "opaque": false, "replaceable": false, @@ -99165,7 +98542,7 @@ ] }, { - "id": 9694, + "id": 9634, "luminance": 0, "opaque": false, "replaceable": false, @@ -99176,7 +98553,7 @@ ] }, { - "id": 9695, + "id": 9635, "luminance": 0, "opaque": false, "replaceable": false, @@ -99185,7 +98562,7 @@ ] }, { - "id": 9696, + "id": 9636, "luminance": 0, "opaque": false, "replaceable": false, @@ -99195,7 +98572,7 @@ ] }, { - "id": 9697, + "id": 9637, "luminance": 0, "opaque": false, "replaceable": false, @@ -99204,7 +98581,7 @@ ] }, { - "id": 9698, + "id": 9638, "luminance": 0, "opaque": false, "replaceable": false, @@ -99214,7 +98591,7 @@ ] }, { - "id": 9699, + "id": 9639, "luminance": 0, "opaque": false, "replaceable": false, @@ -99223,7 +98600,7 @@ ] }, { - "id": 9700, + "id": 9640, "luminance": 0, "opaque": false, "replaceable": false, @@ -99233,7 +98610,7 @@ ] }, { - "id": 9701, + "id": 9641, "luminance": 0, "opaque": false, "replaceable": false, @@ -99242,7 +98619,7 @@ ] }, { - "id": 9702, + "id": 9642, "luminance": 0, "opaque": false, "replaceable": false, @@ -99252,7 +98629,7 @@ ] }, { - "id": 9703, + "id": 9643, "luminance": 0, "opaque": false, "replaceable": false, @@ -99261,7 +98638,7 @@ ] }, { - "id": 9704, + "id": 9644, "luminance": 0, "opaque": false, "replaceable": false, @@ -99270,7 +98647,7 @@ ] }, { - "id": 9705, + "id": 9645, "luminance": 0, "opaque": false, "replaceable": false, @@ -99279,7 +98656,7 @@ ] }, { - "id": 9706, + "id": 9646, "luminance": 0, "opaque": false, "replaceable": false, @@ -99288,7 +98665,7 @@ ] }, { - "id": 9707, + "id": 9647, "luminance": 0, "opaque": false, "replaceable": false, @@ -99299,9 +98676,9 @@ ] }, { - "id": 455, - "name": "black_stained_glass_pane", - "translation_key": "block.minecraft.black_stained_glass_pane", + "id": 454, + "name": "green_stained_glass_pane", + "translation_key": "block.minecraft.green_stained_glass_pane", "item_id": 478, "properties": [ { @@ -99340,10 +98717,10 @@ ] } ], - "default_state_id": 9739, + "default_state_id": 9679, "states": [ { - "id": 9708, + "id": 9648, "luminance": 0, "opaque": false, "replaceable": false, @@ -99354,7 +98731,7 @@ ] }, { - "id": 9709, + "id": 9649, "luminance": 0, "opaque": false, "replaceable": false, @@ -99364,7 +98741,7 @@ ] }, { - "id": 9710, + "id": 9650, "luminance": 0, "opaque": false, "replaceable": false, @@ -99375,7 +98752,7 @@ ] }, { - "id": 9711, + "id": 9651, "luminance": 0, "opaque": false, "replaceable": false, @@ -99385,7 +98762,7 @@ ] }, { - "id": 9712, + "id": 9652, "luminance": 0, "opaque": false, "replaceable": false, @@ -99395,7 +98772,7 @@ ] }, { - "id": 9713, + "id": 9653, "luminance": 0, "opaque": false, "replaceable": false, @@ -99405,7 +98782,7 @@ ] }, { - "id": 9714, + "id": 9654, "luminance": 0, "opaque": false, "replaceable": false, @@ -99415,7 +98792,7 @@ ] }, { - "id": 9715, + "id": 9655, "luminance": 0, "opaque": false, "replaceable": false, @@ -99425,7 +98802,7 @@ ] }, { - "id": 9716, + "id": 9656, "luminance": 0, "opaque": false, "replaceable": false, @@ -99435,7 +98812,7 @@ ] }, { - "id": 9717, + "id": 9657, "luminance": 0, "opaque": false, "replaceable": false, @@ -99445,7 +98822,7 @@ ] }, { - "id": 9718, + "id": 9658, "luminance": 0, "opaque": false, "replaceable": false, @@ -99455,7 +98832,7 @@ ] }, { - "id": 9719, + "id": 9659, "luminance": 0, "opaque": false, "replaceable": false, @@ -99465,7 +98842,7 @@ ] }, { - "id": 9720, + "id": 9660, "luminance": 0, "opaque": false, "replaceable": false, @@ -99474,7 +98851,7 @@ ] }, { - "id": 9721, + "id": 9661, "luminance": 0, "opaque": false, "replaceable": false, @@ -99483,7 +98860,7 @@ ] }, { - "id": 9722, + "id": 9662, "luminance": 0, "opaque": false, "replaceable": false, @@ -99492,7 +98869,7 @@ ] }, { - "id": 9723, + "id": 9663, "luminance": 0, "opaque": false, "replaceable": false, @@ -99501,7 +98878,7 @@ ] }, { - "id": 9724, + "id": 9664, "luminance": 0, "opaque": false, "replaceable": false, @@ -99512,7 +98889,7 @@ ] }, { - "id": 9725, + "id": 9665, "luminance": 0, "opaque": false, "replaceable": false, @@ -99521,7 +98898,7 @@ ] }, { - "id": 9726, + "id": 9666, "luminance": 0, "opaque": false, "replaceable": false, @@ -99532,7 +98909,7 @@ ] }, { - "id": 9727, + "id": 9667, "luminance": 0, "opaque": false, "replaceable": false, @@ -99541,7 +98918,7 @@ ] }, { - "id": 9728, + "id": 9668, "luminance": 0, "opaque": false, "replaceable": false, @@ -99551,7 +98928,7 @@ ] }, { - "id": 9729, + "id": 9669, "luminance": 0, "opaque": false, "replaceable": false, @@ -99560,7 +98937,7 @@ ] }, { - "id": 9730, + "id": 9670, "luminance": 0, "opaque": false, "replaceable": false, @@ -99570,7 +98947,7 @@ ] }, { - "id": 9731, + "id": 9671, "luminance": 0, "opaque": false, "replaceable": false, @@ -99579,7 +98956,7 @@ ] }, { - "id": 9732, + "id": 9672, "luminance": 0, "opaque": false, "replaceable": false, @@ -99589,7 +98966,7 @@ ] }, { - "id": 9733, + "id": 9673, "luminance": 0, "opaque": false, "replaceable": false, @@ -99598,7 +98975,7 @@ ] }, { - "id": 9734, + "id": 9674, "luminance": 0, "opaque": false, "replaceable": false, @@ -99608,7 +98985,7 @@ ] }, { - "id": 9735, + "id": 9675, "luminance": 0, "opaque": false, "replaceable": false, @@ -99617,7 +98994,7 @@ ] }, { - "id": 9736, + "id": 9676, "luminance": 0, "opaque": false, "replaceable": false, @@ -99626,7 +99003,7 @@ ] }, { - "id": 9737, + "id": 9677, "luminance": 0, "opaque": false, "replaceable": false, @@ -99635,7 +99012,7 @@ ] }, { - "id": 9738, + "id": 9678, "luminance": 0, "opaque": false, "replaceable": false, @@ -99644,7 +99021,363 @@ ] }, { - "id": 9739, + "id": 9679, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 103 + ] + } + ] + }, + { + "id": 455, + "name": "red_stained_glass_pane", + "translation_key": "block.minecraft.red_stained_glass_pane", + "item_id": 479, + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 9711, + "states": [ + { + "id": 9680, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 95, + 96 + ] + }, + { + "id": 9681, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 97, + 98 + ] + }, + { + "id": 9682, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 95, + 96 + ] + }, + { + "id": 9683, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 97, + 98 + ] + }, + { + "id": 9684, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 95 + ] + }, + { + "id": 9685, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 99, + 98 + ] + }, + { + "id": 9686, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 95 + ] + }, + { + "id": 9687, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 99, + 98 + ] + }, + { + "id": 9688, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 96 + ] + }, + { + "id": 9689, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 100, + 98 + ] + }, + { + "id": 9690, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 96 + ] + }, + { + "id": 9691, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 100, + 98 + ] + }, + { + "id": 9692, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94 + ] + }, + { + "id": 9693, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 9694, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94 + ] + }, + { + "id": 9695, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 9696, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 95, + 96 + ] + }, + { + "id": 9697, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 9698, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 95, + 96 + ] + }, + { + "id": 9699, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 9700, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 95 + ] + }, + { + "id": 9701, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 9702, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 95 + ] + }, + { + "id": 9703, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 9704, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 96 + ] + }, + { + "id": 9705, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 9706, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 96 + ] + }, + { + "id": 9707, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 9708, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102 + ] + }, + { + "id": 9709, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 103 + ] + }, + { + "id": 9710, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102 + ] + }, + { + "id": 9711, "luminance": 0, "opaque": false, "replaceable": false, @@ -99656,34 +99389,29 @@ }, { "id": 456, - "name": "acacia_stairs", - "translation_key": "block.minecraft.acacia_stairs", - "item_id": 363, + "name": "black_stained_glass_pane", + "translation_key": "block.minecraft.black_stained_glass_pane", + "item_id": 480, "properties": [ { - "name": "facing", + "name": "east", "values": [ - "north", - "south", - "west", - "east" + "true", + "false" ] }, { - "name": "half", + "name": "north", "values": [ - "top", - "bottom" + "true", + "false" ] }, { - "name": "shape", + "name": "south", "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "true", + "false" ] }, { @@ -99692,1756 +99420,333 @@ "true", "false" ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] } ], - "default_state_id": 9751, + "default_state_id": 9743, "states": [ + { + "id": 9712, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 95, + 96 + ] + }, + { + "id": 9713, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 97, + 98 + ] + }, + { + "id": 9714, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 95, + 96 + ] + }, + { + "id": 9715, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 97, + 98 + ] + }, + { + "id": 9716, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 95 + ] + }, + { + "id": 9717, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 99, + 98 + ] + }, + { + "id": 9718, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 95 + ] + }, + { + "id": 9719, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 99, + 98 + ] + }, + { + "id": 9720, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 96 + ] + }, + { + "id": 9721, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 100, + 98 + ] + }, + { + "id": 9722, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94, + 96 + ] + }, + { + "id": 9723, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 100, + 98 + ] + }, + { + "id": 9724, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94 + ] + }, + { + "id": 9725, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 9726, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 94 + ] + }, + { + "id": 9727, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 101 + ] + }, + { + "id": 9728, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 95, + 96 + ] + }, + { + "id": 9729, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 9730, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 95, + 96 + ] + }, + { + "id": 9731, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 97 + ] + }, + { + "id": 9732, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 95 + ] + }, + { + "id": 9733, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 9734, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 95 + ] + }, + { + "id": 9735, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 99 + ] + }, + { + "id": 9736, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 96 + ] + }, + { + "id": 9737, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 100 + ] + }, + { + "id": 9738, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 102, + 96 + ] + }, + { + "id": 9739, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 100 + ] + }, { "id": 9740, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ - 41, - 42 + 102 ] }, { "id": 9741, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ - 41, - 42 + 103 ] }, { "id": 9742, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 + 102 ] }, { "id": 9743, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 9744, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 9745, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 9746, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 9747, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 9748, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 9749, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 9750, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 9751, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 9752, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 9753, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 9754, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 9755, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 9756, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 9757, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 9758, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 9759, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 9760, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 9761, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 9762, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 9763, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 9764, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 9765, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 9766, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 9767, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 9768, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 9769, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 9770, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 9771, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 9772, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 9773, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 9774, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 9775, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 9776, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 9777, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 9778, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 9779, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 9780, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 9781, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 9782, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 9783, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 9784, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 9785, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 9786, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 9787, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 9788, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 9789, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 9790, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 9791, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 9792, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 9793, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 9794, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 9795, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 9796, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 9797, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 9798, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 9799, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 9800, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 9801, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 9802, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 9803, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 9804, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 9805, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 9806, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 9807, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 9808, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 9809, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 9810, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 9811, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 9812, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 9813, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 9814, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 9815, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 9816, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 9817, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 9818, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 9819, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 + 103 ] } ] }, { "id": 457, - "name": "cherry_stairs", - "translation_key": "block.minecraft.cherry_stairs", - "item_id": 364, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 9831, - "states": [ - { - "id": 9820, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 9821, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 9822, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 9823, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 9824, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 9825, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 9826, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 9827, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 9828, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 9829, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 9830, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 9831, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 9832, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 9833, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 9834, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 9835, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 9836, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 9837, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 9838, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 9839, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 9840, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 9841, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 9842, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 9843, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 9844, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 9845, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 9846, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 9847, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 9848, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 9849, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 9850, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 9851, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 9852, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 9853, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 9854, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 9855, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 9856, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 9857, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 9858, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 9859, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 9860, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 9861, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 9862, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 9863, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 9864, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 9865, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 9866, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 9867, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 9868, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 9869, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 9870, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 9871, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 9872, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 9873, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 9874, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 9875, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 9876, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 9877, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 9878, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 9879, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 9880, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 9881, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 9882, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 9883, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 9884, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 9885, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 9886, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 9887, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 9888, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 9889, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 9890, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 9891, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 9892, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 9893, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 9894, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 9895, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 9896, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 9897, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 9898, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 9899, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - } - ] - }, - { - "id": 458, - "name": "dark_oak_stairs", - "translation_key": "block.minecraft.dark_oak_stairs", + "name": "acacia_stairs", + "translation_key": "block.minecraft.acacia_stairs", "item_id": 365, "properties": [ { @@ -101478,10 +99783,10 @@ ] } ], - "default_state_id": 9911, + "default_state_id": 9755, "states": [ { - "id": 9900, + "id": 9744, "luminance": 0, "opaque": true, "replaceable": false, @@ -101491,7 +99796,7 @@ ] }, { - "id": 9901, + "id": 9745, "luminance": 0, "opaque": true, "replaceable": false, @@ -101501,7 +99806,7 @@ ] }, { - "id": 9902, + "id": 9746, "luminance": 0, "opaque": true, "replaceable": false, @@ -101512,7 +99817,7 @@ ] }, { - "id": 9903, + "id": 9747, "luminance": 0, "opaque": true, "replaceable": false, @@ -101523,7 +99828,7 @@ ] }, { - "id": 9904, + "id": 9748, "luminance": 0, "opaque": true, "replaceable": false, @@ -101534,7 +99839,7 @@ ] }, { - "id": 9905, + "id": 9749, "luminance": 0, "opaque": true, "replaceable": false, @@ -101545,7 +99850,7 @@ ] }, { - "id": 9906, + "id": 9750, "luminance": 0, "opaque": true, "replaceable": false, @@ -101556,7 +99861,7 @@ ] }, { - "id": 9907, + "id": 9751, "luminance": 0, "opaque": true, "replaceable": false, @@ -101567,7 +99872,7 @@ ] }, { - "id": 9908, + "id": 9752, "luminance": 0, "opaque": true, "replaceable": false, @@ -101578,7 +99883,7 @@ ] }, { - "id": 9909, + "id": 9753, "luminance": 0, "opaque": true, "replaceable": false, @@ -101589,7 +99894,7 @@ ] }, { - "id": 9910, + "id": 9754, "luminance": 0, "opaque": true, "replaceable": false, @@ -101599,7 +99904,7 @@ ] }, { - "id": 9911, + "id": 9755, "luminance": 0, "opaque": true, "replaceable": false, @@ -101609,7 +99914,7 @@ ] }, { - "id": 9912, + "id": 9756, "luminance": 0, "opaque": true, "replaceable": false, @@ -101620,7 +99925,7 @@ ] }, { - "id": 9913, + "id": 9757, "luminance": 0, "opaque": true, "replaceable": false, @@ -101631,7 +99936,7 @@ ] }, { - "id": 9914, + "id": 9758, "luminance": 0, "opaque": true, "replaceable": false, @@ -101642,7 +99947,7 @@ ] }, { - "id": 9915, + "id": 9759, "luminance": 0, "opaque": true, "replaceable": false, @@ -101653,7 +99958,7 @@ ] }, { - "id": 9916, + "id": 9760, "luminance": 0, "opaque": true, "replaceable": false, @@ -101663,7 +99968,7 @@ ] }, { - "id": 9917, + "id": 9761, "luminance": 0, "opaque": true, "replaceable": false, @@ -101673,7 +99978,7 @@ ] }, { - "id": 9918, + "id": 9762, "luminance": 0, "opaque": true, "replaceable": false, @@ -101683,7 +99988,7 @@ ] }, { - "id": 9919, + "id": 9763, "luminance": 0, "opaque": true, "replaceable": false, @@ -101693,7 +99998,7 @@ ] }, { - "id": 9920, + "id": 9764, "luminance": 0, "opaque": true, "replaceable": false, @@ -101703,7 +100008,7 @@ ] }, { - "id": 9921, + "id": 9765, "luminance": 0, "opaque": true, "replaceable": false, @@ -101713,7 +100018,7 @@ ] }, { - "id": 9922, + "id": 9766, "luminance": 0, "opaque": true, "replaceable": false, @@ -101724,7 +100029,7 @@ ] }, { - "id": 9923, + "id": 9767, "luminance": 0, "opaque": true, "replaceable": false, @@ -101735,7 +100040,7 @@ ] }, { - "id": 9924, + "id": 9768, "luminance": 0, "opaque": true, "replaceable": false, @@ -101746,7 +100051,7 @@ ] }, { - "id": 9925, + "id": 9769, "luminance": 0, "opaque": true, "replaceable": false, @@ -101757,7 +100062,7 @@ ] }, { - "id": 9926, + "id": 9770, "luminance": 0, "opaque": true, "replaceable": false, @@ -101768,7 +100073,7 @@ ] }, { - "id": 9927, + "id": 9771, "luminance": 0, "opaque": true, "replaceable": false, @@ -101779,7 +100084,7 @@ ] }, { - "id": 9928, + "id": 9772, "luminance": 0, "opaque": true, "replaceable": false, @@ -101790,7 +100095,7 @@ ] }, { - "id": 9929, + "id": 9773, "luminance": 0, "opaque": true, "replaceable": false, @@ -101801,7 +100106,7 @@ ] }, { - "id": 9930, + "id": 9774, "luminance": 0, "opaque": true, "replaceable": false, @@ -101811,7 +100116,7 @@ ] }, { - "id": 9931, + "id": 9775, "luminance": 0, "opaque": true, "replaceable": false, @@ -101821,7 +100126,7 @@ ] }, { - "id": 9932, + "id": 9776, "luminance": 0, "opaque": true, "replaceable": false, @@ -101832,7 +100137,7 @@ ] }, { - "id": 9933, + "id": 9777, "luminance": 0, "opaque": true, "replaceable": false, @@ -101843,7 +100148,7 @@ ] }, { - "id": 9934, + "id": 9778, "luminance": 0, "opaque": true, "replaceable": false, @@ -101854,7 +100159,7 @@ ] }, { - "id": 9935, + "id": 9779, "luminance": 0, "opaque": true, "replaceable": false, @@ -101865,7 +100170,7 @@ ] }, { - "id": 9936, + "id": 9780, "luminance": 0, "opaque": true, "replaceable": false, @@ -101875,7 +100180,7 @@ ] }, { - "id": 9937, + "id": 9781, "luminance": 0, "opaque": true, "replaceable": false, @@ -101885,7 +100190,7 @@ ] }, { - "id": 9938, + "id": 9782, "luminance": 0, "opaque": true, "replaceable": false, @@ -101895,7 +100200,7 @@ ] }, { - "id": 9939, + "id": 9783, "luminance": 0, "opaque": true, "replaceable": false, @@ -101905,7 +100210,7 @@ ] }, { - "id": 9940, + "id": 9784, "luminance": 0, "opaque": true, "replaceable": false, @@ -101915,7 +100220,7 @@ ] }, { - "id": 9941, + "id": 9785, "luminance": 0, "opaque": true, "replaceable": false, @@ -101925,7 +100230,7 @@ ] }, { - "id": 9942, + "id": 9786, "luminance": 0, "opaque": true, "replaceable": false, @@ -101936,7 +100241,7 @@ ] }, { - "id": 9943, + "id": 9787, "luminance": 0, "opaque": true, "replaceable": false, @@ -101947,7 +100252,7 @@ ] }, { - "id": 9944, + "id": 9788, "luminance": 0, "opaque": true, "replaceable": false, @@ -101958,7 +100263,7 @@ ] }, { - "id": 9945, + "id": 9789, "luminance": 0, "opaque": true, "replaceable": false, @@ -101969,7 +100274,7 @@ ] }, { - "id": 9946, + "id": 9790, "luminance": 0, "opaque": true, "replaceable": false, @@ -101980,7 +100285,7 @@ ] }, { - "id": 9947, + "id": 9791, "luminance": 0, "opaque": true, "replaceable": false, @@ -101991,7 +100296,7 @@ ] }, { - "id": 9948, + "id": 9792, "luminance": 0, "opaque": true, "replaceable": false, @@ -102002,7 +100307,7 @@ ] }, { - "id": 9949, + "id": 9793, "luminance": 0, "opaque": true, "replaceable": false, @@ -102013,7 +100318,7 @@ ] }, { - "id": 9950, + "id": 9794, "luminance": 0, "opaque": true, "replaceable": false, @@ -102023,7 +100328,7 @@ ] }, { - "id": 9951, + "id": 9795, "luminance": 0, "opaque": true, "replaceable": false, @@ -102033,7 +100338,7 @@ ] }, { - "id": 9952, + "id": 9796, "luminance": 0, "opaque": true, "replaceable": false, @@ -102044,7 +100349,7 @@ ] }, { - "id": 9953, + "id": 9797, "luminance": 0, "opaque": true, "replaceable": false, @@ -102055,7 +100360,7 @@ ] }, { - "id": 9954, + "id": 9798, "luminance": 0, "opaque": true, "replaceable": false, @@ -102066,7 +100371,7 @@ ] }, { - "id": 9955, + "id": 9799, "luminance": 0, "opaque": true, "replaceable": false, @@ -102077,7 +100382,7 @@ ] }, { - "id": 9956, + "id": 9800, "luminance": 0, "opaque": true, "replaceable": false, @@ -102087,7 +100392,7 @@ ] }, { - "id": 9957, + "id": 9801, "luminance": 0, "opaque": true, "replaceable": false, @@ -102097,7 +100402,7 @@ ] }, { - "id": 9958, + "id": 9802, "luminance": 0, "opaque": true, "replaceable": false, @@ -102107,7 +100412,7 @@ ] }, { - "id": 9959, + "id": 9803, "luminance": 0, "opaque": true, "replaceable": false, @@ -102117,7 +100422,7 @@ ] }, { - "id": 9960, + "id": 9804, "luminance": 0, "opaque": true, "replaceable": false, @@ -102127,7 +100432,7 @@ ] }, { - "id": 9961, + "id": 9805, "luminance": 0, "opaque": true, "replaceable": false, @@ -102137,7 +100442,7 @@ ] }, { - "id": 9962, + "id": 9806, "luminance": 0, "opaque": true, "replaceable": false, @@ -102148,7 +100453,7 @@ ] }, { - "id": 9963, + "id": 9807, "luminance": 0, "opaque": true, "replaceable": false, @@ -102159,7 +100464,7 @@ ] }, { - "id": 9964, + "id": 9808, "luminance": 0, "opaque": true, "replaceable": false, @@ -102170,7 +100475,7 @@ ] }, { - "id": 9965, + "id": 9809, "luminance": 0, "opaque": true, "replaceable": false, @@ -102181,7 +100486,7 @@ ] }, { - "id": 9966, + "id": 9810, "luminance": 0, "opaque": true, "replaceable": false, @@ -102192,7 +100497,7 @@ ] }, { - "id": 9967, + "id": 9811, "luminance": 0, "opaque": true, "replaceable": false, @@ -102203,7 +100508,7 @@ ] }, { - "id": 9968, + "id": 9812, "luminance": 0, "opaque": true, "replaceable": false, @@ -102214,7 +100519,7 @@ ] }, { - "id": 9969, + "id": 9813, "luminance": 0, "opaque": true, "replaceable": false, @@ -102225,7 +100530,7 @@ ] }, { - "id": 9970, + "id": 9814, "luminance": 0, "opaque": true, "replaceable": false, @@ -102235,7 +100540,7 @@ ] }, { - "id": 9971, + "id": 9815, "luminance": 0, "opaque": true, "replaceable": false, @@ -102245,7 +100550,7 @@ ] }, { - "id": 9972, + "id": 9816, "luminance": 0, "opaque": true, "replaceable": false, @@ -102256,7 +100561,7 @@ ] }, { - "id": 9973, + "id": 9817, "luminance": 0, "opaque": true, "replaceable": false, @@ -102267,7 +100572,7 @@ ] }, { - "id": 9974, + "id": 9818, "luminance": 0, "opaque": true, "replaceable": false, @@ -102278,7 +100583,7 @@ ] }, { - "id": 9975, + "id": 9819, "luminance": 0, "opaque": true, "replaceable": false, @@ -102289,7 +100594,7 @@ ] }, { - "id": 9976, + "id": 9820, "luminance": 0, "opaque": true, "replaceable": false, @@ -102299,7 +100604,7 @@ ] }, { - "id": 9977, + "id": 9821, "luminance": 0, "opaque": true, "replaceable": false, @@ -102309,7 +100614,7 @@ ] }, { - "id": 9978, + "id": 9822, "luminance": 0, "opaque": true, "replaceable": false, @@ -102319,7 +100624,7 @@ ] }, { - "id": 9979, + "id": 9823, "luminance": 0, "opaque": true, "replaceable": false, @@ -102331,9 +100636,9 @@ ] }, { - "id": 459, - "name": "mangrove_stairs", - "translation_key": "block.minecraft.mangrove_stairs", + "id": 458, + "name": "cherry_stairs", + "translation_key": "block.minecraft.cherry_stairs", "item_id": 366, "properties": [ { @@ -102370,10 +100675,10 @@ ] } ], - "default_state_id": 9991, + "default_state_id": 9835, "states": [ { - "id": 9980, + "id": 9824, "luminance": 0, "opaque": true, "replaceable": false, @@ -102383,7 +100688,7 @@ ] }, { - "id": 9981, + "id": 9825, "luminance": 0, "opaque": true, "replaceable": false, @@ -102393,7 +100698,7 @@ ] }, { - "id": 9982, + "id": 9826, "luminance": 0, "opaque": true, "replaceable": false, @@ -102404,7 +100709,7 @@ ] }, { - "id": 9983, + "id": 9827, "luminance": 0, "opaque": true, "replaceable": false, @@ -102415,7 +100720,7 @@ ] }, { - "id": 9984, + "id": 9828, "luminance": 0, "opaque": true, "replaceable": false, @@ -102426,7 +100731,7 @@ ] }, { - "id": 9985, + "id": 9829, "luminance": 0, "opaque": true, "replaceable": false, @@ -102437,7 +100742,7 @@ ] }, { - "id": 9986, + "id": 9830, "luminance": 0, "opaque": true, "replaceable": false, @@ -102448,7 +100753,7 @@ ] }, { - "id": 9987, + "id": 9831, "luminance": 0, "opaque": true, "replaceable": false, @@ -102459,7 +100764,7 @@ ] }, { - "id": 9988, + "id": 9832, "luminance": 0, "opaque": true, "replaceable": false, @@ -102470,7 +100775,7 @@ ] }, { - "id": 9989, + "id": 9833, "luminance": 0, "opaque": true, "replaceable": false, @@ -102481,7 +100786,7 @@ ] }, { - "id": 9990, + "id": 9834, "luminance": 0, "opaque": true, "replaceable": false, @@ -102491,7 +100796,7 @@ ] }, { - "id": 9991, + "id": 9835, "luminance": 0, "opaque": true, "replaceable": false, @@ -102501,7 +100806,7 @@ ] }, { - "id": 9992, + "id": 9836, "luminance": 0, "opaque": true, "replaceable": false, @@ -102512,7 +100817,7 @@ ] }, { - "id": 9993, + "id": 9837, "luminance": 0, "opaque": true, "replaceable": false, @@ -102523,7 +100828,7 @@ ] }, { - "id": 9994, + "id": 9838, "luminance": 0, "opaque": true, "replaceable": false, @@ -102534,7 +100839,7 @@ ] }, { - "id": 9995, + "id": 9839, "luminance": 0, "opaque": true, "replaceable": false, @@ -102545,7 +100850,7 @@ ] }, { - "id": 9996, + "id": 9840, "luminance": 0, "opaque": true, "replaceable": false, @@ -102555,7 +100860,7 @@ ] }, { - "id": 9997, + "id": 9841, "luminance": 0, "opaque": true, "replaceable": false, @@ -102565,7 +100870,7 @@ ] }, { - "id": 9998, + "id": 9842, "luminance": 0, "opaque": true, "replaceable": false, @@ -102575,7 +100880,7 @@ ] }, { - "id": 9999, + "id": 9843, "luminance": 0, "opaque": true, "replaceable": false, @@ -102585,7 +100890,7 @@ ] }, { - "id": 10000, + "id": 9844, "luminance": 0, "opaque": true, "replaceable": false, @@ -102595,7 +100900,7 @@ ] }, { - "id": 10001, + "id": 9845, "luminance": 0, "opaque": true, "replaceable": false, @@ -102605,7 +100910,7 @@ ] }, { - "id": 10002, + "id": 9846, "luminance": 0, "opaque": true, "replaceable": false, @@ -102616,7 +100921,7 @@ ] }, { - "id": 10003, + "id": 9847, "luminance": 0, "opaque": true, "replaceable": false, @@ -102627,7 +100932,7 @@ ] }, { - "id": 10004, + "id": 9848, "luminance": 0, "opaque": true, "replaceable": false, @@ -102638,7 +100943,7 @@ ] }, { - "id": 10005, + "id": 9849, "luminance": 0, "opaque": true, "replaceable": false, @@ -102649,7 +100954,7 @@ ] }, { - "id": 10006, + "id": 9850, "luminance": 0, "opaque": true, "replaceable": false, @@ -102660,7 +100965,7 @@ ] }, { - "id": 10007, + "id": 9851, "luminance": 0, "opaque": true, "replaceable": false, @@ -102671,7 +100976,7 @@ ] }, { - "id": 10008, + "id": 9852, "luminance": 0, "opaque": true, "replaceable": false, @@ -102682,7 +100987,7 @@ ] }, { - "id": 10009, + "id": 9853, "luminance": 0, "opaque": true, "replaceable": false, @@ -102693,7 +100998,7 @@ ] }, { - "id": 10010, + "id": 9854, "luminance": 0, "opaque": true, "replaceable": false, @@ -102703,7 +101008,7 @@ ] }, { - "id": 10011, + "id": 9855, "luminance": 0, "opaque": true, "replaceable": false, @@ -102713,7 +101018,7 @@ ] }, { - "id": 10012, + "id": 9856, "luminance": 0, "opaque": true, "replaceable": false, @@ -102724,7 +101029,7 @@ ] }, { - "id": 10013, + "id": 9857, "luminance": 0, "opaque": true, "replaceable": false, @@ -102735,7 +101040,7 @@ ] }, { - "id": 10014, + "id": 9858, "luminance": 0, "opaque": true, "replaceable": false, @@ -102746,7 +101051,7 @@ ] }, { - "id": 10015, + "id": 9859, "luminance": 0, "opaque": true, "replaceable": false, @@ -102757,7 +101062,7 @@ ] }, { - "id": 10016, + "id": 9860, "luminance": 0, "opaque": true, "replaceable": false, @@ -102767,7 +101072,7 @@ ] }, { - "id": 10017, + "id": 9861, "luminance": 0, "opaque": true, "replaceable": false, @@ -102777,7 +101082,7 @@ ] }, { - "id": 10018, + "id": 9862, "luminance": 0, "opaque": true, "replaceable": false, @@ -102787,7 +101092,7 @@ ] }, { - "id": 10019, + "id": 9863, "luminance": 0, "opaque": true, "replaceable": false, @@ -102797,7 +101102,7 @@ ] }, { - "id": 10020, + "id": 9864, "luminance": 0, "opaque": true, "replaceable": false, @@ -102807,7 +101112,7 @@ ] }, { - "id": 10021, + "id": 9865, "luminance": 0, "opaque": true, "replaceable": false, @@ -102817,7 +101122,7 @@ ] }, { - "id": 10022, + "id": 9866, "luminance": 0, "opaque": true, "replaceable": false, @@ -102828,7 +101133,7 @@ ] }, { - "id": 10023, + "id": 9867, "luminance": 0, "opaque": true, "replaceable": false, @@ -102839,7 +101144,7 @@ ] }, { - "id": 10024, + "id": 9868, "luminance": 0, "opaque": true, "replaceable": false, @@ -102850,7 +101155,7 @@ ] }, { - "id": 10025, + "id": 9869, "luminance": 0, "opaque": true, "replaceable": false, @@ -102861,7 +101166,7 @@ ] }, { - "id": 10026, + "id": 9870, "luminance": 0, "opaque": true, "replaceable": false, @@ -102872,7 +101177,7 @@ ] }, { - "id": 10027, + "id": 9871, "luminance": 0, "opaque": true, "replaceable": false, @@ -102883,7 +101188,7 @@ ] }, { - "id": 10028, + "id": 9872, "luminance": 0, "opaque": true, "replaceable": false, @@ -102894,7 +101199,7 @@ ] }, { - "id": 10029, + "id": 9873, "luminance": 0, "opaque": true, "replaceable": false, @@ -102905,7 +101210,7 @@ ] }, { - "id": 10030, + "id": 9874, "luminance": 0, "opaque": true, "replaceable": false, @@ -102915,7 +101220,7 @@ ] }, { - "id": 10031, + "id": 9875, "luminance": 0, "opaque": true, "replaceable": false, @@ -102925,7 +101230,7 @@ ] }, { - "id": 10032, + "id": 9876, "luminance": 0, "opaque": true, "replaceable": false, @@ -102936,7 +101241,7 @@ ] }, { - "id": 10033, + "id": 9877, "luminance": 0, "opaque": true, "replaceable": false, @@ -102947,7 +101252,7 @@ ] }, { - "id": 10034, + "id": 9878, "luminance": 0, "opaque": true, "replaceable": false, @@ -102958,7 +101263,7 @@ ] }, { - "id": 10035, + "id": 9879, "luminance": 0, "opaque": true, "replaceable": false, @@ -102969,7 +101274,7 @@ ] }, { - "id": 10036, + "id": 9880, "luminance": 0, "opaque": true, "replaceable": false, @@ -102979,7 +101284,7 @@ ] }, { - "id": 10037, + "id": 9881, "luminance": 0, "opaque": true, "replaceable": false, @@ -102989,7 +101294,7 @@ ] }, { - "id": 10038, + "id": 9882, "luminance": 0, "opaque": true, "replaceable": false, @@ -102999,7 +101304,7 @@ ] }, { - "id": 10039, + "id": 9883, "luminance": 0, "opaque": true, "replaceable": false, @@ -103009,7 +101314,7 @@ ] }, { - "id": 10040, + "id": 9884, "luminance": 0, "opaque": true, "replaceable": false, @@ -103019,7 +101324,7 @@ ] }, { - "id": 10041, + "id": 9885, "luminance": 0, "opaque": true, "replaceable": false, @@ -103029,7 +101334,7 @@ ] }, { - "id": 10042, + "id": 9886, "luminance": 0, "opaque": true, "replaceable": false, @@ -103040,7 +101345,7 @@ ] }, { - "id": 10043, + "id": 9887, "luminance": 0, "opaque": true, "replaceable": false, @@ -103051,7 +101356,7 @@ ] }, { - "id": 10044, + "id": 9888, "luminance": 0, "opaque": true, "replaceable": false, @@ -103062,7 +101367,7 @@ ] }, { - "id": 10045, + "id": 9889, "luminance": 0, "opaque": true, "replaceable": false, @@ -103073,7 +101378,7 @@ ] }, { - "id": 10046, + "id": 9890, "luminance": 0, "opaque": true, "replaceable": false, @@ -103084,7 +101389,7 @@ ] }, { - "id": 10047, + "id": 9891, "luminance": 0, "opaque": true, "replaceable": false, @@ -103095,7 +101400,7 @@ ] }, { - "id": 10048, + "id": 9892, "luminance": 0, "opaque": true, "replaceable": false, @@ -103106,7 +101411,7 @@ ] }, { - "id": 10049, + "id": 9893, "luminance": 0, "opaque": true, "replaceable": false, @@ -103117,7 +101422,7 @@ ] }, { - "id": 10050, + "id": 9894, "luminance": 0, "opaque": true, "replaceable": false, @@ -103127,7 +101432,7 @@ ] }, { - "id": 10051, + "id": 9895, "luminance": 0, "opaque": true, "replaceable": false, @@ -103137,7 +101442,7 @@ ] }, { - "id": 10052, + "id": 9896, "luminance": 0, "opaque": true, "replaceable": false, @@ -103148,7 +101453,7 @@ ] }, { - "id": 10053, + "id": 9897, "luminance": 0, "opaque": true, "replaceable": false, @@ -103159,7 +101464,7 @@ ] }, { - "id": 10054, + "id": 9898, "luminance": 0, "opaque": true, "replaceable": false, @@ -103170,7 +101475,7 @@ ] }, { - "id": 10055, + "id": 9899, "luminance": 0, "opaque": true, "replaceable": false, @@ -103181,7 +101486,7 @@ ] }, { - "id": 10056, + "id": 9900, "luminance": 0, "opaque": true, "replaceable": false, @@ -103191,7 +101496,7 @@ ] }, { - "id": 10057, + "id": 9901, "luminance": 0, "opaque": true, "replaceable": false, @@ -103201,7 +101506,7 @@ ] }, { - "id": 10058, + "id": 9902, "luminance": 0, "opaque": true, "replaceable": false, @@ -103211,7 +101516,7 @@ ] }, { - "id": 10059, + "id": 9903, "luminance": 0, "opaque": true, "replaceable": false, @@ -103223,9 +101528,9 @@ ] }, { - "id": 460, - "name": "bamboo_stairs", - "translation_key": "block.minecraft.bamboo_stairs", + "id": 459, + "name": "dark_oak_stairs", + "translation_key": "block.minecraft.dark_oak_stairs", "item_id": 367, "properties": [ { @@ -103262,10 +101567,10 @@ ] } ], - "default_state_id": 10071, + "default_state_id": 9915, "states": [ { - "id": 10060, + "id": 9904, "luminance": 0, "opaque": true, "replaceable": false, @@ -103275,7 +101580,7 @@ ] }, { - "id": 10061, + "id": 9905, "luminance": 0, "opaque": true, "replaceable": false, @@ -103285,7 +101590,7 @@ ] }, { - "id": 10062, + "id": 9906, "luminance": 0, "opaque": true, "replaceable": false, @@ -103296,7 +101601,7 @@ ] }, { - "id": 10063, + "id": 9907, "luminance": 0, "opaque": true, "replaceable": false, @@ -103307,7 +101612,7 @@ ] }, { - "id": 10064, + "id": 9908, "luminance": 0, "opaque": true, "replaceable": false, @@ -103318,7 +101623,7 @@ ] }, { - "id": 10065, + "id": 9909, "luminance": 0, "opaque": true, "replaceable": false, @@ -103329,7 +101634,7 @@ ] }, { - "id": 10066, + "id": 9910, "luminance": 0, "opaque": true, "replaceable": false, @@ -103340,7 +101645,7 @@ ] }, { - "id": 10067, + "id": 9911, "luminance": 0, "opaque": true, "replaceable": false, @@ -103351,7 +101656,7 @@ ] }, { - "id": 10068, + "id": 9912, "luminance": 0, "opaque": true, "replaceable": false, @@ -103362,7 +101667,7 @@ ] }, { - "id": 10069, + "id": 9913, "luminance": 0, "opaque": true, "replaceable": false, @@ -103373,7 +101678,7 @@ ] }, { - "id": 10070, + "id": 9914, "luminance": 0, "opaque": true, "replaceable": false, @@ -103383,7 +101688,7 @@ ] }, { - "id": 10071, + "id": 9915, "luminance": 0, "opaque": true, "replaceable": false, @@ -103393,7 +101698,7 @@ ] }, { - "id": 10072, + "id": 9916, "luminance": 0, "opaque": true, "replaceable": false, @@ -103404,7 +101709,7 @@ ] }, { - "id": 10073, + "id": 9917, "luminance": 0, "opaque": true, "replaceable": false, @@ -103415,7 +101720,7 @@ ] }, { - "id": 10074, + "id": 9918, "luminance": 0, "opaque": true, "replaceable": false, @@ -103426,7 +101731,7 @@ ] }, { - "id": 10075, + "id": 9919, "luminance": 0, "opaque": true, "replaceable": false, @@ -103437,7 +101742,7 @@ ] }, { - "id": 10076, + "id": 9920, "luminance": 0, "opaque": true, "replaceable": false, @@ -103447,7 +101752,7 @@ ] }, { - "id": 10077, + "id": 9921, "luminance": 0, "opaque": true, "replaceable": false, @@ -103457,7 +101762,7 @@ ] }, { - "id": 10078, + "id": 9922, "luminance": 0, "opaque": true, "replaceable": false, @@ -103467,7 +101772,7 @@ ] }, { - "id": 10079, + "id": 9923, "luminance": 0, "opaque": true, "replaceable": false, @@ -103477,7 +101782,7 @@ ] }, { - "id": 10080, + "id": 9924, "luminance": 0, "opaque": true, "replaceable": false, @@ -103487,7 +101792,7 @@ ] }, { - "id": 10081, + "id": 9925, "luminance": 0, "opaque": true, "replaceable": false, @@ -103497,7 +101802,7 @@ ] }, { - "id": 10082, + "id": 9926, "luminance": 0, "opaque": true, "replaceable": false, @@ -103508,7 +101813,7 @@ ] }, { - "id": 10083, + "id": 9927, "luminance": 0, "opaque": true, "replaceable": false, @@ -103519,7 +101824,7 @@ ] }, { - "id": 10084, + "id": 9928, "luminance": 0, "opaque": true, "replaceable": false, @@ -103530,7 +101835,7 @@ ] }, { - "id": 10085, + "id": 9929, "luminance": 0, "opaque": true, "replaceable": false, @@ -103541,7 +101846,7 @@ ] }, { - "id": 10086, + "id": 9930, "luminance": 0, "opaque": true, "replaceable": false, @@ -103552,7 +101857,7 @@ ] }, { - "id": 10087, + "id": 9931, "luminance": 0, "opaque": true, "replaceable": false, @@ -103563,7 +101868,7 @@ ] }, { - "id": 10088, + "id": 9932, "luminance": 0, "opaque": true, "replaceable": false, @@ -103574,7 +101879,7 @@ ] }, { - "id": 10089, + "id": 9933, "luminance": 0, "opaque": true, "replaceable": false, @@ -103585,7 +101890,7 @@ ] }, { - "id": 10090, + "id": 9934, "luminance": 0, "opaque": true, "replaceable": false, @@ -103595,7 +101900,7 @@ ] }, { - "id": 10091, + "id": 9935, "luminance": 0, "opaque": true, "replaceable": false, @@ -103605,7 +101910,7 @@ ] }, { - "id": 10092, + "id": 9936, "luminance": 0, "opaque": true, "replaceable": false, @@ -103616,7 +101921,7 @@ ] }, { - "id": 10093, + "id": 9937, "luminance": 0, "opaque": true, "replaceable": false, @@ -103627,7 +101932,7 @@ ] }, { - "id": 10094, + "id": 9938, "luminance": 0, "opaque": true, "replaceable": false, @@ -103638,7 +101943,7 @@ ] }, { - "id": 10095, + "id": 9939, "luminance": 0, "opaque": true, "replaceable": false, @@ -103649,7 +101954,7 @@ ] }, { - "id": 10096, + "id": 9940, "luminance": 0, "opaque": true, "replaceable": false, @@ -103659,7 +101964,7 @@ ] }, { - "id": 10097, + "id": 9941, "luminance": 0, "opaque": true, "replaceable": false, @@ -103669,7 +101974,7 @@ ] }, { - "id": 10098, + "id": 9942, "luminance": 0, "opaque": true, "replaceable": false, @@ -103679,7 +101984,7 @@ ] }, { - "id": 10099, + "id": 9943, "luminance": 0, "opaque": true, "replaceable": false, @@ -103689,7 +101994,7 @@ ] }, { - "id": 10100, + "id": 9944, "luminance": 0, "opaque": true, "replaceable": false, @@ -103699,7 +102004,7 @@ ] }, { - "id": 10101, + "id": 9945, "luminance": 0, "opaque": true, "replaceable": false, @@ -103709,7 +102014,7 @@ ] }, { - "id": 10102, + "id": 9946, "luminance": 0, "opaque": true, "replaceable": false, @@ -103720,7 +102025,7 @@ ] }, { - "id": 10103, + "id": 9947, "luminance": 0, "opaque": true, "replaceable": false, @@ -103731,7 +102036,7 @@ ] }, { - "id": 10104, + "id": 9948, "luminance": 0, "opaque": true, "replaceable": false, @@ -103742,7 +102047,7 @@ ] }, { - "id": 10105, + "id": 9949, "luminance": 0, "opaque": true, "replaceable": false, @@ -103753,7 +102058,7 @@ ] }, { - "id": 10106, + "id": 9950, "luminance": 0, "opaque": true, "replaceable": false, @@ -103764,7 +102069,7 @@ ] }, { - "id": 10107, + "id": 9951, "luminance": 0, "opaque": true, "replaceable": false, @@ -103775,7 +102080,7 @@ ] }, { - "id": 10108, + "id": 9952, "luminance": 0, "opaque": true, "replaceable": false, @@ -103786,7 +102091,7 @@ ] }, { - "id": 10109, + "id": 9953, "luminance": 0, "opaque": true, "replaceable": false, @@ -103797,7 +102102,7 @@ ] }, { - "id": 10110, + "id": 9954, "luminance": 0, "opaque": true, "replaceable": false, @@ -103807,7 +102112,7 @@ ] }, { - "id": 10111, + "id": 9955, "luminance": 0, "opaque": true, "replaceable": false, @@ -103817,7 +102122,7 @@ ] }, { - "id": 10112, + "id": 9956, "luminance": 0, "opaque": true, "replaceable": false, @@ -103828,7 +102133,7 @@ ] }, { - "id": 10113, + "id": 9957, "luminance": 0, "opaque": true, "replaceable": false, @@ -103839,7 +102144,7 @@ ] }, { - "id": 10114, + "id": 9958, "luminance": 0, "opaque": true, "replaceable": false, @@ -103850,7 +102155,7 @@ ] }, { - "id": 10115, + "id": 9959, "luminance": 0, "opaque": true, "replaceable": false, @@ -103861,7 +102166,7 @@ ] }, { - "id": 10116, + "id": 9960, "luminance": 0, "opaque": true, "replaceable": false, @@ -103871,7 +102176,7 @@ ] }, { - "id": 10117, + "id": 9961, "luminance": 0, "opaque": true, "replaceable": false, @@ -103881,7 +102186,7 @@ ] }, { - "id": 10118, + "id": 9962, "luminance": 0, "opaque": true, "replaceable": false, @@ -103891,7 +102196,7 @@ ] }, { - "id": 10119, + "id": 9963, "luminance": 0, "opaque": true, "replaceable": false, @@ -103901,7 +102206,7 @@ ] }, { - "id": 10120, + "id": 9964, "luminance": 0, "opaque": true, "replaceable": false, @@ -103911,7 +102216,7 @@ ] }, { - "id": 10121, + "id": 9965, "luminance": 0, "opaque": true, "replaceable": false, @@ -103921,7 +102226,7 @@ ] }, { - "id": 10122, + "id": 9966, "luminance": 0, "opaque": true, "replaceable": false, @@ -103932,7 +102237,7 @@ ] }, { - "id": 10123, + "id": 9967, "luminance": 0, "opaque": true, "replaceable": false, @@ -103943,7 +102248,7 @@ ] }, { - "id": 10124, + "id": 9968, "luminance": 0, "opaque": true, "replaceable": false, @@ -103954,7 +102259,7 @@ ] }, { - "id": 10125, + "id": 9969, "luminance": 0, "opaque": true, "replaceable": false, @@ -103965,7 +102270,7 @@ ] }, { - "id": 10126, + "id": 9970, "luminance": 0, "opaque": true, "replaceable": false, @@ -103976,7 +102281,7 @@ ] }, { - "id": 10127, + "id": 9971, "luminance": 0, "opaque": true, "replaceable": false, @@ -103987,7 +102292,7 @@ ] }, { - "id": 10128, + "id": 9972, "luminance": 0, "opaque": true, "replaceable": false, @@ -103998,7 +102303,7 @@ ] }, { - "id": 10129, + "id": 9973, "luminance": 0, "opaque": true, "replaceable": false, @@ -104009,7 +102314,7 @@ ] }, { - "id": 10130, + "id": 9974, "luminance": 0, "opaque": true, "replaceable": false, @@ -104019,7 +102324,7 @@ ] }, { - "id": 10131, + "id": 9975, "luminance": 0, "opaque": true, "replaceable": false, @@ -104029,7 +102334,7 @@ ] }, { - "id": 10132, + "id": 9976, "luminance": 0, "opaque": true, "replaceable": false, @@ -104040,7 +102345,7 @@ ] }, { - "id": 10133, + "id": 9977, "luminance": 0, "opaque": true, "replaceable": false, @@ -104051,7 +102356,7 @@ ] }, { - "id": 10134, + "id": 9978, "luminance": 0, "opaque": true, "replaceable": false, @@ -104062,7 +102367,7 @@ ] }, { - "id": 10135, + "id": 9979, "luminance": 0, "opaque": true, "replaceable": false, @@ -104073,7 +102378,7 @@ ] }, { - "id": 10136, + "id": 9980, "luminance": 0, "opaque": true, "replaceable": false, @@ -104083,7 +102388,7 @@ ] }, { - "id": 10137, + "id": 9981, "luminance": 0, "opaque": true, "replaceable": false, @@ -104093,7 +102398,7 @@ ] }, { - "id": 10138, + "id": 9982, "luminance": 0, "opaque": true, "replaceable": false, @@ -104103,7 +102408,7 @@ ] }, { - "id": 10139, + "id": 9983, "luminance": 0, "opaque": true, "replaceable": false, @@ -104115,9 +102420,9 @@ ] }, { - "id": 461, - "name": "bamboo_mosaic_stairs", - "translation_key": "block.minecraft.bamboo_mosaic_stairs", + "id": 460, + "name": "mangrove_stairs", + "translation_key": "block.minecraft.mangrove_stairs", "item_id": 368, "properties": [ { @@ -104154,10 +102459,10 @@ ] } ], - "default_state_id": 10151, + "default_state_id": 9995, "states": [ { - "id": 10140, + "id": 9984, "luminance": 0, "opaque": true, "replaceable": false, @@ -104166,14 +102471,1714 @@ 42 ] }, + { + "id": 9985, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 9986, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 9987, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 9988, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 9989, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 9990, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 9991, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 9992, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 9993, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 9994, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 9995, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 9996, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 9997, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 9998, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 9999, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10000, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10001, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10002, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10003, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10004, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10005, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10006, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10007, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10008, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10009, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10010, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10011, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10012, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10013, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10014, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10015, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10016, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10017, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10018, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10019, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10020, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10021, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10022, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10023, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10024, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10025, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10026, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10027, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10028, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10029, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10030, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10031, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10032, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10033, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10034, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10035, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10036, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10037, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10038, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10039, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10040, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10041, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10042, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10043, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10044, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10045, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10046, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10047, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10048, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10049, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10050, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10051, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10052, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10053, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10054, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10055, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10056, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10057, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10058, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10059, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10060, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10061, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10062, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10063, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 461, + "name": "bamboo_stairs", + "translation_key": "block.minecraft.bamboo_stairs", + "item_id": 369, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10075, + "states": [ + { + "id": 10064, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10065, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10066, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10067, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10068, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10069, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10070, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10071, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10072, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10073, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10074, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10075, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10076, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10077, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10078, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10079, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10080, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10081, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10082, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10083, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10084, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10085, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10086, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10087, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10088, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10089, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10090, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10091, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10092, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10093, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10094, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10095, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10096, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10097, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10098, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10099, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10100, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10101, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10102, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10103, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10104, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10105, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10106, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10107, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10108, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10109, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10110, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10111, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10112, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10113, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10114, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10115, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10116, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10117, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10118, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10119, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10120, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10121, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10122, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10123, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10124, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10125, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10126, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10127, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10128, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10129, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10130, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10131, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10132, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10133, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10134, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10135, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10136, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10137, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10138, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10139, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10140, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, { "id": 10141, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 42 + 51, + 49 ] }, { @@ -104182,8 +104187,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, + 51, 45 ] }, @@ -104192,813 +104196,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10144, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10145, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10146, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10147, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10148, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10149, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10150, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 10151, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 10152, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10153, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10154, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10155, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10156, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10157, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10158, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10159, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10160, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 10161, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 10162, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10163, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10164, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10165, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10166, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10167, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10168, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10169, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10170, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 10171, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 10172, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10173, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10174, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10175, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10176, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 10177, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 10178, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10179, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10180, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 10181, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 10182, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10183, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10184, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10185, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10186, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10187, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10188, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10189, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10190, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 10191, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 10192, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10193, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10194, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10195, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10196, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10197, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10198, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10199, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10200, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 10201, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 10202, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10203, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10204, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10205, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10206, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10207, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10208, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10209, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10210, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 10211, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 10212, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10213, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10214, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10215, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10216, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10217, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10218, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 10219, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -105008,33 +104205,906 @@ }, { "id": 462, - "name": "slime_block", - "translation_key": "block.minecraft.slime_block", - "item_id": 639, - "properties": [], - "default_state_id": 10220, + "name": "bamboo_mosaic_stairs", + "translation_key": "block.minecraft.bamboo_mosaic_stairs", + "item_id": 370, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10155, "states": [ + { + "id": 10144, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10145, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10146, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10147, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10148, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10149, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10150, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10151, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10152, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10153, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10154, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10155, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10156, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10157, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10158, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10159, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10160, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10161, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10162, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10163, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10164, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10165, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10166, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10167, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10168, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10169, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10170, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10171, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10172, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10173, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10174, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10175, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10176, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10177, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10178, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10179, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10180, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10181, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10182, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10183, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10184, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10185, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10186, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10187, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10188, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10189, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10190, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10191, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10192, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10193, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10194, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10195, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10196, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10197, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10198, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10199, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10200, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10201, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10202, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10203, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10204, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10205, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10206, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10207, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10208, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10209, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10210, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10211, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10212, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10213, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10214, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10215, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10216, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10217, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10218, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10219, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, { "id": 10220, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 51, + 49 + ] + }, + { + "id": 10221, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10222, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10223, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 ] } ] }, { "id": 463, - "name": "barrier", - "translation_key": "block.minecraft.barrier", - "item_id": 419, + "name": "slime_block", + "translation_key": "block.minecraft.slime_block", + "item_id": 642, "properties": [], - "default_state_id": 10221, + "default_state_id": 10224, "states": [ { - "id": 10221, + "id": 10224, "luminance": 0, "opaque": false, "replaceable": false, @@ -105046,9 +105116,28 @@ }, { "id": 464, + "name": "barrier", + "translation_key": "block.minecraft.barrier", + "item_id": 421, + "properties": [], + "default_state_id": 10225, + "states": [ + { + "id": 10225, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 465, "name": "light", "translation_key": "block.minecraft.light", - "item_id": 420, + "item_id": 422, "properties": [ { "name": "level", @@ -105079,227 +105168,227 @@ ] } ], - "default_state_id": 10253, + "default_state_id": 10257, "states": [ - { - "id": 10222, - "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 10223, - "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 10224, - "luminance": 1, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 10225, - "luminance": 1, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, { "id": 10226, - "luminance": 2, + "luminance": 0, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10227, - "luminance": 2, + "luminance": 0, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10228, - "luminance": 3, + "luminance": 1, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10229, - "luminance": 3, + "luminance": 1, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10230, - "luminance": 4, + "luminance": 2, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10231, - "luminance": 4, + "luminance": 2, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10232, - "luminance": 5, + "luminance": 3, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10233, - "luminance": 5, + "luminance": 3, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10234, - "luminance": 6, + "luminance": 4, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10235, - "luminance": 6, + "luminance": 4, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10236, - "luminance": 7, + "luminance": 5, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10237, - "luminance": 7, + "luminance": 5, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10238, - "luminance": 8, + "luminance": 6, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10239, - "luminance": 8, + "luminance": 6, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10240, - "luminance": 9, + "luminance": 7, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10241, - "luminance": 9, + "luminance": 7, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10242, - "luminance": 10, + "luminance": 8, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10243, - "luminance": 10, + "luminance": 8, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10244, - "luminance": 11, + "luminance": 9, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10245, - "luminance": 11, + "luminance": 9, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10246, - "luminance": 12, + "luminance": 10, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10247, - "luminance": 12, + "luminance": 10, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10248, - "luminance": 13, + "luminance": 11, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10249, - "luminance": 13, + "luminance": 11, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10250, - "luminance": 14, + "luminance": 12, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10251, - "luminance": 14, + "luminance": 12, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10252, - "luminance": 15, + "luminance": 13, "opaque": false, "replaceable": true, "collision_shapes": [] }, { "id": 10253, + "luminance": 13, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 10254, + "luminance": 14, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 10255, + "luminance": 14, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 10256, + "luminance": 15, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 10257, "luminance": 15, "opaque": false, "replaceable": true, @@ -105308,10 +105397,10 @@ ] }, { - "id": 465, + "id": 466, "name": "iron_trapdoor", "translation_key": "block.minecraft.iron_trapdoor", - "item_id": 696, + "item_id": 700, "properties": [ { "name": "facing", @@ -105351,51 +105440,15 @@ ] } ], - "default_state_id": 10269, + "default_state_id": 10273, "states": [ - { - "id": 10254, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 10255, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 10256, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 10257, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, { "id": 10258, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 65 ] }, { @@ -105404,7 +105457,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 65 ] }, { @@ -105413,7 +105466,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 65 ] }, { @@ -105422,7 +105475,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 65 ] }, { @@ -105431,7 +105484,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 92 ] }, { @@ -105440,7 +105493,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 92 ] }, { @@ -105449,7 +105502,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 92 ] }, { @@ -105458,7 +105511,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 92 ] }, { @@ -105467,7 +105520,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 65 ] }, { @@ -105476,7 +105529,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 65 ] }, { @@ -105485,7 +105538,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 65 ] }, { @@ -105494,7 +105547,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 65 ] }, { @@ -105503,7 +105556,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 93 ] }, { @@ -105512,7 +105565,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 93 ] }, { @@ -105521,7 +105574,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 93 ] }, { @@ -105530,7 +105583,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 93 ] }, { @@ -105539,7 +105592,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 67 ] }, { @@ -105548,7 +105601,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 67 ] }, { @@ -105557,7 +105610,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 67 ] }, { @@ -105566,7 +105619,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 67 ] }, { @@ -105575,7 +105628,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 92 ] }, { @@ -105584,7 +105637,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 92 ] }, { @@ -105593,7 +105646,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 92 ] }, { @@ -105602,7 +105655,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 92 ] }, { @@ -105611,7 +105664,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 67 ] }, { @@ -105620,7 +105673,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 67 ] }, { @@ -105629,7 +105682,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 67 ] }, { @@ -105638,7 +105691,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 67 ] }, { @@ -105647,7 +105700,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 93 ] }, { @@ -105656,7 +105709,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 93 ] }, { @@ -105665,7 +105718,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 93 ] }, { @@ -105674,7 +105727,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 93 ] }, { @@ -105683,7 +105736,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 66 ] }, { @@ -105692,7 +105745,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 66 ] }, { @@ -105701,7 +105754,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 66 ] }, { @@ -105710,7 +105763,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 66 ] }, { @@ -105719,7 +105772,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 92 ] }, { @@ -105728,7 +105781,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 92 ] }, { @@ -105737,7 +105790,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 92 ] }, { @@ -105746,7 +105799,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 92 ] }, { @@ -105755,7 +105808,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 66 ] }, { @@ -105764,7 +105817,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 66 ] }, { @@ -105773,7 +105826,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 66 ] }, { @@ -105782,7 +105835,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 66 ] }, { @@ -105791,7 +105844,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 93 ] }, { @@ -105800,7 +105853,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 93 ] }, { @@ -105809,7 +105862,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 93 ] }, { @@ -105818,7 +105871,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 93 ] }, { @@ -105827,7 +105880,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 64 ] }, { @@ -105836,7 +105889,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 64 ] }, { @@ -105845,7 +105898,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 64 ] }, { @@ -105854,7 +105907,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 64 ] }, { @@ -105863,7 +105916,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 92 ] }, { @@ -105872,7 +105925,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 92 ] }, { @@ -105881,7 +105934,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 92 ] }, { @@ -105890,7 +105943,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 92 ] }, { @@ -105899,7 +105952,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 64 ] }, { @@ -105908,7 +105961,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 64 ] }, { @@ -105917,7 +105970,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 64 ] }, { @@ -105925,6 +105978,42 @@ "luminance": 0, "opaque": false, "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 10318, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 10319, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 10320, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 10321, + "luminance": 0, + "opaque": false, + "replaceable": false, "collision_shapes": [ 93 ] @@ -105932,34 +106021,15 @@ ] }, { - "id": 466, + "id": 467, "name": "prismarine", "translation_key": "block.minecraft.prismarine", - "item_id": 479, + "item_id": 481, "properties": [], - "default_state_id": 10318, + "default_state_id": 10322, "states": [ { - "id": 10318, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 467, - "name": "prismarine_bricks", - "translation_key": "block.minecraft.prismarine_bricks", - "item_id": 480, - "properties": [], - "default_state_id": 10319, - "states": [ - { - "id": 10319, + "id": 10322, "luminance": 0, "opaque": true, "replaceable": false, @@ -105971,14 +106041,14 @@ }, { "id": 468, - "name": "dark_prismarine", - "translation_key": "block.minecraft.dark_prismarine", - "item_id": 481, + "name": "prismarine_bricks", + "translation_key": "block.minecraft.prismarine_bricks", + "item_id": 482, "properties": [], - "default_state_id": 10320, + "default_state_id": 10323, "states": [ { - "id": 10320, + "id": 10323, "luminance": 0, "opaque": true, "replaceable": false, @@ -105990,1792 +106060,27 @@ }, { "id": 469, - "name": "prismarine_stairs", - "translation_key": "block.minecraft.prismarine_stairs", - "item_id": 482, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 10332, + "name": "dark_prismarine", + "translation_key": "block.minecraft.dark_prismarine", + "item_id": 483, + "properties": [], + "default_state_id": 10324, "states": [ - { - "id": 10321, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 10322, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 10323, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, { "id": 10324, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10325, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10326, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10327, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10328, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10329, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10330, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10331, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 10332, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 10333, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10334, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10335, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10336, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10337, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10338, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10339, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10340, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10341, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 10342, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 10343, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10344, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10345, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10346, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10347, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10348, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10349, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10350, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10351, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 10352, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 10353, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10354, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10355, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10356, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10357, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 10358, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 10359, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10360, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10361, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 10362, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 10363, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10364, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10365, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10366, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10367, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10368, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10369, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10370, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10371, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 10372, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 10373, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10374, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10375, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10376, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10377, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10378, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10379, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10380, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10381, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 10382, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 10383, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10384, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10385, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10386, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10387, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10388, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10389, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10390, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10391, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 10392, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 10393, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10394, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10395, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10396, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10397, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10398, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10399, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 10400, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 + 0 ] } ] }, { "id": 470, - "name": "prismarine_brick_stairs", - "translation_key": "block.minecraft.prismarine_brick_stairs", - "item_id": 483, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 10412, - "states": [ - { - "id": 10401, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 10402, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 10403, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10404, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10405, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10406, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10407, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10408, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10409, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10410, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10411, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 10412, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 10413, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10414, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10415, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10416, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10417, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10418, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10419, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10420, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10421, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 10422, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 10423, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10424, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10425, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10426, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10427, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10428, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10429, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10430, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10431, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 10432, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 10433, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10434, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10435, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10436, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10437, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 10438, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 10439, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10440, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10441, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 10442, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 10443, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10444, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10445, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10446, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10447, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10448, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10449, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10450, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10451, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 10452, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 10453, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10454, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10455, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10456, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10457, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10458, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10459, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10460, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10461, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 10462, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 10463, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10464, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10465, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10466, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10467, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10468, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10469, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10470, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10471, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 10472, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 10473, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10474, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10475, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10476, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10477, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10478, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10479, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 10480, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - } - ] - }, - { - "id": 471, - "name": "dark_prismarine_stairs", - "translation_key": "block.minecraft.dark_prismarine_stairs", + "name": "prismarine_stairs", + "translation_key": "block.minecraft.prismarine_stairs", "item_id": 484, "properties": [ { @@ -107812,10 +106117,10 @@ ] } ], - "default_state_id": 10492, + "default_state_id": 10336, "states": [ { - "id": 10481, + "id": 10325, "luminance": 0, "opaque": true, "replaceable": false, @@ -107824,14 +106129,1714 @@ 42 ] }, + { + "id": 10326, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10327, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10328, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10329, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10330, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10331, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10332, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10333, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10334, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10335, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10336, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10337, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10338, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10339, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10340, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10341, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10342, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10343, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10344, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10345, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10346, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10347, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10348, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10349, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10350, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10351, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10352, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10353, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10354, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10355, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10356, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10357, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10358, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10359, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10360, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10361, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10362, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10363, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10364, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10365, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10366, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10367, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10368, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10369, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10370, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10371, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10372, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10373, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10374, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10375, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10376, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10377, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10378, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10379, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10380, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10381, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10382, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10383, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10384, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10385, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10386, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10387, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10388, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10389, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10390, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10391, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10392, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10393, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10394, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10395, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10396, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10397, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10398, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10399, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10400, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10401, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10402, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10403, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10404, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 471, + "name": "prismarine_brick_stairs", + "translation_key": "block.minecraft.prismarine_brick_stairs", + "item_id": 485, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10416, + "states": [ + { + "id": 10405, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10406, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10407, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10408, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10409, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10410, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10411, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10412, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10413, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10414, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10415, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10416, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10417, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10418, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10419, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10420, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10421, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10422, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10423, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10424, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10425, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10426, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10427, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10428, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10429, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10430, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10431, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10432, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10433, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10434, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10435, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10436, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10437, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10438, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10439, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10440, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10441, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10442, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10443, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10444, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10445, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10446, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10447, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10448, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10449, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10450, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10451, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10452, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10453, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10454, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10455, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10456, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10457, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10458, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10459, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10460, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10461, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10462, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10463, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10464, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10465, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10466, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10467, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10468, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10469, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10470, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10471, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10472, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10473, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10474, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10475, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10476, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10477, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10478, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10479, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10480, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10481, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, { "id": 10482, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 42 + 51, + 49 ] }, { @@ -107840,8 +107845,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, + 51, 45 ] }, @@ -107850,813 +107854,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10485, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10486, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10487, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10488, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10489, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10490, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10491, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 10492, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 10493, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10494, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10495, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10496, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10497, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10498, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10499, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10500, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10501, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 10502, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 10503, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10504, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10505, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10506, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10507, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10508, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10509, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10510, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10511, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 10512, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 10513, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10514, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10515, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10516, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10517, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 10518, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 10519, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10520, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10521, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 10522, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 10523, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10524, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 10525, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10526, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10527, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10528, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10529, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10530, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 10531, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 10532, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 10533, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10534, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 10535, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10536, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 10537, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10538, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 10539, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10540, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 10541, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 10542, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 10543, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10544, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 10545, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10546, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 10547, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10548, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 10549, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10550, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 10551, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 10552, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 10553, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10554, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 10555, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10556, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 10557, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10558, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 10559, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 10560, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 51, 45 @@ -108666,16 +107863,34 @@ }, { "id": 472, - "name": "prismarine_slab", - "translation_key": "block.minecraft.prismarine_slab", - "item_id": 254, + "name": "dark_prismarine_stairs", + "translation_key": "block.minecraft.dark_prismarine_stairs", + "item_id": 486, "properties": [ { - "name": "type", + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", "values": [ "top", - "bottom", - "double" + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" ] }, { @@ -108686,15 +107901,824 @@ ] } ], - "default_state_id": 10564, + "default_state_id": 10496, "states": [ + { + "id": 10485, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10486, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 10487, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10488, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10489, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10490, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10491, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10492, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10493, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10494, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10495, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10496, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 10497, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10498, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10499, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10500, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10501, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10502, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10503, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10504, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 10505, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10506, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 10507, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10508, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10509, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10510, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10511, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10512, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10513, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10514, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10515, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10516, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 10517, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10518, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10519, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10520, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10521, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10522, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 10523, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10524, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10525, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10526, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10527, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10528, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10529, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10530, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 10531, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10532, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 10533, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10534, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 10535, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10536, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 10537, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10538, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 10539, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10540, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 10541, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10542, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 10543, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10544, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 10545, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10546, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 10547, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10548, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 10549, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10550, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 10551, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10552, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 10553, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10554, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 10555, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10556, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 10557, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10558, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 10559, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 10560, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, { "id": 10561, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 201 + 51, + 49 ] }, { @@ -108703,7 +108727,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 201 + 51, + 49 ] }, { @@ -108712,7 +108737,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51 + 51, + 45 ] }, { @@ -108721,113 +108747,16 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51 - ] - }, - { - "id": 10565, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 10566, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 + 51, + 45 ] } ] }, { "id": 473, - "name": "prismarine_brick_slab", - "translation_key": "block.minecraft.prismarine_brick_slab", - "item_id": 255, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 10570, - "states": [ - { - "id": 10567, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 10568, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 10569, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 10570, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 10571, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 10572, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 474, - "name": "dark_prismarine_slab", - "translation_key": "block.minecraft.dark_prismarine_slab", + "name": "prismarine_slab", + "translation_key": "block.minecraft.prismarine_slab", "item_id": 256, "properties": [ { @@ -108846,10 +108775,10 @@ ] } ], - "default_state_id": 10576, + "default_state_id": 10568, "states": [ { - "id": 10573, + "id": 10565, "luminance": 0, "opaque": true, "replaceable": false, @@ -108858,7 +108787,7 @@ ] }, { - "id": 10574, + "id": 10566, "luminance": 0, "opaque": true, "replaceable": false, @@ -108867,7 +108796,7 @@ ] }, { - "id": 10575, + "id": 10567, "luminance": 0, "opaque": true, "replaceable": false, @@ -108876,7 +108805,7 @@ ] }, { - "id": 10576, + "id": 10568, "luminance": 0, "opaque": true, "replaceable": false, @@ -108885,7 +108814,7 @@ ] }, { - "id": 10577, + "id": 10569, "luminance": 0, "opaque": true, "replaceable": false, @@ -108894,7 +108823,87 @@ ] }, { - "id": 10578, + "id": 10570, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 474, + "name": "prismarine_brick_slab", + "translation_key": "block.minecraft.prismarine_brick_slab", + "item_id": 257, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 10574, + "states": [ + { + "id": 10571, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 10572, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 10573, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 10574, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 10575, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 10576, "luminance": 0, "opaque": true, "replaceable": false, @@ -108906,47 +108915,62 @@ }, { "id": 475, - "name": "sea_lantern", - "translation_key": "block.minecraft.sea_lantern", - "item_id": 485, - "properties": [], - "default_state_id": 10579, - "states": [ - { - "id": 10579, - "luminance": 15, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 476, - "name": "hay_block", - "translation_key": "block.minecraft.hay_block", - "item_id": 421, + "name": "dark_prismarine_slab", + "translation_key": "block.minecraft.dark_prismarine_slab", + "item_id": 258, "properties": [ { - "name": "axis", + "name": "type", "values": [ - "x", - "y", - "z" + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" ] } ], - "default_state_id": 10581, + "default_state_id": 10580, "states": [ + { + "id": 10577, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 10578, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 10579, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, { "id": 10580, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 51 ] }, { @@ -108970,31 +108994,40 @@ ] }, { - "id": 477, - "name": "white_carpet", - "translation_key": "block.minecraft.white_carpet", - "item_id": 422, + "id": 476, + "name": "sea_lantern", + "translation_key": "block.minecraft.sea_lantern", + "item_id": 487, "properties": [], "default_state_id": 10583, "states": [ { "id": 10583, - "luminance": 0, + "luminance": 15, "opaque": true, "replaceable": false, "collision_shapes": [ - 202 + 0 ] } ] }, { - "id": 478, - "name": "orange_carpet", - "translation_key": "block.minecraft.orange_carpet", + "id": 477, + "name": "hay_block", + "translation_key": "block.minecraft.hay_block", "item_id": 423, - "properties": [], - "default_state_id": 10584, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 10585, "states": [ { "id": 10584, @@ -109002,54 +109035,34 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 202 + 0 ] - } - ] - }, - { - "id": 479, - "name": "magenta_carpet", - "translation_key": "block.minecraft.magenta_carpet", - "item_id": 424, - "properties": [], - "default_state_id": 10585, - "states": [ + }, { "id": 10585, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 202 + 0 ] - } - ] - }, - { - "id": 480, - "name": "light_blue_carpet", - "translation_key": "block.minecraft.light_blue_carpet", - "item_id": 425, - "properties": [], - "default_state_id": 10586, - "states": [ + }, { "id": 10586, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 202 + 0 ] } ] }, { - "id": 481, - "name": "yellow_carpet", - "translation_key": "block.minecraft.yellow_carpet", - "item_id": 426, + "id": 478, + "name": "white_carpet", + "translation_key": "block.minecraft.white_carpet", + "item_id": 424, "properties": [], "default_state_id": 10587, "states": [ @@ -109065,10 +109078,10 @@ ] }, { - "id": 482, - "name": "lime_carpet", - "translation_key": "block.minecraft.lime_carpet", - "item_id": 427, + "id": 479, + "name": "orange_carpet", + "translation_key": "block.minecraft.orange_carpet", + "item_id": 425, "properties": [], "default_state_id": 10588, "states": [ @@ -109084,10 +109097,10 @@ ] }, { - "id": 483, - "name": "pink_carpet", - "translation_key": "block.minecraft.pink_carpet", - "item_id": 428, + "id": 480, + "name": "magenta_carpet", + "translation_key": "block.minecraft.magenta_carpet", + "item_id": 426, "properties": [], "default_state_id": 10589, "states": [ @@ -109103,10 +109116,10 @@ ] }, { - "id": 484, - "name": "gray_carpet", - "translation_key": "block.minecraft.gray_carpet", - "item_id": 429, + "id": 481, + "name": "light_blue_carpet", + "translation_key": "block.minecraft.light_blue_carpet", + "item_id": 427, "properties": [], "default_state_id": 10590, "states": [ @@ -109122,10 +109135,10 @@ ] }, { - "id": 485, - "name": "light_gray_carpet", - "translation_key": "block.minecraft.light_gray_carpet", - "item_id": 430, + "id": 482, + "name": "yellow_carpet", + "translation_key": "block.minecraft.yellow_carpet", + "item_id": 428, "properties": [], "default_state_id": 10591, "states": [ @@ -109141,10 +109154,10 @@ ] }, { - "id": 486, - "name": "cyan_carpet", - "translation_key": "block.minecraft.cyan_carpet", - "item_id": 431, + "id": 483, + "name": "lime_carpet", + "translation_key": "block.minecraft.lime_carpet", + "item_id": 429, "properties": [], "default_state_id": 10592, "states": [ @@ -109160,10 +109173,10 @@ ] }, { - "id": 487, - "name": "purple_carpet", - "translation_key": "block.minecraft.purple_carpet", - "item_id": 432, + "id": 484, + "name": "pink_carpet", + "translation_key": "block.minecraft.pink_carpet", + "item_id": 430, "properties": [], "default_state_id": 10593, "states": [ @@ -109179,10 +109192,10 @@ ] }, { - "id": 488, - "name": "blue_carpet", - "translation_key": "block.minecraft.blue_carpet", - "item_id": 433, + "id": 485, + "name": "gray_carpet", + "translation_key": "block.minecraft.gray_carpet", + "item_id": 431, "properties": [], "default_state_id": 10594, "states": [ @@ -109198,10 +109211,10 @@ ] }, { - "id": 489, - "name": "brown_carpet", - "translation_key": "block.minecraft.brown_carpet", - "item_id": 434, + "id": 486, + "name": "light_gray_carpet", + "translation_key": "block.minecraft.light_gray_carpet", + "item_id": 432, "properties": [], "default_state_id": 10595, "states": [ @@ -109217,10 +109230,10 @@ ] }, { - "id": 490, - "name": "green_carpet", - "translation_key": "block.minecraft.green_carpet", - "item_id": 435, + "id": 487, + "name": "cyan_carpet", + "translation_key": "block.minecraft.cyan_carpet", + "item_id": 433, "properties": [], "default_state_id": 10596, "states": [ @@ -109236,10 +109249,10 @@ ] }, { - "id": 491, - "name": "red_carpet", - "translation_key": "block.minecraft.red_carpet", - "item_id": 436, + "id": 488, + "name": "purple_carpet", + "translation_key": "block.minecraft.purple_carpet", + "item_id": 434, "properties": [], "default_state_id": 10597, "states": [ @@ -109255,10 +109268,10 @@ ] }, { - "id": 492, - "name": "black_carpet", - "translation_key": "block.minecraft.black_carpet", - "item_id": 437, + "id": 489, + "name": "blue_carpet", + "translation_key": "block.minecraft.blue_carpet", + "item_id": 435, "properties": [], "default_state_id": 10598, "states": [ @@ -109274,10 +109287,10 @@ ] }, { - "id": 493, - "name": "terracotta", - "translation_key": "block.minecraft.terracotta", - "item_id": 438, + "id": 490, + "name": "brown_carpet", + "translation_key": "block.minecraft.brown_carpet", + "item_id": 436, "properties": [], "default_state_id": 10599, "states": [ @@ -109287,21 +109300,78 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 202 + ] + } + ] + }, + { + "id": 491, + "name": "green_carpet", + "translation_key": "block.minecraft.green_carpet", + "item_id": 437, + "properties": [], + "default_state_id": 10600, + "states": [ + { + "id": 10600, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 202 + ] + } + ] + }, + { + "id": 492, + "name": "red_carpet", + "translation_key": "block.minecraft.red_carpet", + "item_id": 438, + "properties": [], + "default_state_id": 10601, + "states": [ + { + "id": 10601, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 202 + ] + } + ] + }, + { + "id": 493, + "name": "black_carpet", + "translation_key": "block.minecraft.black_carpet", + "item_id": 439, + "properties": [], + "default_state_id": 10602, + "states": [ + { + "id": 10602, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 202 ] } ] }, { "id": 494, - "name": "coal_block", - "translation_key": "block.minecraft.coal_block", - "item_id": 67, + "name": "terracotta", + "translation_key": "block.minecraft.terracotta", + "item_id": 440, "properties": [], - "default_state_id": 10600, + "default_state_id": 10603, "states": [ { - "id": 10600, + "id": 10603, "luminance": 0, "opaque": true, "replaceable": false, @@ -109313,14 +109383,14 @@ }, { "id": 495, - "name": "packed_ice", - "translation_key": "block.minecraft.packed_ice", - "item_id": 439, + "name": "coal_block", + "translation_key": "block.minecraft.coal_block", + "item_id": 68, "properties": [], - "default_state_id": 10601, + "default_state_id": 10604, "states": [ { - "id": 10601, + "id": 10604, "luminance": 0, "opaque": true, "replaceable": false, @@ -109332,72 +109402,27 @@ }, { "id": 496, - "name": "sunflower", - "translation_key": "block.minecraft.sunflower", + "name": "packed_ice", + "translation_key": "block.minecraft.packed_ice", "item_id": 441, - "properties": [ - { - "name": "half", - "values": [ - "upper", - "lower" - ] - } - ], - "default_state_id": 10603, + "properties": [], + "default_state_id": 10605, "states": [ { - "id": 10602, + "id": 10605, "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 10603, - "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { "id": 497, - "name": "lilac", - "translation_key": "block.minecraft.lilac", - "item_id": 442, - "properties": [ - { - "name": "half", - "values": [ - "upper", - "lower" - ] - } - ], - "default_state_id": 10605, - "states": [ - { - "id": 10604, - "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 10605, - "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - } - ] - }, - { - "id": 498, - "name": "rose_bush", - "translation_key": "block.minecraft.rose_bush", + "name": "sunflower", + "translation_key": "block.minecraft.sunflower", "item_id": 443, "properties": [ { @@ -109414,22 +109439,22 @@ "id": 10606, "luminance": 0, "opaque": false, - "replaceable": true, + "replaceable": false, "collision_shapes": [] }, { "id": 10607, "luminance": 0, "opaque": false, - "replaceable": true, + "replaceable": false, "collision_shapes": [] } ] }, { - "id": 499, - "name": "peony", - "translation_key": "block.minecraft.peony", + "id": 498, + "name": "lilac", + "translation_key": "block.minecraft.lilac", "item_id": 444, "properties": [ { @@ -109446,22 +109471,22 @@ "id": 10608, "luminance": 0, "opaque": false, - "replaceable": true, + "replaceable": false, "collision_shapes": [] }, { "id": 10609, "luminance": 0, "opaque": false, - "replaceable": true, + "replaceable": false, "collision_shapes": [] } ] }, { - "id": 500, - "name": "tall_grass", - "translation_key": "block.minecraft.tall_grass", + "id": 499, + "name": "rose_bush", + "translation_key": "block.minecraft.rose_bush", "item_id": 445, "properties": [ { @@ -109478,22 +109503,22 @@ "id": 10610, "luminance": 0, "opaque": false, - "replaceable": true, + "replaceable": false, "collision_shapes": [] }, { "id": 10611, "luminance": 0, "opaque": false, - "replaceable": true, + "replaceable": false, "collision_shapes": [] } ] }, { - "id": 501, - "name": "large_fern", - "translation_key": "block.minecraft.large_fern", + "id": 500, + "name": "peony", + "translation_key": "block.minecraft.peony", "item_id": 446, "properties": [ { @@ -109510,13 +109535,45 @@ "id": 10612, "luminance": 0, "opaque": false, - "replaceable": true, + "replaceable": false, "collision_shapes": [] }, { "id": 10613, "luminance": 0, "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 501, + "name": "tall_grass", + "translation_key": "block.minecraft.tall_grass", + "item_id": 447, + "properties": [ + { + "name": "half", + "values": [ + "upper", + "lower" + ] + } + ], + "default_state_id": 10615, + "states": [ + { + "id": 10614, + "luminance": 0, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 10615, + "luminance": 0, + "opaque": false, "replaceable": true, "collision_shapes": [] } @@ -109524,10 +109581,42 @@ }, { "id": 502, + "name": "large_fern", + "translation_key": "block.minecraft.large_fern", + "item_id": 448, + "properties": [ + { + "name": "half", + "values": [ + "upper", + "lower" + ] + } + ], + "default_state_id": 10617, + "states": [ + { + "id": 10616, + "luminance": 0, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + }, + { + "id": 10617, + "luminance": 0, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + } + ] + }, + { + "id": 503, "name": "white_banner", "translation_key": "block.minecraft.white_banner", - "item_id": 1083, - "wall_variant_id": 518, + "item_id": 1087, + "wall_variant_id": 519, "properties": [ { "name": "rotation", @@ -109551,40 +109640,8 @@ ] } ], - "default_state_id": 10614, + "default_state_id": 10618, "states": [ - { - "id": 10614, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 19 - }, - { - "id": 10615, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 19 - }, - { - "id": 10616, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 19 - }, - { - "id": 10617, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 19 - }, { "id": 10618, "luminance": 0, @@ -109680,40 +109737,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 503, - "name": "orange_banner", - "translation_key": "block.minecraft.orange_banner", - "item_id": 1084, - "wall_variant_id": 519, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10630, - "states": [ + }, { "id": 10630, "luminance": 0, @@ -109745,7 +109769,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 504, + "name": "orange_banner", + "translation_key": "block.minecraft.orange_banner", + "item_id": 1088, + "wall_variant_id": 520, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10634, + "states": [ { "id": 10634, "luminance": 0, @@ -109841,40 +109898,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 504, - "name": "magenta_banner", - "translation_key": "block.minecraft.magenta_banner", - "item_id": 1085, - "wall_variant_id": 520, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10646, - "states": [ + }, { "id": 10646, "luminance": 0, @@ -109906,7 +109930,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 505, + "name": "magenta_banner", + "translation_key": "block.minecraft.magenta_banner", + "item_id": 1089, + "wall_variant_id": 521, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10650, + "states": [ { "id": 10650, "luminance": 0, @@ -110002,40 +110059,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 505, - "name": "light_blue_banner", - "translation_key": "block.minecraft.light_blue_banner", - "item_id": 1086, - "wall_variant_id": 521, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10662, - "states": [ + }, { "id": 10662, "luminance": 0, @@ -110067,7 +110091,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 506, + "name": "light_blue_banner", + "translation_key": "block.minecraft.light_blue_banner", + "item_id": 1090, + "wall_variant_id": 522, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10666, + "states": [ { "id": 10666, "luminance": 0, @@ -110163,40 +110220,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 506, - "name": "yellow_banner", - "translation_key": "block.minecraft.yellow_banner", - "item_id": 1087, - "wall_variant_id": 522, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10678, - "states": [ + }, { "id": 10678, "luminance": 0, @@ -110228,7 +110252,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 507, + "name": "yellow_banner", + "translation_key": "block.minecraft.yellow_banner", + "item_id": 1091, + "wall_variant_id": 523, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10682, + "states": [ { "id": 10682, "luminance": 0, @@ -110324,40 +110381,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 507, - "name": "lime_banner", - "translation_key": "block.minecraft.lime_banner", - "item_id": 1088, - "wall_variant_id": 523, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10694, - "states": [ + }, { "id": 10694, "luminance": 0, @@ -110389,7 +110413,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 508, + "name": "lime_banner", + "translation_key": "block.minecraft.lime_banner", + "item_id": 1092, + "wall_variant_id": 524, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10698, + "states": [ { "id": 10698, "luminance": 0, @@ -110485,40 +110542,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 508, - "name": "pink_banner", - "translation_key": "block.minecraft.pink_banner", - "item_id": 1089, - "wall_variant_id": 524, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10710, - "states": [ + }, { "id": 10710, "luminance": 0, @@ -110550,7 +110574,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 509, + "name": "pink_banner", + "translation_key": "block.minecraft.pink_banner", + "item_id": 1093, + "wall_variant_id": 525, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10714, + "states": [ { "id": 10714, "luminance": 0, @@ -110646,40 +110703,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 509, - "name": "gray_banner", - "translation_key": "block.minecraft.gray_banner", - "item_id": 1090, - "wall_variant_id": 525, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10726, - "states": [ + }, { "id": 10726, "luminance": 0, @@ -110711,7 +110735,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 510, + "name": "gray_banner", + "translation_key": "block.minecraft.gray_banner", + "item_id": 1094, + "wall_variant_id": 526, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10730, + "states": [ { "id": 10730, "luminance": 0, @@ -110807,40 +110864,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 510, - "name": "light_gray_banner", - "translation_key": "block.minecraft.light_gray_banner", - "item_id": 1091, - "wall_variant_id": 526, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10742, - "states": [ + }, { "id": 10742, "luminance": 0, @@ -110872,7 +110896,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 511, + "name": "light_gray_banner", + "translation_key": "block.minecraft.light_gray_banner", + "item_id": 1095, + "wall_variant_id": 527, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10746, + "states": [ { "id": 10746, "luminance": 0, @@ -110968,40 +111025,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 511, - "name": "cyan_banner", - "translation_key": "block.minecraft.cyan_banner", - "item_id": 1092, - "wall_variant_id": 527, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10758, - "states": [ + }, { "id": 10758, "luminance": 0, @@ -111033,7 +111057,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 512, + "name": "cyan_banner", + "translation_key": "block.minecraft.cyan_banner", + "item_id": 1096, + "wall_variant_id": 528, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10762, + "states": [ { "id": 10762, "luminance": 0, @@ -111129,40 +111186,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 512, - "name": "purple_banner", - "translation_key": "block.minecraft.purple_banner", - "item_id": 1093, - "wall_variant_id": 528, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10774, - "states": [ + }, { "id": 10774, "luminance": 0, @@ -111194,7 +111218,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 513, + "name": "purple_banner", + "translation_key": "block.minecraft.purple_banner", + "item_id": 1097, + "wall_variant_id": 529, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10778, + "states": [ { "id": 10778, "luminance": 0, @@ -111290,40 +111347,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 513, - "name": "blue_banner", - "translation_key": "block.minecraft.blue_banner", - "item_id": 1094, - "wall_variant_id": 529, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10790, - "states": [ + }, { "id": 10790, "luminance": 0, @@ -111355,7 +111379,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 514, + "name": "blue_banner", + "translation_key": "block.minecraft.blue_banner", + "item_id": 1098, + "wall_variant_id": 530, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10794, + "states": [ { "id": 10794, "luminance": 0, @@ -111451,40 +111508,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 514, - "name": "brown_banner", - "translation_key": "block.minecraft.brown_banner", - "item_id": 1095, - "wall_variant_id": 530, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10806, - "states": [ + }, { "id": 10806, "luminance": 0, @@ -111516,7 +111540,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 515, + "name": "brown_banner", + "translation_key": "block.minecraft.brown_banner", + "item_id": 1099, + "wall_variant_id": 531, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10810, + "states": [ { "id": 10810, "luminance": 0, @@ -111612,40 +111669,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 515, - "name": "green_banner", - "translation_key": "block.minecraft.green_banner", - "item_id": 1096, - "wall_variant_id": 531, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10822, - "states": [ + }, { "id": 10822, "luminance": 0, @@ -111677,7 +111701,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 516, + "name": "green_banner", + "translation_key": "block.minecraft.green_banner", + "item_id": 1100, + "wall_variant_id": 532, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10826, + "states": [ { "id": 10826, "luminance": 0, @@ -111773,40 +111830,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 516, - "name": "red_banner", - "translation_key": "block.minecraft.red_banner", - "item_id": 1097, - "wall_variant_id": 532, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10838, - "states": [ + }, { "id": 10838, "luminance": 0, @@ -111838,7 +111862,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 517, + "name": "red_banner", + "translation_key": "block.minecraft.red_banner", + "item_id": 1101, + "wall_variant_id": 533, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10842, + "states": [ { "id": 10842, "luminance": 0, @@ -111934,40 +111991,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 517, - "name": "black_banner", - "translation_key": "block.minecraft.black_banner", - "item_id": 1098, - "wall_variant_id": 533, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] - } - ], - "default_state_id": 10854, - "states": [ + }, { "id": 10854, "luminance": 0, @@ -111999,7 +112023,40 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - }, + } + ] + }, + { + "id": 518, + "name": "black_banner", + "translation_key": "block.minecraft.black_banner", + "item_id": 1102, + "wall_variant_id": 534, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + } + ], + "default_state_id": 10858, + "states": [ { "id": 10858, "luminance": 0, @@ -112095,27 +112152,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 19 - } - ] - }, - { - "id": 518, - "name": "white_wall_banner", - "translation_key": "block.minecraft.white_banner", - "item_id": 1083, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "default_state_id": 10870, - "states": [ + }, { "id": 10870, "luminance": 0, @@ -112152,9 +112189,9 @@ }, { "id": 519, - "name": "orange_wall_banner", - "translation_key": "block.minecraft.orange_banner", - "item_id": 1084, + "name": "white_wall_banner", + "translation_key": "block.minecraft.white_banner", + "item_id": 1087, "properties": [ { "name": "facing", @@ -112204,9 +112241,9 @@ }, { "id": 520, - "name": "magenta_wall_banner", - "translation_key": "block.minecraft.magenta_banner", - "item_id": 1085, + "name": "orange_wall_banner", + "translation_key": "block.minecraft.orange_banner", + "item_id": 1088, "properties": [ { "name": "facing", @@ -112256,9 +112293,9 @@ }, { "id": 521, - "name": "light_blue_wall_banner", - "translation_key": "block.minecraft.light_blue_banner", - "item_id": 1086, + "name": "magenta_wall_banner", + "translation_key": "block.minecraft.magenta_banner", + "item_id": 1089, "properties": [ { "name": "facing", @@ -112308,9 +112345,9 @@ }, { "id": 522, - "name": "yellow_wall_banner", - "translation_key": "block.minecraft.yellow_banner", - "item_id": 1087, + "name": "light_blue_wall_banner", + "translation_key": "block.minecraft.light_blue_banner", + "item_id": 1090, "properties": [ { "name": "facing", @@ -112360,9 +112397,9 @@ }, { "id": 523, - "name": "lime_wall_banner", - "translation_key": "block.minecraft.lime_banner", - "item_id": 1088, + "name": "yellow_wall_banner", + "translation_key": "block.minecraft.yellow_banner", + "item_id": 1091, "properties": [ { "name": "facing", @@ -112412,9 +112449,9 @@ }, { "id": 524, - "name": "pink_wall_banner", - "translation_key": "block.minecraft.pink_banner", - "item_id": 1089, + "name": "lime_wall_banner", + "translation_key": "block.minecraft.lime_banner", + "item_id": 1092, "properties": [ { "name": "facing", @@ -112464,9 +112501,9 @@ }, { "id": 525, - "name": "gray_wall_banner", - "translation_key": "block.minecraft.gray_banner", - "item_id": 1090, + "name": "pink_wall_banner", + "translation_key": "block.minecraft.pink_banner", + "item_id": 1093, "properties": [ { "name": "facing", @@ -112516,9 +112553,9 @@ }, { "id": 526, - "name": "light_gray_wall_banner", - "translation_key": "block.minecraft.light_gray_banner", - "item_id": 1091, + "name": "gray_wall_banner", + "translation_key": "block.minecraft.gray_banner", + "item_id": 1094, "properties": [ { "name": "facing", @@ -112568,9 +112605,9 @@ }, { "id": 527, - "name": "cyan_wall_banner", - "translation_key": "block.minecraft.cyan_banner", - "item_id": 1092, + "name": "light_gray_wall_banner", + "translation_key": "block.minecraft.light_gray_banner", + "item_id": 1095, "properties": [ { "name": "facing", @@ -112620,9 +112657,9 @@ }, { "id": 528, - "name": "purple_wall_banner", - "translation_key": "block.minecraft.purple_banner", - "item_id": 1093, + "name": "cyan_wall_banner", + "translation_key": "block.minecraft.cyan_banner", + "item_id": 1096, "properties": [ { "name": "facing", @@ -112672,9 +112709,9 @@ }, { "id": 529, - "name": "blue_wall_banner", - "translation_key": "block.minecraft.blue_banner", - "item_id": 1094, + "name": "purple_wall_banner", + "translation_key": "block.minecraft.purple_banner", + "item_id": 1097, "properties": [ { "name": "facing", @@ -112724,9 +112761,9 @@ }, { "id": 530, - "name": "brown_wall_banner", - "translation_key": "block.minecraft.brown_banner", - "item_id": 1095, + "name": "blue_wall_banner", + "translation_key": "block.minecraft.blue_banner", + "item_id": 1098, "properties": [ { "name": "facing", @@ -112776,9 +112813,9 @@ }, { "id": 531, - "name": "green_wall_banner", - "translation_key": "block.minecraft.green_banner", - "item_id": 1096, + "name": "brown_wall_banner", + "translation_key": "block.minecraft.brown_banner", + "item_id": 1099, "properties": [ { "name": "facing", @@ -112828,9 +112865,9 @@ }, { "id": 532, - "name": "red_wall_banner", - "translation_key": "block.minecraft.red_banner", - "item_id": 1097, + "name": "green_wall_banner", + "translation_key": "block.minecraft.green_banner", + "item_id": 1100, "properties": [ { "name": "facing", @@ -112880,9 +112917,9 @@ }, { "id": 533, - "name": "black_wall_banner", - "translation_key": "block.minecraft.black_banner", - "item_id": 1098, + "name": "red_wall_banner", + "translation_key": "block.minecraft.red_banner", + "item_id": 1101, "properties": [ { "name": "facing", @@ -112932,33 +112969,66 @@ }, { "id": 534, - "name": "red_sandstone", - "translation_key": "block.minecraft.red_sandstone", - "item_id": 486, - "properties": [], + "name": "black_wall_banner", + "translation_key": "block.minecraft.black_banner", + "item_id": 1102, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], "default_state_id": 10934, "states": [ { "id": 10934, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] + "collision_shapes": [], + "block_entity_type": 19 + }, + { + "id": 10935, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 19 + }, + { + "id": 10936, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 19 + }, + { + "id": 10937, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 19 } ] }, { "id": 535, - "name": "chiseled_red_sandstone", - "translation_key": "block.minecraft.chiseled_red_sandstone", - "item_id": 487, + "name": "red_sandstone", + "translation_key": "block.minecraft.red_sandstone", + "item_id": 488, "properties": [], - "default_state_id": 10935, + "default_state_id": 10938, "states": [ { - "id": 10935, + "id": 10938, "luminance": 0, "opaque": true, "replaceable": false, @@ -112970,14 +113040,14 @@ }, { "id": 536, - "name": "cut_red_sandstone", - "translation_key": "block.minecraft.cut_red_sandstone", - "item_id": 488, + "name": "chiseled_red_sandstone", + "translation_key": "block.minecraft.chiseled_red_sandstone", + "item_id": 489, "properties": [], - "default_state_id": 10936, + "default_state_id": 10939, "states": [ { - "id": 10936, + "id": 10939, "luminance": 0, "opaque": true, "replaceable": false, @@ -112989,9 +113059,28 @@ }, { "id": 537, + "name": "cut_red_sandstone", + "translation_key": "block.minecraft.cut_red_sandstone", + "item_id": 490, + "properties": [], + "default_state_id": 10940, + "states": [ + { + "id": 10940, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 538, "name": "red_sandstone_stairs", "translation_key": "block.minecraft.red_sandstone_stairs", - "item_id": 489, + "item_id": 491, "properties": [ { "name": "facing", @@ -113027,50 +113116,8 @@ ] } ], - "default_state_id": 10948, + "default_state_id": 10952, "states": [ - { - "id": 10937, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 10938, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 10939, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 10940, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, { "id": 10941, "luminance": 0, @@ -113078,8 +113125,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -113089,8 +113135,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -113099,9 +113144,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -113110,9 +113155,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -113121,9 +113166,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -113132,9 +113177,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -113143,8 +113188,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -113153,8 +113199,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -113163,9 +113210,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -113174,9 +113221,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -113186,8 +113233,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -113197,8 +113243,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -113208,7 +113253,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -113218,7 +113264,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -113228,7 +113275,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -113238,7 +113286,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -113247,8 +113296,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -113257,8 +113306,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -113267,9 +113316,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -113278,9 +113326,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -113289,9 +113336,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -113300,9 +113346,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -113311,9 +113356,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -113322,9 +113367,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -113333,9 +113378,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -113344,9 +113389,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -113355,8 +113400,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -113365,8 +113411,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -113375,9 +113422,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -113386,9 +113433,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -113398,8 +113445,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -113409,8 +113455,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -113420,7 +113465,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -113430,7 +113476,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -113440,7 +113487,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -113450,7 +113498,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -113459,8 +113508,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -113469,8 +113518,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -113479,9 +113528,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -113490,9 +113538,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -113502,8 +113549,7 @@ "replaceable": false, "collision_shapes": [ 43, - 44, - 45 + 56 ] }, { @@ -113511,54 +113557,53 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 10983, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10984, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 10985, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 43, 44, 45 ] }, - { - "id": 10983, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10984, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 10985, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, { "id": 10986, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -113567,8 +113612,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -113577,8 +113623,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -113587,9 +113634,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -113598,9 +113645,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -113610,8 +113657,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -113621,8 +113667,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -113632,7 +113677,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -113642,7 +113688,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -113652,7 +113699,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -113662,7 +113710,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -113671,8 +113720,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -113681,8 +113730,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -113691,9 +113740,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -113702,9 +113750,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -113713,9 +113760,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -113724,9 +113770,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -113735,9 +113780,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -113746,9 +113791,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -113757,9 +113802,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -113768,9 +113813,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -113779,8 +113824,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -113789,8 +113835,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -113799,9 +113846,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -113810,9 +113857,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -113822,8 +113869,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -113833,8 +113879,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -113844,7 +113889,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -113854,7 +113900,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -113864,7 +113911,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -113872,6 +113920,47 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 11017, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11018, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 11019, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 11020, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 51, 45 @@ -113880,169 +113969,9 @@ ] }, { - "id": 538, + "id": 539, "name": "oak_slab", "translation_key": "block.minecraft.oak_slab", - "item_id": 228, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 11020, - "states": [ - { - "id": 11017, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 11018, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 11019, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 11020, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 11021, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 11022, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 539, - "name": "spruce_slab", - "translation_key": "block.minecraft.spruce_slab", - "item_id": 229, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 11026, - "states": [ - { - "id": 11023, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 11024, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 11025, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 11026, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 11027, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 11028, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 540, - "name": "birch_slab", - "translation_key": "block.minecraft.birch_slab", "item_id": 230, "properties": [ { @@ -114061,10 +113990,10 @@ ] } ], - "default_state_id": 11032, + "default_state_id": 11024, "states": [ { - "id": 11029, + "id": 11021, "luminance": 0, "opaque": true, "replaceable": false, @@ -114073,7 +114002,7 @@ ] }, { - "id": 11030, + "id": 11022, "luminance": 0, "opaque": true, "replaceable": false, @@ -114082,7 +114011,7 @@ ] }, { - "id": 11031, + "id": 11023, "luminance": 0, "opaque": true, "replaceable": false, @@ -114091,7 +114020,7 @@ ] }, { - "id": 11032, + "id": 11024, "luminance": 0, "opaque": true, "replaceable": false, @@ -114100,7 +114029,7 @@ ] }, { - "id": 11033, + "id": 11025, "luminance": 0, "opaque": true, "replaceable": false, @@ -114109,7 +114038,7 @@ ] }, { - "id": 11034, + "id": 11026, "luminance": 0, "opaque": true, "replaceable": false, @@ -114120,9 +114049,9 @@ ] }, { - "id": 541, - "name": "jungle_slab", - "translation_key": "block.minecraft.jungle_slab", + "id": 540, + "name": "spruce_slab", + "translation_key": "block.minecraft.spruce_slab", "item_id": 231, "properties": [ { @@ -114141,10 +114070,10 @@ ] } ], - "default_state_id": 11038, + "default_state_id": 11030, "states": [ { - "id": 11035, + "id": 11027, "luminance": 0, "opaque": true, "replaceable": false, @@ -114153,7 +114082,7 @@ ] }, { - "id": 11036, + "id": 11028, "luminance": 0, "opaque": true, "replaceable": false, @@ -114162,7 +114091,7 @@ ] }, { - "id": 11037, + "id": 11029, "luminance": 0, "opaque": true, "replaceable": false, @@ -114171,7 +114100,7 @@ ] }, { - "id": 11038, + "id": 11030, "luminance": 0, "opaque": true, "replaceable": false, @@ -114180,7 +114109,7 @@ ] }, { - "id": 11039, + "id": 11031, "luminance": 0, "opaque": true, "replaceable": false, @@ -114189,7 +114118,7 @@ ] }, { - "id": 11040, + "id": 11032, "luminance": 0, "opaque": true, "replaceable": false, @@ -114200,9 +114129,9 @@ ] }, { - "id": 542, - "name": "acacia_slab", - "translation_key": "block.minecraft.acacia_slab", + "id": 541, + "name": "birch_slab", + "translation_key": "block.minecraft.birch_slab", "item_id": 232, "properties": [ { @@ -114221,10 +114150,10 @@ ] } ], - "default_state_id": 11044, + "default_state_id": 11036, "states": [ { - "id": 11041, + "id": 11033, "luminance": 0, "opaque": true, "replaceable": false, @@ -114233,7 +114162,7 @@ ] }, { - "id": 11042, + "id": 11034, "luminance": 0, "opaque": true, "replaceable": false, @@ -114242,7 +114171,7 @@ ] }, { - "id": 11043, + "id": 11035, "luminance": 0, "opaque": true, "replaceable": false, @@ -114251,7 +114180,7 @@ ] }, { - "id": 11044, + "id": 11036, "luminance": 0, "opaque": true, "replaceable": false, @@ -114260,7 +114189,7 @@ ] }, { - "id": 11045, + "id": 11037, "luminance": 0, "opaque": true, "replaceable": false, @@ -114269,7 +114198,7 @@ ] }, { - "id": 11046, + "id": 11038, "luminance": 0, "opaque": true, "replaceable": false, @@ -114280,9 +114209,9 @@ ] }, { - "id": 543, - "name": "cherry_slab", - "translation_key": "block.minecraft.cherry_slab", + "id": 542, + "name": "jungle_slab", + "translation_key": "block.minecraft.jungle_slab", "item_id": 233, "properties": [ { @@ -114301,10 +114230,10 @@ ] } ], - "default_state_id": 11050, + "default_state_id": 11042, "states": [ { - "id": 11047, + "id": 11039, "luminance": 0, "opaque": true, "replaceable": false, @@ -114313,7 +114242,7 @@ ] }, { - "id": 11048, + "id": 11040, "luminance": 0, "opaque": true, "replaceable": false, @@ -114322,7 +114251,7 @@ ] }, { - "id": 11049, + "id": 11041, "luminance": 0, "opaque": true, "replaceable": false, @@ -114331,7 +114260,7 @@ ] }, { - "id": 11050, + "id": 11042, "luminance": 0, "opaque": true, "replaceable": false, @@ -114340,7 +114269,7 @@ ] }, { - "id": 11051, + "id": 11043, "luminance": 0, "opaque": true, "replaceable": false, @@ -114349,7 +114278,7 @@ ] }, { - "id": 11052, + "id": 11044, "luminance": 0, "opaque": true, "replaceable": false, @@ -114360,9 +114289,9 @@ ] }, { - "id": 544, - "name": "dark_oak_slab", - "translation_key": "block.minecraft.dark_oak_slab", + "id": 543, + "name": "acacia_slab", + "translation_key": "block.minecraft.acacia_slab", "item_id": 234, "properties": [ { @@ -114381,10 +114310,10 @@ ] } ], - "default_state_id": 11056, + "default_state_id": 11048, "states": [ { - "id": 11053, + "id": 11045, "luminance": 0, "opaque": true, "replaceable": false, @@ -114393,7 +114322,7 @@ ] }, { - "id": 11054, + "id": 11046, "luminance": 0, "opaque": true, "replaceable": false, @@ -114402,7 +114331,7 @@ ] }, { - "id": 11055, + "id": 11047, "luminance": 0, "opaque": true, "replaceable": false, @@ -114411,7 +114340,7 @@ ] }, { - "id": 11056, + "id": 11048, "luminance": 0, "opaque": true, "replaceable": false, @@ -114420,7 +114349,7 @@ ] }, { - "id": 11057, + "id": 11049, "luminance": 0, "opaque": true, "replaceable": false, @@ -114429,7 +114358,7 @@ ] }, { - "id": 11058, + "id": 11050, "luminance": 0, "opaque": true, "replaceable": false, @@ -114440,9 +114369,9 @@ ] }, { - "id": 545, - "name": "mangrove_slab", - "translation_key": "block.minecraft.mangrove_slab", + "id": 544, + "name": "cherry_slab", + "translation_key": "block.minecraft.cherry_slab", "item_id": 235, "properties": [ { @@ -114461,10 +114390,10 @@ ] } ], - "default_state_id": 11062, + "default_state_id": 11054, "states": [ { - "id": 11059, + "id": 11051, "luminance": 0, "opaque": true, "replaceable": false, @@ -114473,7 +114402,7 @@ ] }, { - "id": 11060, + "id": 11052, "luminance": 0, "opaque": true, "replaceable": false, @@ -114482,7 +114411,7 @@ ] }, { - "id": 11061, + "id": 11053, "luminance": 0, "opaque": true, "replaceable": false, @@ -114491,7 +114420,7 @@ ] }, { - "id": 11062, + "id": 11054, "luminance": 0, "opaque": true, "replaceable": false, @@ -114500,7 +114429,7 @@ ] }, { - "id": 11063, + "id": 11055, "luminance": 0, "opaque": true, "replaceable": false, @@ -114509,7 +114438,7 @@ ] }, { - "id": 11064, + "id": 11056, "luminance": 0, "opaque": true, "replaceable": false, @@ -114520,9 +114449,9 @@ ] }, { - "id": 546, - "name": "bamboo_slab", - "translation_key": "block.minecraft.bamboo_slab", + "id": 545, + "name": "dark_oak_slab", + "translation_key": "block.minecraft.dark_oak_slab", "item_id": 236, "properties": [ { @@ -114541,10 +114470,10 @@ ] } ], - "default_state_id": 11068, + "default_state_id": 11060, "states": [ { - "id": 11065, + "id": 11057, "luminance": 0, "opaque": true, "replaceable": false, @@ -114553,7 +114482,7 @@ ] }, { - "id": 11066, + "id": 11058, "luminance": 0, "opaque": true, "replaceable": false, @@ -114562,7 +114491,7 @@ ] }, { - "id": 11067, + "id": 11059, "luminance": 0, "opaque": true, "replaceable": false, @@ -114571,7 +114500,7 @@ ] }, { - "id": 11068, + "id": 11060, "luminance": 0, "opaque": true, "replaceable": false, @@ -114580,7 +114509,7 @@ ] }, { - "id": 11069, + "id": 11061, "luminance": 0, "opaque": true, "replaceable": false, @@ -114589,7 +114518,7 @@ ] }, { - "id": 11070, + "id": 11062, "luminance": 0, "opaque": true, "replaceable": false, @@ -114600,9 +114529,9 @@ ] }, { - "id": 547, - "name": "bamboo_mosaic_slab", - "translation_key": "block.minecraft.bamboo_mosaic_slab", + "id": 546, + "name": "mangrove_slab", + "translation_key": "block.minecraft.mangrove_slab", "item_id": 237, "properties": [ { @@ -114621,10 +114550,10 @@ ] } ], - "default_state_id": 11074, + "default_state_id": 11066, "states": [ { - "id": 11071, + "id": 11063, "luminance": 0, "opaque": true, "replaceable": false, @@ -114633,7 +114562,7 @@ ] }, { - "id": 11072, + "id": 11064, "luminance": 0, "opaque": true, "replaceable": false, @@ -114642,7 +114571,7 @@ ] }, { - "id": 11073, + "id": 11065, "luminance": 0, "opaque": true, "replaceable": false, @@ -114651,7 +114580,7 @@ ] }, { - "id": 11074, + "id": 11066, "luminance": 0, "opaque": true, "replaceable": false, @@ -114660,7 +114589,7 @@ ] }, { - "id": 11075, + "id": 11067, "luminance": 0, "opaque": true, "replaceable": false, @@ -114669,7 +114598,87 @@ ] }, { - "id": 11076, + "id": 11068, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 547, + "name": "bamboo_slab", + "translation_key": "block.minecraft.bamboo_slab", + "item_id": 238, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11072, + "states": [ + { + "id": 11069, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 11070, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 11071, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11072, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11073, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11074, "luminance": 0, "opaque": true, "replaceable": false, @@ -114681,9 +114690,9 @@ }, { "id": 548, - "name": "stone_slab", - "translation_key": "block.minecraft.stone_slab", - "item_id": 240, + "name": "bamboo_mosaic_slab", + "translation_key": "block.minecraft.bamboo_mosaic_slab", + "item_id": 239, "properties": [ { "name": "type", @@ -114701,15 +114710,33 @@ ] } ], - "default_state_id": 11080, + "default_state_id": 11078, "states": [ + { + "id": 11075, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 11076, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, { "id": 11077, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 201 + 51 ] }, { @@ -114718,7 +114745,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 201 + 51 ] }, { @@ -114726,30 +114753,12 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 11080, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 11081, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 0 ] }, { - "id": 11082, + "id": 11080, "luminance": 0, "opaque": true, "replaceable": false, @@ -114761,88 +114770,8 @@ }, { "id": 549, - "name": "smooth_stone_slab", - "translation_key": "block.minecraft.smooth_stone_slab", - "item_id": 241, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 11086, - "states": [ - { - "id": 11083, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 11084, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 11085, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 11086, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 11087, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 11088, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 550, - "name": "sandstone_slab", - "translation_key": "block.minecraft.sandstone_slab", + "name": "stone_slab", + "translation_key": "block.minecraft.stone_slab", "item_id": 242, "properties": [ { @@ -114861,10 +114790,10 @@ ] } ], - "default_state_id": 11092, + "default_state_id": 11084, "states": [ { - "id": 11089, + "id": 11081, "luminance": 0, "opaque": true, "replaceable": false, @@ -114873,7 +114802,7 @@ ] }, { - "id": 11090, + "id": 11082, "luminance": 0, "opaque": true, "replaceable": false, @@ -114882,7 +114811,7 @@ ] }, { - "id": 11091, + "id": 11083, "luminance": 0, "opaque": true, "replaceable": false, @@ -114891,7 +114820,7 @@ ] }, { - "id": 11092, + "id": 11084, "luminance": 0, "opaque": true, "replaceable": false, @@ -114900,7 +114829,7 @@ ] }, { - "id": 11093, + "id": 11085, "luminance": 0, "opaque": true, "replaceable": false, @@ -114909,7 +114838,7 @@ ] }, { - "id": 11094, + "id": 11086, "luminance": 0, "opaque": true, "replaceable": false, @@ -114920,9 +114849,9 @@ ] }, { - "id": 551, - "name": "cut_sandstone_slab", - "translation_key": "block.minecraft.cut_sandstone_slab", + "id": 550, + "name": "smooth_stone_slab", + "translation_key": "block.minecraft.smooth_stone_slab", "item_id": 243, "properties": [ { @@ -114941,10 +114870,10 @@ ] } ], - "default_state_id": 11098, + "default_state_id": 11090, "states": [ { - "id": 11095, + "id": 11087, "luminance": 0, "opaque": true, "replaceable": false, @@ -114953,7 +114882,7 @@ ] }, { - "id": 11096, + "id": 11088, "luminance": 0, "opaque": true, "replaceable": false, @@ -114962,7 +114891,7 @@ ] }, { - "id": 11097, + "id": 11089, "luminance": 0, "opaque": true, "replaceable": false, @@ -114971,7 +114900,7 @@ ] }, { - "id": 11098, + "id": 11090, "luminance": 0, "opaque": true, "replaceable": false, @@ -114980,7 +114909,7 @@ ] }, { - "id": 11099, + "id": 11091, "luminance": 0, "opaque": true, "replaceable": false, @@ -114989,7 +114918,7 @@ ] }, { - "id": 11100, + "id": 11092, "luminance": 0, "opaque": true, "replaceable": false, @@ -115000,9 +114929,9 @@ ] }, { - "id": 552, - "name": "petrified_oak_slab", - "translation_key": "block.minecraft.petrified_oak_slab", + "id": 551, + "name": "sandstone_slab", + "translation_key": "block.minecraft.sandstone_slab", "item_id": 244, "properties": [ { @@ -115021,10 +114950,10 @@ ] } ], - "default_state_id": 11104, + "default_state_id": 11096, "states": [ { - "id": 11101, + "id": 11093, "luminance": 0, "opaque": true, "replaceable": false, @@ -115033,7 +114962,7 @@ ] }, { - "id": 11102, + "id": 11094, "luminance": 0, "opaque": true, "replaceable": false, @@ -115042,7 +114971,7 @@ ] }, { - "id": 11103, + "id": 11095, "luminance": 0, "opaque": true, "replaceable": false, @@ -115051,7 +114980,7 @@ ] }, { - "id": 11104, + "id": 11096, "luminance": 0, "opaque": true, "replaceable": false, @@ -115060,7 +114989,7 @@ ] }, { - "id": 11105, + "id": 11097, "luminance": 0, "opaque": true, "replaceable": false, @@ -115069,7 +114998,7 @@ ] }, { - "id": 11106, + "id": 11098, "luminance": 0, "opaque": true, "replaceable": false, @@ -115080,9 +115009,9 @@ ] }, { - "id": 553, - "name": "cobblestone_slab", - "translation_key": "block.minecraft.cobblestone_slab", + "id": 552, + "name": "cut_sandstone_slab", + "translation_key": "block.minecraft.cut_sandstone_slab", "item_id": 245, "properties": [ { @@ -115101,10 +115030,10 @@ ] } ], - "default_state_id": 11110, + "default_state_id": 11102, "states": [ { - "id": 11107, + "id": 11099, "luminance": 0, "opaque": true, "replaceable": false, @@ -115113,7 +115042,7 @@ ] }, { - "id": 11108, + "id": 11100, "luminance": 0, "opaque": true, "replaceable": false, @@ -115122,7 +115051,7 @@ ] }, { - "id": 11109, + "id": 11101, "luminance": 0, "opaque": true, "replaceable": false, @@ -115131,7 +115060,7 @@ ] }, { - "id": 11110, + "id": 11102, "luminance": 0, "opaque": true, "replaceable": false, @@ -115140,7 +115069,7 @@ ] }, { - "id": 11111, + "id": 11103, "luminance": 0, "opaque": true, "replaceable": false, @@ -115149,7 +115078,7 @@ ] }, { - "id": 11112, + "id": 11104, "luminance": 0, "opaque": true, "replaceable": false, @@ -115160,9 +115089,9 @@ ] }, { - "id": 554, - "name": "brick_slab", - "translation_key": "block.minecraft.brick_slab", + "id": 553, + "name": "petrified_oak_slab", + "translation_key": "block.minecraft.petrified_oak_slab", "item_id": 246, "properties": [ { @@ -115181,10 +115110,10 @@ ] } ], - "default_state_id": 11116, + "default_state_id": 11108, "states": [ { - "id": 11113, + "id": 11105, "luminance": 0, "opaque": true, "replaceable": false, @@ -115193,7 +115122,7 @@ ] }, { - "id": 11114, + "id": 11106, "luminance": 0, "opaque": true, "replaceable": false, @@ -115202,7 +115131,7 @@ ] }, { - "id": 11115, + "id": 11107, "luminance": 0, "opaque": true, "replaceable": false, @@ -115211,7 +115140,7 @@ ] }, { - "id": 11116, + "id": 11108, "luminance": 0, "opaque": true, "replaceable": false, @@ -115220,7 +115149,7 @@ ] }, { - "id": 11117, + "id": 11109, "luminance": 0, "opaque": true, "replaceable": false, @@ -115229,7 +115158,7 @@ ] }, { - "id": 11118, + "id": 11110, "luminance": 0, "opaque": true, "replaceable": false, @@ -115240,9 +115169,9 @@ ] }, { - "id": 555, - "name": "stone_brick_slab", - "translation_key": "block.minecraft.stone_brick_slab", + "id": 554, + "name": "cobblestone_slab", + "translation_key": "block.minecraft.cobblestone_slab", "item_id": 247, "properties": [ { @@ -115261,10 +115190,10 @@ ] } ], - "default_state_id": 11122, + "default_state_id": 11114, "states": [ { - "id": 11119, + "id": 11111, "luminance": 0, "opaque": true, "replaceable": false, @@ -115273,7 +115202,7 @@ ] }, { - "id": 11120, + "id": 11112, "luminance": 0, "opaque": true, "replaceable": false, @@ -115282,7 +115211,7 @@ ] }, { - "id": 11121, + "id": 11113, "luminance": 0, "opaque": true, "replaceable": false, @@ -115291,7 +115220,7 @@ ] }, { - "id": 11122, + "id": 11114, "luminance": 0, "opaque": true, "replaceable": false, @@ -115300,7 +115229,7 @@ ] }, { - "id": 11123, + "id": 11115, "luminance": 0, "opaque": true, "replaceable": false, @@ -115309,7 +115238,7 @@ ] }, { - "id": 11124, + "id": 11116, "luminance": 0, "opaque": true, "replaceable": false, @@ -115320,9 +115249,9 @@ ] }, { - "id": 556, - "name": "mud_brick_slab", - "translation_key": "block.minecraft.mud_brick_slab", + "id": 555, + "name": "brick_slab", + "translation_key": "block.minecraft.brick_slab", "item_id": 248, "properties": [ { @@ -115341,10 +115270,10 @@ ] } ], - "default_state_id": 11128, + "default_state_id": 11120, "states": [ { - "id": 11125, + "id": 11117, "luminance": 0, "opaque": true, "replaceable": false, @@ -115353,7 +115282,7 @@ ] }, { - "id": 11126, + "id": 11118, "luminance": 0, "opaque": true, "replaceable": false, @@ -115362,7 +115291,7 @@ ] }, { - "id": 11127, + "id": 11119, "luminance": 0, "opaque": true, "replaceable": false, @@ -115371,7 +115300,7 @@ ] }, { - "id": 11128, + "id": 11120, "luminance": 0, "opaque": true, "replaceable": false, @@ -115380,7 +115309,7 @@ ] }, { - "id": 11129, + "id": 11121, "luminance": 0, "opaque": true, "replaceable": false, @@ -115389,7 +115318,7 @@ ] }, { - "id": 11130, + "id": 11122, "luminance": 0, "opaque": true, "replaceable": false, @@ -115400,9 +115329,9 @@ ] }, { - "id": 557, - "name": "nether_brick_slab", - "translation_key": "block.minecraft.nether_brick_slab", + "id": 556, + "name": "stone_brick_slab", + "translation_key": "block.minecraft.stone_brick_slab", "item_id": 249, "properties": [ { @@ -115421,10 +115350,10 @@ ] } ], - "default_state_id": 11134, + "default_state_id": 11126, "states": [ { - "id": 11131, + "id": 11123, "luminance": 0, "opaque": true, "replaceable": false, @@ -115433,7 +115362,7 @@ ] }, { - "id": 11132, + "id": 11124, "luminance": 0, "opaque": true, "replaceable": false, @@ -115442,7 +115371,7 @@ ] }, { - "id": 11133, + "id": 11125, "luminance": 0, "opaque": true, "replaceable": false, @@ -115451,7 +115380,7 @@ ] }, { - "id": 11134, + "id": 11126, "luminance": 0, "opaque": true, "replaceable": false, @@ -115460,7 +115389,7 @@ ] }, { - "id": 11135, + "id": 11127, "luminance": 0, "opaque": true, "replaceable": false, @@ -115469,7 +115398,7 @@ ] }, { - "id": 11136, + "id": 11128, "luminance": 0, "opaque": true, "replaceable": false, @@ -115480,9 +115409,9 @@ ] }, { - "id": 558, - "name": "quartz_slab", - "translation_key": "block.minecraft.quartz_slab", + "id": 557, + "name": "mud_brick_slab", + "translation_key": "block.minecraft.mud_brick_slab", "item_id": 250, "properties": [ { @@ -115501,10 +115430,10 @@ ] } ], - "default_state_id": 11140, + "default_state_id": 11132, "states": [ { - "id": 11137, + "id": 11129, "luminance": 0, "opaque": true, "replaceable": false, @@ -115513,7 +115442,7 @@ ] }, { - "id": 11138, + "id": 11130, "luminance": 0, "opaque": true, "replaceable": false, @@ -115522,7 +115451,7 @@ ] }, { - "id": 11139, + "id": 11131, "luminance": 0, "opaque": true, "replaceable": false, @@ -115531,7 +115460,7 @@ ] }, { - "id": 11140, + "id": 11132, "luminance": 0, "opaque": true, "replaceable": false, @@ -115540,7 +115469,7 @@ ] }, { - "id": 11141, + "id": 11133, "luminance": 0, "opaque": true, "replaceable": false, @@ -115549,7 +115478,7 @@ ] }, { - "id": 11142, + "id": 11134, "luminance": 0, "opaque": true, "replaceable": false, @@ -115560,9 +115489,9 @@ ] }, { - "id": 559, - "name": "red_sandstone_slab", - "translation_key": "block.minecraft.red_sandstone_slab", + "id": 558, + "name": "nether_brick_slab", + "translation_key": "block.minecraft.nether_brick_slab", "item_id": 251, "properties": [ { @@ -115581,10 +115510,10 @@ ] } ], - "default_state_id": 11146, + "default_state_id": 11138, "states": [ { - "id": 11143, + "id": 11135, "luminance": 0, "opaque": true, "replaceable": false, @@ -115593,7 +115522,7 @@ ] }, { - "id": 11144, + "id": 11136, "luminance": 0, "opaque": true, "replaceable": false, @@ -115602,7 +115531,7 @@ ] }, { - "id": 11145, + "id": 11137, "luminance": 0, "opaque": true, "replaceable": false, @@ -115611,7 +115540,7 @@ ] }, { - "id": 11146, + "id": 11138, "luminance": 0, "opaque": true, "replaceable": false, @@ -115620,7 +115549,7 @@ ] }, { - "id": 11147, + "id": 11139, "luminance": 0, "opaque": true, "replaceable": false, @@ -115629,7 +115558,7 @@ ] }, { - "id": 11148, + "id": 11140, "luminance": 0, "opaque": true, "replaceable": false, @@ -115640,9 +115569,9 @@ ] }, { - "id": 560, - "name": "cut_red_sandstone_slab", - "translation_key": "block.minecraft.cut_red_sandstone_slab", + "id": 559, + "name": "quartz_slab", + "translation_key": "block.minecraft.quartz_slab", "item_id": 252, "properties": [ { @@ -115661,10 +115590,10 @@ ] } ], - "default_state_id": 11152, + "default_state_id": 11144, "states": [ { - "id": 11149, + "id": 11141, "luminance": 0, "opaque": true, "replaceable": false, @@ -115673,7 +115602,7 @@ ] }, { - "id": 11150, + "id": 11142, "luminance": 0, "opaque": true, "replaceable": false, @@ -115682,7 +115611,7 @@ ] }, { - "id": 11151, + "id": 11143, "luminance": 0, "opaque": true, "replaceable": false, @@ -115691,7 +115620,7 @@ ] }, { - "id": 11152, + "id": 11144, "luminance": 0, "opaque": true, "replaceable": false, @@ -115700,7 +115629,7 @@ ] }, { - "id": 11153, + "id": 11145, "luminance": 0, "opaque": true, "replaceable": false, @@ -115709,7 +115638,7 @@ ] }, { - "id": 11154, + "id": 11146, "luminance": 0, "opaque": true, "replaceable": false, @@ -115720,9 +115649,9 @@ ] }, { - "id": 561, - "name": "purpur_slab", - "translation_key": "block.minecraft.purpur_slab", + "id": 560, + "name": "red_sandstone_slab", + "translation_key": "block.minecraft.red_sandstone_slab", "item_id": 253, "properties": [ { @@ -115741,10 +115670,10 @@ ] } ], - "default_state_id": 11158, + "default_state_id": 11150, "states": [ { - "id": 11155, + "id": 11147, "luminance": 0, "opaque": true, "replaceable": false, @@ -115753,7 +115682,7 @@ ] }, { - "id": 11156, + "id": 11148, "luminance": 0, "opaque": true, "replaceable": false, @@ -115762,7 +115691,7 @@ ] }, { - "id": 11157, + "id": 11149, "luminance": 0, "opaque": true, "replaceable": false, @@ -115771,7 +115700,7 @@ ] }, { - "id": 11158, + "id": 11150, "luminance": 0, "opaque": true, "replaceable": false, @@ -115780,7 +115709,7 @@ ] }, { - "id": 11159, + "id": 11151, "luminance": 0, "opaque": true, "replaceable": false, @@ -115789,7 +115718,87 @@ ] }, { - "id": 11160, + "id": 11152, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 561, + "name": "cut_red_sandstone_slab", + "translation_key": "block.minecraft.cut_red_sandstone_slab", + "item_id": 254, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11156, + "states": [ + { + "id": 11153, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 11154, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 11155, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11156, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 11157, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 11158, "luminance": 0, "opaque": true, "replaceable": false, @@ -115801,50 +115810,64 @@ }, { "id": 562, - "name": "smooth_stone", - "translation_key": "block.minecraft.smooth_stone", - "item_id": 260, - "properties": [], - "default_state_id": 11161, + "name": "purpur_slab", + "translation_key": "block.minecraft.purpur_slab", + "item_id": 255, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11162, "states": [ + { + "id": 11159, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 11160, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, { "id": 11161, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 51 ] - } - ] - }, - { - "id": 563, - "name": "smooth_sandstone", - "translation_key": "block.minecraft.smooth_sandstone", - "item_id": 259, - "properties": [], - "default_state_id": 11162, - "states": [ + }, { "id": 11162, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 51 ] - } - ] - }, - { - "id": 564, - "name": "smooth_quartz", - "translation_key": "block.minecraft.smooth_quartz", - "item_id": 257, - "properties": [], - "default_state_id": 11163, - "states": [ + }, { "id": 11163, "luminance": 0, @@ -115853,17 +115876,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 565, - "name": "smooth_red_sandstone", - "translation_key": "block.minecraft.smooth_red_sandstone", - "item_id": 258, - "properties": [], - "default_state_id": 11164, - "states": [ + }, { "id": 11164, "luminance": 0, @@ -115875,11 +115888,87 @@ } ] }, + { + "id": 563, + "name": "smooth_stone", + "translation_key": "block.minecraft.smooth_stone", + "item_id": 262, + "properties": [], + "default_state_id": 11165, + "states": [ + { + "id": 11165, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 564, + "name": "smooth_sandstone", + "translation_key": "block.minecraft.smooth_sandstone", + "item_id": 261, + "properties": [], + "default_state_id": 11166, + "states": [ + { + "id": 11166, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 565, + "name": "smooth_quartz", + "translation_key": "block.minecraft.smooth_quartz", + "item_id": 259, + "properties": [], + "default_state_id": 11167, + "states": [ + { + "id": 11167, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, { "id": 566, + "name": "smooth_red_sandstone", + "translation_key": "block.minecraft.smooth_red_sandstone", + "item_id": 260, + "properties": [], + "default_state_id": 11168, + "states": [ + { + "id": 11168, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 567, "name": "spruce_fence_gate", "translation_key": "block.minecraft.spruce_fence_gate", - "item_id": 709, + "item_id": 713, "properties": [ { "name": "facing", @@ -115912,40 +116001,8 @@ ] } ], - "default_state_id": 11172, + "default_state_id": 11176, "states": [ - { - "id": 11165, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11166, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11167, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 11168, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, { "id": 11169, "luminance": 0, @@ -116062,7 +116119,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -116071,7 +116128,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -116169,14 +116226,46 @@ "collision_shapes": [ 78 ] + }, + { + "id": 11197, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11198, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11199, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 11200, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] } ] }, { - "id": 567, + "id": 568, "name": "birch_fence_gate", "translation_key": "block.minecraft.birch_fence_gate", - "item_id": 710, + "item_id": 714, "properties": [ { "name": "facing", @@ -116209,40 +116298,8 @@ ] } ], - "default_state_id": 11204, + "default_state_id": 11208, "states": [ - { - "id": 11197, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11198, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11199, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 11200, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, { "id": 11201, "luminance": 0, @@ -116359,7 +116416,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -116368,7 +116425,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -116466,14 +116523,46 @@ "collision_shapes": [ 78 ] + }, + { + "id": 11229, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11230, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11231, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 11232, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] } ] }, { - "id": 568, + "id": 569, "name": "jungle_fence_gate", "translation_key": "block.minecraft.jungle_fence_gate", - "item_id": 711, + "item_id": 715, "properties": [ { "name": "facing", @@ -116506,40 +116595,8 @@ ] } ], - "default_state_id": 11236, + "default_state_id": 11240, "states": [ - { - "id": 11229, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11230, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11231, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 11232, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, { "id": 11233, "luminance": 0, @@ -116656,7 +116713,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -116665,7 +116722,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -116763,14 +116820,46 @@ "collision_shapes": [ 78 ] + }, + { + "id": 11261, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11262, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11263, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 11264, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] } ] }, { - "id": 569, + "id": 570, "name": "acacia_fence_gate", "translation_key": "block.minecraft.acacia_fence_gate", - "item_id": 712, + "item_id": 716, "properties": [ { "name": "facing", @@ -116803,40 +116892,8 @@ ] } ], - "default_state_id": 11268, + "default_state_id": 11272, "states": [ - { - "id": 11261, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11262, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11263, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 11264, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, { "id": 11265, "luminance": 0, @@ -116953,7 +117010,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -116962,7 +117019,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -117060,14 +117117,46 @@ "collision_shapes": [ 78 ] + }, + { + "id": 11293, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11294, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11295, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 11296, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] } ] }, { - "id": 570, + "id": 571, "name": "cherry_fence_gate", "translation_key": "block.minecraft.cherry_fence_gate", - "item_id": 713, + "item_id": 717, "properties": [ { "name": "facing", @@ -117100,40 +117189,8 @@ ] } ], - "default_state_id": 11300, + "default_state_id": 11304, "states": [ - { - "id": 11293, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11294, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11295, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 11296, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, { "id": 11297, "luminance": 0, @@ -117250,7 +117307,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -117259,7 +117316,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -117357,14 +117414,46 @@ "collision_shapes": [ 78 ] + }, + { + "id": 11325, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11326, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11327, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 11328, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] } ] }, { - "id": 571, + "id": 572, "name": "dark_oak_fence_gate", "translation_key": "block.minecraft.dark_oak_fence_gate", - "item_id": 714, + "item_id": 718, "properties": [ { "name": "facing", @@ -117397,40 +117486,8 @@ ] } ], - "default_state_id": 11332, + "default_state_id": 11336, "states": [ - { - "id": 11325, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11326, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11327, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 11328, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, { "id": 11329, "luminance": 0, @@ -117547,7 +117604,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -117556,7 +117613,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -117654,14 +117711,46 @@ "collision_shapes": [ 78 ] + }, + { + "id": 11357, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11358, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11359, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 11360, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] } ] }, { - "id": 572, + "id": 573, "name": "mangrove_fence_gate", "translation_key": "block.minecraft.mangrove_fence_gate", - "item_id": 715, + "item_id": 719, "properties": [ { "name": "facing", @@ -117694,40 +117783,8 @@ ] } ], - "default_state_id": 11364, + "default_state_id": 11368, "states": [ - { - "id": 11357, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11358, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11359, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 11360, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, { "id": 11361, "luminance": 0, @@ -117844,7 +117901,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -117853,7 +117910,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -117951,14 +118008,46 @@ "collision_shapes": [ 78 ] + }, + { + "id": 11389, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11390, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 11391, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 11392, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] } ] }, { - "id": 573, + "id": 574, "name": "bamboo_fence_gate", "translation_key": "block.minecraft.bamboo_fence_gate", - "item_id": 716, + "item_id": 720, "properties": [ { "name": "facing", @@ -117991,40 +118080,8 @@ ] } ], - "default_state_id": 11396, + "default_state_id": 11400, "states": [ - { - "id": 11389, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11390, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 11391, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 11392, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, { "id": 11393, "luminance": 0, @@ -118141,7 +118198,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -118150,7 +118207,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 75 ] }, { @@ -118248,73 +118305,20 @@ "collision_shapes": [ 78 ] - } - ] - }, - { - "id": 574, - "name": "spruce_fence", - "translation_key": "block.minecraft.spruce_fence", - "item_id": 288, - "properties": [ - { - "name": "east", - "values": [ - "true", - "false" - ] }, - { - "name": "north", - "values": [ - "true", - "false" - ] - }, - { - "name": "south", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - }, - { - "name": "west", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 11452, - "states": [ { "id": 11421, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 75, - 76, - 77 - ] + "collision_shapes": [] }, { "id": 11422, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78, - 79 - ] + "collision_shapes": [] }, { "id": 11423, @@ -118322,9 +118326,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 75, - 76, - 77 + 78 ] }, { @@ -118332,641 +118334,16 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78, - 79 - ] - }, - { - "id": 11425, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76 - ] - }, - { - "id": 11426, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 80, - 79 - ] - }, - { - "id": 11427, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76 - ] - }, - { - "id": 11428, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 80, - 79 - ] - }, - { - "id": 11429, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 77 - ] - }, - { - "id": 11430, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 81, - 79 - ] - }, - { - "id": 11431, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 77 - ] - }, - { - "id": 11432, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 81, - 79 - ] - }, - { - "id": 11433, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 11434, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 82 - ] - }, - { - "id": 11435, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 11436, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 82 - ] - }, - { - "id": 11437, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 76, - 77 - ] - }, - { - "id": 11438, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 78 ] - }, - { - "id": 11439, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 76, - 77 - ] - }, - { - "id": 11440, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78 - ] - }, - { - "id": 11441, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 76 - ] - }, - { - "id": 11442, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 80 - ] - }, - { - "id": 11443, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 76 - ] - }, - { - "id": 11444, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 80 - ] - }, - { - "id": 11445, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 77 - ] - }, - { - "id": 11446, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 81 - ] - }, - { - "id": 11447, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 77 - ] - }, - { - "id": 11448, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 81 - ] - }, - { - "id": 11449, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83 - ] - }, - { - "id": 11450, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 84 - ] - }, - { - "id": 11451, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83 - ] - }, - { - "id": 11452, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 84 - ] } ] }, { "id": 575, - "name": "birch_fence", - "translation_key": "block.minecraft.birch_fence", - "item_id": 289, - "properties": [ - { - "name": "east", - "values": [ - "true", - "false" - ] - }, - { - "name": "north", - "values": [ - "true", - "false" - ] - }, - { - "name": "south", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - }, - { - "name": "west", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 11484, - "states": [ - { - "id": 11453, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76, - 77 - ] - }, - { - "id": 11454, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78, - 79 - ] - }, - { - "id": 11455, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76, - 77 - ] - }, - { - "id": 11456, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78, - 79 - ] - }, - { - "id": 11457, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76 - ] - }, - { - "id": 11458, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 80, - 79 - ] - }, - { - "id": 11459, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76 - ] - }, - { - "id": 11460, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 80, - 79 - ] - }, - { - "id": 11461, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 77 - ] - }, - { - "id": 11462, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 81, - 79 - ] - }, - { - "id": 11463, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 77 - ] - }, - { - "id": 11464, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 81, - 79 - ] - }, - { - "id": 11465, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 11466, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 82 - ] - }, - { - "id": 11467, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 11468, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 82 - ] - }, - { - "id": 11469, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 76, - 77 - ] - }, - { - "id": 11470, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78 - ] - }, - { - "id": 11471, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 76, - 77 - ] - }, - { - "id": 11472, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78 - ] - }, - { - "id": 11473, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 76 - ] - }, - { - "id": 11474, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 80 - ] - }, - { - "id": 11475, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 76 - ] - }, - { - "id": 11476, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 80 - ] - }, - { - "id": 11477, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 77 - ] - }, - { - "id": 11478, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 81 - ] - }, - { - "id": 11479, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 77 - ] - }, - { - "id": 11480, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 81 - ] - }, - { - "id": 11481, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83 - ] - }, - { - "id": 11482, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 84 - ] - }, - { - "id": 11483, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83 - ] - }, - { - "id": 11484, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 84 - ] - } - ] - }, - { - "id": 576, - "name": "jungle_fence", - "translation_key": "block.minecraft.jungle_fence", + "name": "spruce_fence", + "translation_key": "block.minecraft.spruce_fence", "item_id": 290, "properties": [ { @@ -119005,10 +118382,10 @@ ] } ], - "default_state_id": 11516, + "default_state_id": 11456, "states": [ { - "id": 11485, + "id": 11425, "luminance": 0, "opaque": true, "replaceable": false, @@ -119019,7 +118396,7 @@ ] }, { - "id": 11486, + "id": 11426, "luminance": 0, "opaque": true, "replaceable": false, @@ -119029,7 +118406,7 @@ ] }, { - "id": 11487, + "id": 11427, "luminance": 0, "opaque": true, "replaceable": false, @@ -119040,7 +118417,7 @@ ] }, { - "id": 11488, + "id": 11428, "luminance": 0, "opaque": true, "replaceable": false, @@ -119050,7 +118427,7 @@ ] }, { - "id": 11489, + "id": 11429, "luminance": 0, "opaque": true, "replaceable": false, @@ -119060,7 +118437,7 @@ ] }, { - "id": 11490, + "id": 11430, "luminance": 0, "opaque": true, "replaceable": false, @@ -119070,7 +118447,7 @@ ] }, { - "id": 11491, + "id": 11431, "luminance": 0, "opaque": true, "replaceable": false, @@ -119080,7 +118457,7 @@ ] }, { - "id": 11492, + "id": 11432, "luminance": 0, "opaque": true, "replaceable": false, @@ -119090,7 +118467,7 @@ ] }, { - "id": 11493, + "id": 11433, "luminance": 0, "opaque": true, "replaceable": false, @@ -119100,7 +118477,7 @@ ] }, { - "id": 11494, + "id": 11434, "luminance": 0, "opaque": true, "replaceable": false, @@ -119110,7 +118487,7 @@ ] }, { - "id": 11495, + "id": 11435, "luminance": 0, "opaque": true, "replaceable": false, @@ -119120,7 +118497,7 @@ ] }, { - "id": 11496, + "id": 11436, "luminance": 0, "opaque": true, "replaceable": false, @@ -119130,7 +118507,7 @@ ] }, { - "id": 11497, + "id": 11437, "luminance": 0, "opaque": true, "replaceable": false, @@ -119139,7 +118516,7 @@ ] }, { - "id": 11498, + "id": 11438, "luminance": 0, "opaque": true, "replaceable": false, @@ -119148,7 +118525,7 @@ ] }, { - "id": 11499, + "id": 11439, "luminance": 0, "opaque": true, "replaceable": false, @@ -119157,7 +118534,7 @@ ] }, { - "id": 11500, + "id": 11440, "luminance": 0, "opaque": true, "replaceable": false, @@ -119166,7 +118543,7 @@ ] }, { - "id": 11501, + "id": 11441, "luminance": 0, "opaque": true, "replaceable": false, @@ -119177,7 +118554,7 @@ ] }, { - "id": 11502, + "id": 11442, "luminance": 0, "opaque": true, "replaceable": false, @@ -119186,7 +118563,7 @@ ] }, { - "id": 11503, + "id": 11443, "luminance": 0, "opaque": true, "replaceable": false, @@ -119197,7 +118574,7 @@ ] }, { - "id": 11504, + "id": 11444, "luminance": 0, "opaque": true, "replaceable": false, @@ -119206,7 +118583,7 @@ ] }, { - "id": 11505, + "id": 11445, "luminance": 0, "opaque": true, "replaceable": false, @@ -119216,7 +118593,7 @@ ] }, { - "id": 11506, + "id": 11446, "luminance": 0, "opaque": true, "replaceable": false, @@ -119225,7 +118602,7 @@ ] }, { - "id": 11507, + "id": 11447, "luminance": 0, "opaque": true, "replaceable": false, @@ -119235,7 +118612,7 @@ ] }, { - "id": 11508, + "id": 11448, "luminance": 0, "opaque": true, "replaceable": false, @@ -119244,7 +118621,7 @@ ] }, { - "id": 11509, + "id": 11449, "luminance": 0, "opaque": true, "replaceable": false, @@ -119254,7 +118631,7 @@ ] }, { - "id": 11510, + "id": 11450, "luminance": 0, "opaque": true, "replaceable": false, @@ -119263,7 +118640,7 @@ ] }, { - "id": 11511, + "id": 11451, "luminance": 0, "opaque": true, "replaceable": false, @@ -119273,7 +118650,7 @@ ] }, { - "id": 11512, + "id": 11452, "luminance": 0, "opaque": true, "replaceable": false, @@ -119282,7 +118659,7 @@ ] }, { - "id": 11513, + "id": 11453, "luminance": 0, "opaque": true, "replaceable": false, @@ -119291,7 +118668,7 @@ ] }, { - "id": 11514, + "id": 11454, "luminance": 0, "opaque": true, "replaceable": false, @@ -119300,7 +118677,7 @@ ] }, { - "id": 11515, + "id": 11455, "luminance": 0, "opaque": true, "replaceable": false, @@ -119309,7 +118686,7 @@ ] }, { - "id": 11516, + "id": 11456, "luminance": 0, "opaque": true, "replaceable": false, @@ -119320,9 +118697,9 @@ ] }, { - "id": 577, - "name": "acacia_fence", - "translation_key": "block.minecraft.acacia_fence", + "id": 576, + "name": "birch_fence", + "translation_key": "block.minecraft.birch_fence", "item_id": 291, "properties": [ { @@ -119361,10 +118738,10 @@ ] } ], - "default_state_id": 11548, + "default_state_id": 11488, "states": [ { - "id": 11517, + "id": 11457, "luminance": 0, "opaque": true, "replaceable": false, @@ -119375,7 +118752,7 @@ ] }, { - "id": 11518, + "id": 11458, "luminance": 0, "opaque": true, "replaceable": false, @@ -119385,7 +118762,7 @@ ] }, { - "id": 11519, + "id": 11459, "luminance": 0, "opaque": true, "replaceable": false, @@ -119396,7 +118773,7 @@ ] }, { - "id": 11520, + "id": 11460, "luminance": 0, "opaque": true, "replaceable": false, @@ -119406,7 +118783,7 @@ ] }, { - "id": 11521, + "id": 11461, "luminance": 0, "opaque": true, "replaceable": false, @@ -119416,7 +118793,7 @@ ] }, { - "id": 11522, + "id": 11462, "luminance": 0, "opaque": true, "replaceable": false, @@ -119426,7 +118803,7 @@ ] }, { - "id": 11523, + "id": 11463, "luminance": 0, "opaque": true, "replaceable": false, @@ -119436,7 +118813,7 @@ ] }, { - "id": 11524, + "id": 11464, "luminance": 0, "opaque": true, "replaceable": false, @@ -119446,7 +118823,7 @@ ] }, { - "id": 11525, + "id": 11465, "luminance": 0, "opaque": true, "replaceable": false, @@ -119456,7 +118833,7 @@ ] }, { - "id": 11526, + "id": 11466, "luminance": 0, "opaque": true, "replaceable": false, @@ -119466,7 +118843,7 @@ ] }, { - "id": 11527, + "id": 11467, "luminance": 0, "opaque": true, "replaceable": false, @@ -119476,7 +118853,7 @@ ] }, { - "id": 11528, + "id": 11468, "luminance": 0, "opaque": true, "replaceable": false, @@ -119486,7 +118863,7 @@ ] }, { - "id": 11529, + "id": 11469, "luminance": 0, "opaque": true, "replaceable": false, @@ -119495,7 +118872,7 @@ ] }, { - "id": 11530, + "id": 11470, "luminance": 0, "opaque": true, "replaceable": false, @@ -119504,7 +118881,7 @@ ] }, { - "id": 11531, + "id": 11471, "luminance": 0, "opaque": true, "replaceable": false, @@ -119513,7 +118890,7 @@ ] }, { - "id": 11532, + "id": 11472, "luminance": 0, "opaque": true, "replaceable": false, @@ -119522,7 +118899,7 @@ ] }, { - "id": 11533, + "id": 11473, "luminance": 0, "opaque": true, "replaceable": false, @@ -119533,7 +118910,7 @@ ] }, { - "id": 11534, + "id": 11474, "luminance": 0, "opaque": true, "replaceable": false, @@ -119542,7 +118919,7 @@ ] }, { - "id": 11535, + "id": 11475, "luminance": 0, "opaque": true, "replaceable": false, @@ -119553,7 +118930,7 @@ ] }, { - "id": 11536, + "id": 11476, "luminance": 0, "opaque": true, "replaceable": false, @@ -119562,7 +118939,7 @@ ] }, { - "id": 11537, + "id": 11477, "luminance": 0, "opaque": true, "replaceable": false, @@ -119572,7 +118949,7 @@ ] }, { - "id": 11538, + "id": 11478, "luminance": 0, "opaque": true, "replaceable": false, @@ -119581,7 +118958,7 @@ ] }, { - "id": 11539, + "id": 11479, "luminance": 0, "opaque": true, "replaceable": false, @@ -119591,7 +118968,7 @@ ] }, { - "id": 11540, + "id": 11480, "luminance": 0, "opaque": true, "replaceable": false, @@ -119600,7 +118977,7 @@ ] }, { - "id": 11541, + "id": 11481, "luminance": 0, "opaque": true, "replaceable": false, @@ -119610,7 +118987,7 @@ ] }, { - "id": 11542, + "id": 11482, "luminance": 0, "opaque": true, "replaceable": false, @@ -119619,7 +118996,7 @@ ] }, { - "id": 11543, + "id": 11483, "luminance": 0, "opaque": true, "replaceable": false, @@ -119629,7 +119006,7 @@ ] }, { - "id": 11544, + "id": 11484, "luminance": 0, "opaque": true, "replaceable": false, @@ -119638,7 +119015,7 @@ ] }, { - "id": 11545, + "id": 11485, "luminance": 0, "opaque": true, "replaceable": false, @@ -119647,7 +119024,7 @@ ] }, { - "id": 11546, + "id": 11486, "luminance": 0, "opaque": true, "replaceable": false, @@ -119656,7 +119033,7 @@ ] }, { - "id": 11547, + "id": 11487, "luminance": 0, "opaque": true, "replaceable": false, @@ -119665,7 +119042,7 @@ ] }, { - "id": 11548, + "id": 11488, "luminance": 0, "opaque": true, "replaceable": false, @@ -119676,9 +119053,9 @@ ] }, { - "id": 578, - "name": "cherry_fence", - "translation_key": "block.minecraft.cherry_fence", + "id": 577, + "name": "jungle_fence", + "translation_key": "block.minecraft.jungle_fence", "item_id": 292, "properties": [ { @@ -119717,10 +119094,10 @@ ] } ], - "default_state_id": 11580, + "default_state_id": 11520, "states": [ { - "id": 11549, + "id": 11489, "luminance": 0, "opaque": true, "replaceable": false, @@ -119731,7 +119108,7 @@ ] }, { - "id": 11550, + "id": 11490, "luminance": 0, "opaque": true, "replaceable": false, @@ -119741,7 +119118,7 @@ ] }, { - "id": 11551, + "id": 11491, "luminance": 0, "opaque": true, "replaceable": false, @@ -119752,7 +119129,7 @@ ] }, { - "id": 11552, + "id": 11492, "luminance": 0, "opaque": true, "replaceable": false, @@ -119762,7 +119139,7 @@ ] }, { - "id": 11553, + "id": 11493, "luminance": 0, "opaque": true, "replaceable": false, @@ -119772,7 +119149,7 @@ ] }, { - "id": 11554, + "id": 11494, "luminance": 0, "opaque": true, "replaceable": false, @@ -119782,7 +119159,7 @@ ] }, { - "id": 11555, + "id": 11495, "luminance": 0, "opaque": true, "replaceable": false, @@ -119792,7 +119169,7 @@ ] }, { - "id": 11556, + "id": 11496, "luminance": 0, "opaque": true, "replaceable": false, @@ -119802,7 +119179,7 @@ ] }, { - "id": 11557, + "id": 11497, "luminance": 0, "opaque": true, "replaceable": false, @@ -119812,7 +119189,7 @@ ] }, { - "id": 11558, + "id": 11498, "luminance": 0, "opaque": true, "replaceable": false, @@ -119822,7 +119199,7 @@ ] }, { - "id": 11559, + "id": 11499, "luminance": 0, "opaque": true, "replaceable": false, @@ -119832,7 +119209,7 @@ ] }, { - "id": 11560, + "id": 11500, "luminance": 0, "opaque": true, "replaceable": false, @@ -119842,7 +119219,7 @@ ] }, { - "id": 11561, + "id": 11501, "luminance": 0, "opaque": true, "replaceable": false, @@ -119851,7 +119228,7 @@ ] }, { - "id": 11562, + "id": 11502, "luminance": 0, "opaque": true, "replaceable": false, @@ -119860,7 +119237,7 @@ ] }, { - "id": 11563, + "id": 11503, "luminance": 0, "opaque": true, "replaceable": false, @@ -119869,7 +119246,7 @@ ] }, { - "id": 11564, + "id": 11504, "luminance": 0, "opaque": true, "replaceable": false, @@ -119878,7 +119255,7 @@ ] }, { - "id": 11565, + "id": 11505, "luminance": 0, "opaque": true, "replaceable": false, @@ -119889,7 +119266,7 @@ ] }, { - "id": 11566, + "id": 11506, "luminance": 0, "opaque": true, "replaceable": false, @@ -119898,7 +119275,7 @@ ] }, { - "id": 11567, + "id": 11507, "luminance": 0, "opaque": true, "replaceable": false, @@ -119909,7 +119286,7 @@ ] }, { - "id": 11568, + "id": 11508, "luminance": 0, "opaque": true, "replaceable": false, @@ -119918,7 +119295,7 @@ ] }, { - "id": 11569, + "id": 11509, "luminance": 0, "opaque": true, "replaceable": false, @@ -119928,7 +119305,7 @@ ] }, { - "id": 11570, + "id": 11510, "luminance": 0, "opaque": true, "replaceable": false, @@ -119937,7 +119314,7 @@ ] }, { - "id": 11571, + "id": 11511, "luminance": 0, "opaque": true, "replaceable": false, @@ -119947,7 +119324,7 @@ ] }, { - "id": 11572, + "id": 11512, "luminance": 0, "opaque": true, "replaceable": false, @@ -119956,7 +119333,7 @@ ] }, { - "id": 11573, + "id": 11513, "luminance": 0, "opaque": true, "replaceable": false, @@ -119966,7 +119343,7 @@ ] }, { - "id": 11574, + "id": 11514, "luminance": 0, "opaque": true, "replaceable": false, @@ -119975,7 +119352,7 @@ ] }, { - "id": 11575, + "id": 11515, "luminance": 0, "opaque": true, "replaceable": false, @@ -119985,7 +119362,7 @@ ] }, { - "id": 11576, + "id": 11516, "luminance": 0, "opaque": true, "replaceable": false, @@ -119994,7 +119371,7 @@ ] }, { - "id": 11577, + "id": 11517, "luminance": 0, "opaque": true, "replaceable": false, @@ -120003,7 +119380,7 @@ ] }, { - "id": 11578, + "id": 11518, "luminance": 0, "opaque": true, "replaceable": false, @@ -120012,7 +119389,7 @@ ] }, { - "id": 11579, + "id": 11519, "luminance": 0, "opaque": true, "replaceable": false, @@ -120021,7 +119398,7 @@ ] }, { - "id": 11580, + "id": 11520, "luminance": 0, "opaque": true, "replaceable": false, @@ -120032,9 +119409,9 @@ ] }, { - "id": 579, - "name": "dark_oak_fence", - "translation_key": "block.minecraft.dark_oak_fence", + "id": 578, + "name": "acacia_fence", + "translation_key": "block.minecraft.acacia_fence", "item_id": 293, "properties": [ { @@ -120073,10 +119450,10 @@ ] } ], - "default_state_id": 11612, + "default_state_id": 11552, "states": [ { - "id": 11581, + "id": 11521, "luminance": 0, "opaque": true, "replaceable": false, @@ -120087,7 +119464,7 @@ ] }, { - "id": 11582, + "id": 11522, "luminance": 0, "opaque": true, "replaceable": false, @@ -120097,7 +119474,7 @@ ] }, { - "id": 11583, + "id": 11523, "luminance": 0, "opaque": true, "replaceable": false, @@ -120108,7 +119485,7 @@ ] }, { - "id": 11584, + "id": 11524, "luminance": 0, "opaque": true, "replaceable": false, @@ -120118,7 +119495,7 @@ ] }, { - "id": 11585, + "id": 11525, "luminance": 0, "opaque": true, "replaceable": false, @@ -120128,7 +119505,7 @@ ] }, { - "id": 11586, + "id": 11526, "luminance": 0, "opaque": true, "replaceable": false, @@ -120138,7 +119515,7 @@ ] }, { - "id": 11587, + "id": 11527, "luminance": 0, "opaque": true, "replaceable": false, @@ -120148,7 +119525,7 @@ ] }, { - "id": 11588, + "id": 11528, "luminance": 0, "opaque": true, "replaceable": false, @@ -120158,7 +119535,7 @@ ] }, { - "id": 11589, + "id": 11529, "luminance": 0, "opaque": true, "replaceable": false, @@ -120168,7 +119545,7 @@ ] }, { - "id": 11590, + "id": 11530, "luminance": 0, "opaque": true, "replaceable": false, @@ -120178,7 +119555,7 @@ ] }, { - "id": 11591, + "id": 11531, "luminance": 0, "opaque": true, "replaceable": false, @@ -120188,7 +119565,7 @@ ] }, { - "id": 11592, + "id": 11532, "luminance": 0, "opaque": true, "replaceable": false, @@ -120198,7 +119575,7 @@ ] }, { - "id": 11593, + "id": 11533, "luminance": 0, "opaque": true, "replaceable": false, @@ -120207,7 +119584,7 @@ ] }, { - "id": 11594, + "id": 11534, "luminance": 0, "opaque": true, "replaceable": false, @@ -120216,7 +119593,7 @@ ] }, { - "id": 11595, + "id": 11535, "luminance": 0, "opaque": true, "replaceable": false, @@ -120225,7 +119602,7 @@ ] }, { - "id": 11596, + "id": 11536, "luminance": 0, "opaque": true, "replaceable": false, @@ -120234,7 +119611,7 @@ ] }, { - "id": 11597, + "id": 11537, "luminance": 0, "opaque": true, "replaceable": false, @@ -120245,7 +119622,7 @@ ] }, { - "id": 11598, + "id": 11538, "luminance": 0, "opaque": true, "replaceable": false, @@ -120254,7 +119631,7 @@ ] }, { - "id": 11599, + "id": 11539, "luminance": 0, "opaque": true, "replaceable": false, @@ -120265,7 +119642,7 @@ ] }, { - "id": 11600, + "id": 11540, "luminance": 0, "opaque": true, "replaceable": false, @@ -120274,7 +119651,7 @@ ] }, { - "id": 11601, + "id": 11541, "luminance": 0, "opaque": true, "replaceable": false, @@ -120284,7 +119661,7 @@ ] }, { - "id": 11602, + "id": 11542, "luminance": 0, "opaque": true, "replaceable": false, @@ -120293,7 +119670,7 @@ ] }, { - "id": 11603, + "id": 11543, "luminance": 0, "opaque": true, "replaceable": false, @@ -120303,7 +119680,7 @@ ] }, { - "id": 11604, + "id": 11544, "luminance": 0, "opaque": true, "replaceable": false, @@ -120312,7 +119689,7 @@ ] }, { - "id": 11605, + "id": 11545, "luminance": 0, "opaque": true, "replaceable": false, @@ -120322,7 +119699,7 @@ ] }, { - "id": 11606, + "id": 11546, "luminance": 0, "opaque": true, "replaceable": false, @@ -120331,7 +119708,7 @@ ] }, { - "id": 11607, + "id": 11547, "luminance": 0, "opaque": true, "replaceable": false, @@ -120341,7 +119718,7 @@ ] }, { - "id": 11608, + "id": 11548, "luminance": 0, "opaque": true, "replaceable": false, @@ -120350,7 +119727,7 @@ ] }, { - "id": 11609, + "id": 11549, "luminance": 0, "opaque": true, "replaceable": false, @@ -120359,7 +119736,7 @@ ] }, { - "id": 11610, + "id": 11550, "luminance": 0, "opaque": true, "replaceable": false, @@ -120368,7 +119745,7 @@ ] }, { - "id": 11611, + "id": 11551, "luminance": 0, "opaque": true, "replaceable": false, @@ -120377,7 +119754,7 @@ ] }, { - "id": 11612, + "id": 11552, "luminance": 0, "opaque": true, "replaceable": false, @@ -120388,9 +119765,9 @@ ] }, { - "id": 580, - "name": "mangrove_fence", - "translation_key": "block.minecraft.mangrove_fence", + "id": 579, + "name": "cherry_fence", + "translation_key": "block.minecraft.cherry_fence", "item_id": 294, "properties": [ { @@ -120429,10 +119806,10 @@ ] } ], - "default_state_id": 11644, + "default_state_id": 11584, "states": [ { - "id": 11613, + "id": 11553, "luminance": 0, "opaque": true, "replaceable": false, @@ -120443,7 +119820,7 @@ ] }, { - "id": 11614, + "id": 11554, "luminance": 0, "opaque": true, "replaceable": false, @@ -120453,7 +119830,7 @@ ] }, { - "id": 11615, + "id": 11555, "luminance": 0, "opaque": true, "replaceable": false, @@ -120464,7 +119841,7 @@ ] }, { - "id": 11616, + "id": 11556, "luminance": 0, "opaque": true, "replaceable": false, @@ -120474,7 +119851,7 @@ ] }, { - "id": 11617, + "id": 11557, "luminance": 0, "opaque": true, "replaceable": false, @@ -120484,7 +119861,7 @@ ] }, { - "id": 11618, + "id": 11558, "luminance": 0, "opaque": true, "replaceable": false, @@ -120494,7 +119871,7 @@ ] }, { - "id": 11619, + "id": 11559, "luminance": 0, "opaque": true, "replaceable": false, @@ -120504,7 +119881,7 @@ ] }, { - "id": 11620, + "id": 11560, "luminance": 0, "opaque": true, "replaceable": false, @@ -120514,7 +119891,7 @@ ] }, { - "id": 11621, + "id": 11561, "luminance": 0, "opaque": true, "replaceable": false, @@ -120524,7 +119901,7 @@ ] }, { - "id": 11622, + "id": 11562, "luminance": 0, "opaque": true, "replaceable": false, @@ -120534,7 +119911,7 @@ ] }, { - "id": 11623, + "id": 11563, "luminance": 0, "opaque": true, "replaceable": false, @@ -120544,7 +119921,7 @@ ] }, { - "id": 11624, + "id": 11564, "luminance": 0, "opaque": true, "replaceable": false, @@ -120554,7 +119931,7 @@ ] }, { - "id": 11625, + "id": 11565, "luminance": 0, "opaque": true, "replaceable": false, @@ -120563,7 +119940,7 @@ ] }, { - "id": 11626, + "id": 11566, "luminance": 0, "opaque": true, "replaceable": false, @@ -120572,7 +119949,7 @@ ] }, { - "id": 11627, + "id": 11567, "luminance": 0, "opaque": true, "replaceable": false, @@ -120581,7 +119958,7 @@ ] }, { - "id": 11628, + "id": 11568, "luminance": 0, "opaque": true, "replaceable": false, @@ -120590,7 +119967,7 @@ ] }, { - "id": 11629, + "id": 11569, "luminance": 0, "opaque": true, "replaceable": false, @@ -120601,7 +119978,7 @@ ] }, { - "id": 11630, + "id": 11570, "luminance": 0, "opaque": true, "replaceable": false, @@ -120610,7 +119987,7 @@ ] }, { - "id": 11631, + "id": 11571, "luminance": 0, "opaque": true, "replaceable": false, @@ -120621,7 +119998,7 @@ ] }, { - "id": 11632, + "id": 11572, "luminance": 0, "opaque": true, "replaceable": false, @@ -120630,7 +120007,7 @@ ] }, { - "id": 11633, + "id": 11573, "luminance": 0, "opaque": true, "replaceable": false, @@ -120640,7 +120017,7 @@ ] }, { - "id": 11634, + "id": 11574, "luminance": 0, "opaque": true, "replaceable": false, @@ -120649,7 +120026,7 @@ ] }, { - "id": 11635, + "id": 11575, "luminance": 0, "opaque": true, "replaceable": false, @@ -120659,7 +120036,7 @@ ] }, { - "id": 11636, + "id": 11576, "luminance": 0, "opaque": true, "replaceable": false, @@ -120668,7 +120045,7 @@ ] }, { - "id": 11637, + "id": 11577, "luminance": 0, "opaque": true, "replaceable": false, @@ -120678,7 +120055,7 @@ ] }, { - "id": 11638, + "id": 11578, "luminance": 0, "opaque": true, "replaceable": false, @@ -120687,7 +120064,7 @@ ] }, { - "id": 11639, + "id": 11579, "luminance": 0, "opaque": true, "replaceable": false, @@ -120697,7 +120074,7 @@ ] }, { - "id": 11640, + "id": 11580, "luminance": 0, "opaque": true, "replaceable": false, @@ -120706,7 +120083,7 @@ ] }, { - "id": 11641, + "id": 11581, "luminance": 0, "opaque": true, "replaceable": false, @@ -120715,7 +120092,7 @@ ] }, { - "id": 11642, + "id": 11582, "luminance": 0, "opaque": true, "replaceable": false, @@ -120724,7 +120101,7 @@ ] }, { - "id": 11643, + "id": 11583, "luminance": 0, "opaque": true, "replaceable": false, @@ -120733,7 +120110,7 @@ ] }, { - "id": 11644, + "id": 11584, "luminance": 0, "opaque": true, "replaceable": false, @@ -120744,9 +120121,9 @@ ] }, { - "id": 581, - "name": "bamboo_fence", - "translation_key": "block.minecraft.bamboo_fence", + "id": 580, + "name": "dark_oak_fence", + "translation_key": "block.minecraft.dark_oak_fence", "item_id": 295, "properties": [ { @@ -120785,10 +120162,10 @@ ] } ], - "default_state_id": 11676, + "default_state_id": 11616, "states": [ { - "id": 11645, + "id": 11585, "luminance": 0, "opaque": true, "replaceable": false, @@ -120799,7 +120176,7 @@ ] }, { - "id": 11646, + "id": 11586, "luminance": 0, "opaque": true, "replaceable": false, @@ -120809,7 +120186,7 @@ ] }, { - "id": 11647, + "id": 11587, "luminance": 0, "opaque": true, "replaceable": false, @@ -120820,7 +120197,7 @@ ] }, { - "id": 11648, + "id": 11588, "luminance": 0, "opaque": true, "replaceable": false, @@ -120830,7 +120207,7 @@ ] }, { - "id": 11649, + "id": 11589, "luminance": 0, "opaque": true, "replaceable": false, @@ -120840,7 +120217,7 @@ ] }, { - "id": 11650, + "id": 11590, "luminance": 0, "opaque": true, "replaceable": false, @@ -120850,7 +120227,7 @@ ] }, { - "id": 11651, + "id": 11591, "luminance": 0, "opaque": true, "replaceable": false, @@ -120860,7 +120237,7 @@ ] }, { - "id": 11652, + "id": 11592, "luminance": 0, "opaque": true, "replaceable": false, @@ -120870,7 +120247,7 @@ ] }, { - "id": 11653, + "id": 11593, "luminance": 0, "opaque": true, "replaceable": false, @@ -120880,7 +120257,7 @@ ] }, { - "id": 11654, + "id": 11594, "luminance": 0, "opaque": true, "replaceable": false, @@ -120890,7 +120267,7 @@ ] }, { - "id": 11655, + "id": 11595, "luminance": 0, "opaque": true, "replaceable": false, @@ -120900,7 +120277,7 @@ ] }, { - "id": 11656, + "id": 11596, "luminance": 0, "opaque": true, "replaceable": false, @@ -120910,7 +120287,7 @@ ] }, { - "id": 11657, + "id": 11597, "luminance": 0, "opaque": true, "replaceable": false, @@ -120919,7 +120296,7 @@ ] }, { - "id": 11658, + "id": 11598, "luminance": 0, "opaque": true, "replaceable": false, @@ -120928,7 +120305,7 @@ ] }, { - "id": 11659, + "id": 11599, "luminance": 0, "opaque": true, "replaceable": false, @@ -120937,7 +120314,7 @@ ] }, { - "id": 11660, + "id": 11600, "luminance": 0, "opaque": true, "replaceable": false, @@ -120946,7 +120323,7 @@ ] }, { - "id": 11661, + "id": 11601, "luminance": 0, "opaque": true, "replaceable": false, @@ -120957,7 +120334,7 @@ ] }, { - "id": 11662, + "id": 11602, "luminance": 0, "opaque": true, "replaceable": false, @@ -120966,7 +120343,7 @@ ] }, { - "id": 11663, + "id": 11603, "luminance": 0, "opaque": true, "replaceable": false, @@ -120977,7 +120354,7 @@ ] }, { - "id": 11664, + "id": 11604, "luminance": 0, "opaque": true, "replaceable": false, @@ -120986,7 +120363,7 @@ ] }, { - "id": 11665, + "id": 11605, "luminance": 0, "opaque": true, "replaceable": false, @@ -120996,7 +120373,7 @@ ] }, { - "id": 11666, + "id": 11606, "luminance": 0, "opaque": true, "replaceable": false, @@ -121005,7 +120382,7 @@ ] }, { - "id": 11667, + "id": 11607, "luminance": 0, "opaque": true, "replaceable": false, @@ -121015,7 +120392,7 @@ ] }, { - "id": 11668, + "id": 11608, "luminance": 0, "opaque": true, "replaceable": false, @@ -121024,7 +120401,7 @@ ] }, { - "id": 11669, + "id": 11609, "luminance": 0, "opaque": true, "replaceable": false, @@ -121034,7 +120411,7 @@ ] }, { - "id": 11670, + "id": 11610, "luminance": 0, "opaque": true, "replaceable": false, @@ -121043,7 +120420,7 @@ ] }, { - "id": 11671, + "id": 11611, "luminance": 0, "opaque": true, "replaceable": false, @@ -121053,7 +120430,7 @@ ] }, { - "id": 11672, + "id": 11612, "luminance": 0, "opaque": true, "replaceable": false, @@ -121062,7 +120439,7 @@ ] }, { - "id": 11673, + "id": 11613, "luminance": 0, "opaque": true, "replaceable": false, @@ -121071,7 +120448,7 @@ ] }, { - "id": 11674, + "id": 11614, "luminance": 0, "opaque": true, "replaceable": false, @@ -121080,7 +120457,7 @@ ] }, { - "id": 11675, + "id": 11615, "luminance": 0, "opaque": true, "replaceable": false, @@ -121089,7 +120466,363 @@ ] }, { - "id": 11676, + "id": 11616, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 84 + ] + } + ] + }, + { + "id": 581, + "name": "mangrove_fence", + "translation_key": "block.minecraft.mangrove_fence", + "item_id": 296, + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11648, + "states": [ + { + "id": 11617, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75, + 76, + 77 + ] + }, + { + "id": 11618, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78, + 79 + ] + }, + { + "id": 11619, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75, + 76, + 77 + ] + }, + { + "id": 11620, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78, + 79 + ] + }, + { + "id": 11621, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75, + 76 + ] + }, + { + "id": 11622, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 80, + 79 + ] + }, + { + "id": 11623, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75, + 76 + ] + }, + { + "id": 11624, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 80, + 79 + ] + }, + { + "id": 11625, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75, + 77 + ] + }, + { + "id": 11626, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 81, + 79 + ] + }, + { + "id": 11627, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75, + 77 + ] + }, + { + "id": 11628, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 81, + 79 + ] + }, + { + "id": 11629, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75 + ] + }, + { + "id": 11630, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 82 + ] + }, + { + "id": 11631, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75 + ] + }, + { + "id": 11632, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 82 + ] + }, + { + "id": 11633, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76, + 77 + ] + }, + { + "id": 11634, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 11635, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76, + 77 + ] + }, + { + "id": 11636, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 11637, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76 + ] + }, + { + "id": 11638, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 80 + ] + }, + { + "id": 11639, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76 + ] + }, + { + "id": 11640, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 80 + ] + }, + { + "id": 11641, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 77 + ] + }, + { + "id": 11642, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 81 + ] + }, + { + "id": 11643, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 77 + ] + }, + { + "id": 11644, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 81 + ] + }, + { + "id": 11645, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83 + ] + }, + { + "id": 11646, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 84 + ] + }, + { + "id": 11647, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83 + ] + }, + { + "id": 11648, "luminance": 0, "opaque": true, "replaceable": false, @@ -121101,9 +120834,365 @@ }, { "id": 582, + "name": "bamboo_fence", + "translation_key": "block.minecraft.bamboo_fence", + "item_id": 297, + "properties": [ + { + "name": "east", + "values": [ + "true", + "false" + ] + }, + { + "name": "north", + "values": [ + "true", + "false" + ] + }, + { + "name": "south", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 11680, + "states": [ + { + "id": 11649, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75, + 76, + 77 + ] + }, + { + "id": 11650, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78, + 79 + ] + }, + { + "id": 11651, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75, + 76, + 77 + ] + }, + { + "id": 11652, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78, + 79 + ] + }, + { + "id": 11653, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75, + 76 + ] + }, + { + "id": 11654, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 80, + 79 + ] + }, + { + "id": 11655, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75, + 76 + ] + }, + { + "id": 11656, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 80, + 79 + ] + }, + { + "id": 11657, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75, + 77 + ] + }, + { + "id": 11658, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 81, + 79 + ] + }, + { + "id": 11659, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75, + 77 + ] + }, + { + "id": 11660, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 81, + 79 + ] + }, + { + "id": 11661, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75 + ] + }, + { + "id": 11662, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 82 + ] + }, + { + "id": 11663, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75 + ] + }, + { + "id": 11664, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 82 + ] + }, + { + "id": 11665, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76, + 77 + ] + }, + { + "id": 11666, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 11667, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76, + 77 + ] + }, + { + "id": 11668, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 11669, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76 + ] + }, + { + "id": 11670, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 80 + ] + }, + { + "id": 11671, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76 + ] + }, + { + "id": 11672, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 80 + ] + }, + { + "id": 11673, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 77 + ] + }, + { + "id": 11674, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 81 + ] + }, + { + "id": 11675, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 77 + ] + }, + { + "id": 11676, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 81 + ] + }, + { + "id": 11677, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83 + ] + }, + { + "id": 11678, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 84 + ] + }, + { + "id": 11679, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83 + ] + }, + { + "id": 11680, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 84 + ] + } + ] + }, + { + "id": 583, "name": "spruce_door", "translation_key": "block.minecraft.spruce_door", - "item_id": 686, + "item_id": 690, "properties": [ { "name": "facing", @@ -121143,51 +121232,15 @@ ] } ], - "default_state_id": 11688, + "default_state_id": 11692, "states": [ - { - "id": 11677, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 11678, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 11679, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 11680, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, { "id": 11681, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -121196,7 +121249,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -121223,7 +121276,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -121232,7 +121285,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -121259,7 +121312,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -121268,7 +121321,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -121313,7 +121366,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -121322,7 +121375,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -121331,7 +121384,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -121340,7 +121393,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -121367,7 +121420,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -121376,7 +121429,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -121403,7 +121456,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -121412,7 +121465,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -121439,7 +121492,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -121448,7 +121501,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -121457,7 +121510,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -121466,7 +121519,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -121475,7 +121528,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -121484,7 +121537,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -121511,7 +121564,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -121520,7 +121573,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -121547,7 +121600,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -121556,7 +121609,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -121601,7 +121654,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -121610,7 +121663,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -121619,7 +121672,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -121628,7 +121681,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -121655,7 +121708,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -121664,7 +121717,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -121691,7 +121744,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -121700,7 +121753,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -121720,14 +121773,50 @@ "collision_shapes": [ 64 ] + }, + { + "id": 11741, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 11742, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 11743, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 11744, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] } ] }, { - "id": 583, + "id": 584, "name": "birch_door", "translation_key": "block.minecraft.birch_door", - "item_id": 687, + "item_id": 691, "properties": [ { "name": "facing", @@ -121767,51 +121856,15 @@ ] } ], - "default_state_id": 11752, + "default_state_id": 11756, "states": [ - { - "id": 11741, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 11742, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 11743, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 11744, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, { "id": 11745, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -121820,7 +121873,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -121847,7 +121900,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -121856,7 +121909,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -121883,7 +121936,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -121892,7 +121945,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -121937,7 +121990,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -121946,7 +121999,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -121955,7 +122008,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -121964,7 +122017,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -121991,7 +122044,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -122000,7 +122053,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -122027,7 +122080,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -122036,7 +122089,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -122063,7 +122116,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -122072,7 +122125,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -122081,7 +122134,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -122090,7 +122143,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -122099,7 +122152,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122108,7 +122161,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122135,7 +122188,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -122144,7 +122197,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -122171,7 +122224,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122180,7 +122233,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122225,7 +122278,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -122234,7 +122287,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -122243,7 +122296,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -122252,7 +122305,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -122279,7 +122332,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122288,7 +122341,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122315,7 +122368,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -122324,7 +122377,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -122344,14 +122397,50 @@ "collision_shapes": [ 64 ] + }, + { + "id": 11805, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 11806, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 11807, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 11808, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] } ] }, { - "id": 584, + "id": 585, "name": "jungle_door", "translation_key": "block.minecraft.jungle_door", - "item_id": 688, + "item_id": 692, "properties": [ { "name": "facing", @@ -122391,51 +122480,15 @@ ] } ], - "default_state_id": 11816, + "default_state_id": 11820, "states": [ - { - "id": 11805, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 11806, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 11807, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 11808, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, { "id": 11809, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -122444,7 +122497,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -122471,7 +122524,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -122480,7 +122533,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -122507,7 +122560,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -122516,7 +122569,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -122561,7 +122614,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122570,7 +122623,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122579,7 +122632,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -122588,7 +122641,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -122615,7 +122668,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -122624,7 +122677,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -122651,7 +122704,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -122660,7 +122713,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -122687,7 +122740,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -122696,7 +122749,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -122705,7 +122758,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -122714,7 +122767,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -122723,7 +122776,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122732,7 +122785,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122759,7 +122812,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -122768,7 +122821,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -122795,7 +122848,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122804,7 +122857,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122849,7 +122902,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -122858,7 +122911,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -122867,7 +122920,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -122876,7 +122929,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -122903,7 +122956,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122912,7 +122965,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -122939,7 +122992,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -122948,7 +123001,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -122968,14 +123021,50 @@ "collision_shapes": [ 64 ] + }, + { + "id": 11869, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 11870, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 11871, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 11872, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] } ] }, { - "id": 585, + "id": 586, "name": "acacia_door", "translation_key": "block.minecraft.acacia_door", - "item_id": 689, + "item_id": 693, "properties": [ { "name": "facing", @@ -123015,51 +123104,15 @@ ] } ], - "default_state_id": 11880, + "default_state_id": 11884, "states": [ - { - "id": 11869, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 11870, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 11871, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 11872, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, { "id": 11873, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -123068,7 +123121,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -123095,7 +123148,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123104,7 +123157,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123131,7 +123184,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -123140,7 +123193,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -123185,7 +123238,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -123194,7 +123247,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -123203,7 +123256,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123212,7 +123265,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123239,7 +123292,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -123248,7 +123301,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -123275,7 +123328,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123284,7 +123337,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123311,7 +123364,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -123320,7 +123373,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -123329,7 +123382,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -123338,7 +123391,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -123347,7 +123400,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -123356,7 +123409,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -123383,7 +123436,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -123392,7 +123445,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -123419,7 +123472,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -123428,7 +123481,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -123473,7 +123526,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123482,7 +123535,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123491,7 +123544,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -123500,7 +123553,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -123527,7 +123580,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -123536,7 +123589,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -123563,7 +123616,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -123572,7 +123625,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -123592,14 +123645,50 @@ "collision_shapes": [ 64 ] + }, + { + "id": 11933, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 11934, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 11935, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 11936, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] } ] }, { - "id": 586, + "id": 587, "name": "cherry_door", "translation_key": "block.minecraft.cherry_door", - "item_id": 690, + "item_id": 694, "properties": [ { "name": "facing", @@ -123639,51 +123728,15 @@ ] } ], - "default_state_id": 11944, + "default_state_id": 11948, "states": [ - { - "id": 11933, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 11934, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 11935, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 11936, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, { "id": 11937, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -123692,7 +123745,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -123719,7 +123772,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123728,7 +123781,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123755,7 +123808,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -123764,7 +123817,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -123809,7 +123862,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -123818,7 +123871,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -123827,7 +123880,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123836,7 +123889,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123863,7 +123916,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -123872,7 +123925,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -123899,7 +123952,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123908,7 +123961,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -123935,7 +123988,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -123944,7 +123997,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -123953,7 +124006,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -123962,7 +124015,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -123971,7 +124024,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -123980,7 +124033,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124007,7 +124060,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -124016,7 +124069,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -124043,7 +124096,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124052,7 +124105,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124097,7 +124150,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -124106,7 +124159,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -124115,7 +124168,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -124124,7 +124177,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -124151,7 +124204,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124160,7 +124213,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124187,7 +124240,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -124196,7 +124249,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -124216,14 +124269,50 @@ "collision_shapes": [ 64 ] + }, + { + "id": 11997, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 11998, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 11999, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 12000, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] } ] }, { - "id": 587, + "id": 588, "name": "dark_oak_door", "translation_key": "block.minecraft.dark_oak_door", - "item_id": 691, + "item_id": 695, "properties": [ { "name": "facing", @@ -124263,51 +124352,15 @@ ] } ], - "default_state_id": 12008, + "default_state_id": 12012, "states": [ - { - "id": 11997, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 11998, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 11999, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 12000, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, { "id": 12001, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -124316,7 +124369,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -124343,7 +124396,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -124352,7 +124405,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -124379,7 +124432,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -124388,7 +124441,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -124433,7 +124486,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124442,7 +124495,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124451,7 +124504,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -124460,7 +124513,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -124487,7 +124540,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -124496,7 +124549,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -124523,7 +124576,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -124532,7 +124585,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -124559,7 +124612,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -124568,7 +124621,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -124577,7 +124630,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -124586,7 +124639,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -124595,7 +124648,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124604,7 +124657,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124631,7 +124684,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -124640,7 +124693,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -124667,7 +124720,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124676,7 +124729,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124721,7 +124774,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -124730,7 +124783,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -124739,7 +124792,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -124748,7 +124801,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -124775,7 +124828,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124784,7 +124837,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -124811,7 +124864,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -124820,7 +124873,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -124840,14 +124893,50 @@ "collision_shapes": [ 64 ] + }, + { + "id": 12061, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 12062, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 12063, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 12064, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] } ] }, { - "id": 588, + "id": 589, "name": "mangrove_door", "translation_key": "block.minecraft.mangrove_door", - "item_id": 692, + "item_id": 696, "properties": [ { "name": "facing", @@ -124887,51 +124976,15 @@ ] } ], - "default_state_id": 12072, + "default_state_id": 12076, "states": [ - { - "id": 12061, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 12062, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 12063, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 12064, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, { "id": 12065, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -124940,7 +124993,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -124967,7 +125020,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -124976,7 +125029,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125003,7 +125056,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -125012,7 +125065,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -125057,7 +125110,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125066,7 +125119,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125075,7 +125128,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125084,7 +125137,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125111,7 +125164,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -125120,7 +125173,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -125147,7 +125200,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125156,7 +125209,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125183,7 +125236,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -125192,7 +125245,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -125201,7 +125254,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -125210,7 +125263,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -125219,7 +125272,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125228,7 +125281,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125255,7 +125308,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -125264,7 +125317,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -125291,7 +125344,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125300,7 +125353,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125345,7 +125398,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125354,7 +125407,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125363,7 +125416,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -125372,7 +125425,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -125399,7 +125452,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125408,7 +125461,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125435,7 +125488,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -125444,7 +125497,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -125464,14 +125517,50 @@ "collision_shapes": [ 64 ] + }, + { + "id": 12125, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 12126, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 12127, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 12128, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] } ] }, { - "id": 589, + "id": 590, "name": "bamboo_door", "translation_key": "block.minecraft.bamboo_door", - "item_id": 693, + "item_id": 697, "properties": [ { "name": "facing", @@ -125511,51 +125600,15 @@ ] } ], - "default_state_id": 12136, + "default_state_id": 12140, "states": [ - { - "id": 12125, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 12126, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 12127, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 12128, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, { "id": 12129, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -125564,7 +125617,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -125591,7 +125644,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125600,7 +125653,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125627,7 +125680,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -125636,7 +125689,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -125681,7 +125734,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125690,7 +125743,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125699,7 +125752,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125708,7 +125761,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125735,7 +125788,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -125744,7 +125797,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -125771,7 +125824,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125780,7 +125833,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125807,7 +125860,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -125816,7 +125869,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 64 ] }, { @@ -125825,7 +125878,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -125834,7 +125887,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -125843,7 +125896,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125852,7 +125905,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125879,7 +125932,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -125888,7 +125941,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -125915,7 +125968,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125924,7 +125977,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -125969,7 +126022,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125978,7 +126031,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -125987,7 +126040,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -125996,7 +126049,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -126023,7 +126076,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -126032,7 +126085,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -126059,7 +126112,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -126068,7 +126121,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -126088,14 +126141,50 @@ "collision_shapes": [ 64 ] + }, + { + "id": 12189, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 12190, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 12191, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 12192, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] } ] }, { - "id": 590, + "id": 591, "name": "end_rod", "translation_key": "block.minecraft.end_rod", - "item_id": 268, + "item_id": 270, "properties": [ { "name": "facing", @@ -126109,55 +126198,55 @@ ] } ], - "default_state_id": 12193, + "default_state_id": 12197, "states": [ - { - "id": 12189, - "luminance": 14, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 203 - ] - }, - { - "id": 12190, - "luminance": 14, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 204 - ] - }, - { - "id": 12191, - "luminance": 14, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 203 - ] - }, - { - "id": 12192, - "luminance": 14, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 204 - ] - }, { "id": 12193, "luminance": 14, "opaque": false, "replaceable": false, + "collision_shapes": [ + 203 + ] + }, + { + "id": 12194, + "luminance": 14, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 204 + ] + }, + { + "id": 12195, + "luminance": 14, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 203 + ] + }, + { + "id": 12196, + "luminance": 14, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 204 + ] + }, + { + "id": 12197, + "luminance": 14, + "opaque": false, + "replaceable": false, "collision_shapes": [ 32 ] }, { - "id": 12194, + "id": 12198, "luminance": 14, "opaque": false, "replaceable": false, @@ -126168,10 +126257,10 @@ ] }, { - "id": 591, + "id": 592, "name": "chorus_plant", "translation_key": "block.minecraft.chorus_plant", - "item_id": 269, + "item_id": 271, "properties": [ { "name": "down", @@ -126216,58 +126305,8 @@ ] } ], - "default_state_id": 12258, + "default_state_id": 12262, "states": [ - { - "id": 12195, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 205, - 206, - 207, - 208, - 209 - ] - }, - { - "id": 12196, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 205, - 207, - 208, - 209 - ] - }, - { - "id": 12197, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 210, - 206, - 207, - 208, - 209 - ] - }, - { - "id": 12198, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 210, - 207, - 208, - 209 - ] - }, { "id": 12199, "luminance": 0, @@ -126277,6 +126316,7 @@ 205, 206, 207, + 208, 209 ] }, @@ -126288,6 +126328,7 @@ "collision_shapes": [ 205, 207, + 208, 209 ] }, @@ -126300,6 +126341,7 @@ 210, 206, 207, + 208, 209 ] }, @@ -126311,6 +126353,7 @@ "collision_shapes": [ 210, 207, + 208, 209 ] }, @@ -126322,7 +126365,7 @@ "collision_shapes": [ 205, 206, - 208, + 207, 209 ] }, @@ -126333,7 +126376,7 @@ "replaceable": false, "collision_shapes": [ 205, - 208, + 207, 209 ] }, @@ -126345,7 +126388,7 @@ "collision_shapes": [ 210, 206, - 208, + 207, 209 ] }, @@ -126356,7 +126399,7 @@ "replaceable": false, "collision_shapes": [ 210, - 208, + 207, 209 ] }, @@ -126368,6 +126411,7 @@ "collision_shapes": [ 205, 206, + 208, 209 ] }, @@ -126378,6 +126422,7 @@ "replaceable": false, "collision_shapes": [ 205, + 208, 209 ] }, @@ -126389,6 +126434,7 @@ "collision_shapes": [ 210, 206, + 208, 209 ] }, @@ -126399,6 +126445,7 @@ "replaceable": false, "collision_shapes": [ 210, + 208, 209 ] }, @@ -126410,8 +126457,7 @@ "collision_shapes": [ 205, 206, - 207, - 208 + 209 ] }, { @@ -126421,8 +126467,7 @@ "replaceable": false, "collision_shapes": [ 205, - 207, - 208 + 209 ] }, { @@ -126433,8 +126478,7 @@ "collision_shapes": [ 210, 206, - 207, - 208 + 209 ] }, { @@ -126444,8 +126488,7 @@ "replaceable": false, "collision_shapes": [ 210, - 207, - 208 + 209 ] }, { @@ -126456,7 +126499,8 @@ "collision_shapes": [ 205, 206, - 207 + 207, + 208 ] }, { @@ -126466,7 +126510,8 @@ "replaceable": false, "collision_shapes": [ 205, - 207 + 207, + 208 ] }, { @@ -126477,7 +126522,8 @@ "collision_shapes": [ 210, 206, - 207 + 207, + 208 ] }, { @@ -126487,7 +126533,8 @@ "replaceable": false, "collision_shapes": [ 210, - 207 + 207, + 208 ] }, { @@ -126498,7 +126545,7 @@ "collision_shapes": [ 205, 206, - 208 + 207 ] }, { @@ -126508,7 +126555,7 @@ "replaceable": false, "collision_shapes": [ 205, - 208 + 207 ] }, { @@ -126519,7 +126566,7 @@ "collision_shapes": [ 210, 206, - 208 + 207 ] }, { @@ -126529,7 +126576,7 @@ "replaceable": false, "collision_shapes": [ 210, - 208 + 207 ] }, { @@ -126539,7 +126586,8 @@ "replaceable": false, "collision_shapes": [ 205, - 206 + 206, + 208 ] }, { @@ -126548,7 +126596,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 205 + 205, + 208 ] }, { @@ -126558,7 +126607,8 @@ "replaceable": false, "collision_shapes": [ 210, - 206 + 206, + 208 ] }, { @@ -126567,7 +126617,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 210 + 210, + 208 ] }, { @@ -126575,6 +126626,44 @@ "luminance": 0, "opaque": false, "replaceable": false, + "collision_shapes": [ + 205, + 206 + ] + }, + { + "id": 12228, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 205 + ] + }, + { + "id": 12229, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 210, + 206 + ] + }, + { + "id": 12230, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 210 + ] + }, + { + "id": 12231, + "luminance": 0, + "opaque": false, + "replaceable": false, "collision_shapes": [ 211, 207, @@ -126582,56 +126671,13 @@ 212 ] }, - { - "id": 12228, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 213, - 209, - 212 - ] - }, - { - "id": 12229, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 211, - 207, - 208 - ] - }, - { - "id": 12230, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 213, - 209 - ] - }, - { - "id": 12231, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 211, - 207, - 212 - ] - }, { "id": 12232, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 214, + 213, 209, 212 ] @@ -126643,7 +126689,8 @@ "replaceable": false, "collision_shapes": [ 211, - 207 + 207, + 208 ] }, { @@ -126652,7 +126699,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 214, + 213, 209 ] }, @@ -126663,7 +126710,7 @@ "replaceable": false, "collision_shapes": [ 211, - 208, + 207, 212 ] }, @@ -126673,7 +126720,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 215, + 214, 209, 212 ] @@ -126685,7 +126732,7 @@ "replaceable": false, "collision_shapes": [ 211, - 208 + 207 ] }, { @@ -126694,7 +126741,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 215, + 214, 209 ] }, @@ -126705,6 +126752,7 @@ "replaceable": false, "collision_shapes": [ 211, + 208, 212 ] }, @@ -126714,7 +126762,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 216, + 215, + 209, 212 ] }, @@ -126724,7 +126773,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 211 + 211, + 208 ] }, { @@ -126733,7 +126783,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 216 + 215, + 209 ] }, { @@ -126742,9 +126793,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 217, - 207, - 208, + 211, 212 ] }, @@ -126754,7 +126803,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 213, + 216, 212 ] }, @@ -126764,9 +126813,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 217, - 207, - 208 + 211 ] }, { @@ -126775,7 +126822,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 213 + 216 ] }, { @@ -126786,6 +126833,7 @@ "collision_shapes": [ 217, 207, + 208, 212 ] }, @@ -126795,7 +126843,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 214, + 213, 212 ] }, @@ -126806,7 +126854,8 @@ "replaceable": false, "collision_shapes": [ 217, - 207 + 207, + 208 ] }, { @@ -126815,7 +126864,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 214 + 213 ] }, { @@ -126825,7 +126874,7 @@ "replaceable": false, "collision_shapes": [ 217, - 208, + 207, 212 ] }, @@ -126835,7 +126884,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 215, + 214, 212 ] }, @@ -126846,7 +126895,7 @@ "replaceable": false, "collision_shapes": [ 217, - 208 + 207 ] }, { @@ -126855,7 +126904,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 215 + 214 ] }, { @@ -126865,6 +126914,7 @@ "replaceable": false, "collision_shapes": [ 217, + 208, 212 ] }, @@ -126874,7 +126924,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 218 + 215, + 212 ] }, { @@ -126883,7 +126934,8 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 217 + 217, + 208 ] }, { @@ -126891,6 +126943,43 @@ "luminance": 0, "opaque": false, "replaceable": false, + "collision_shapes": [ + 215 + ] + }, + { + "id": 12259, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 217, + 212 + ] + }, + { + "id": 12260, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 218 + ] + }, + { + "id": 12261, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 217 + ] + }, + { + "id": 12262, + "luminance": 0, + "opaque": false, + "replaceable": false, "collision_shapes": [ 219 ] @@ -126898,10 +126987,10 @@ ] }, { - "id": 592, + "id": 593, "name": "chorus_flower", "translation_key": "block.minecraft.chorus_flower", - "item_id": 270, + "item_id": 272, "properties": [ { "name": "age", @@ -126915,44 +127004,8 @@ ] } ], - "default_state_id": 12259, + "default_state_id": 12263, "states": [ - { - "id": 12259, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12260, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12261, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12262, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 12263, "luminance": 0, @@ -126970,21 +127023,38 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 593, - "name": "purpur_block", - "translation_key": "block.minecraft.purpur_block", - "item_id": 271, - "properties": [], - "default_state_id": 12265, - "states": [ + }, { "id": 12265, "luminance": 0, - "opaque": true, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 12266, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 12267, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 12268, + "luminance": 0, + "opaque": false, "replaceable": false, "collision_shapes": [ 0 @@ -126994,41 +127064,14 @@ }, { "id": 594, - "name": "purpur_pillar", - "translation_key": "block.minecraft.purpur_pillar", - "item_id": 272, - "properties": [ - { - "name": "axis", - "values": [ - "x", - "y", - "z" - ] - } - ], - "default_state_id": 12267, + "name": "purpur_block", + "translation_key": "block.minecraft.purpur_block", + "item_id": 273, + "properties": [], + "default_state_id": 12269, "states": [ { - "id": 12266, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12267, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12268, + "id": 12269, "luminance": 0, "opaque": true, "replaceable": false, @@ -127040,9 +127083,55 @@ }, { "id": 595, + "name": "purpur_pillar", + "translation_key": "block.minecraft.purpur_pillar", + "item_id": 274, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 12271, + "states": [ + { + "id": 12270, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 12271, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 12272, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 596, "name": "purpur_stairs", "translation_key": "block.minecraft.purpur_stairs", - "item_id": 273, + "item_id": 275, "properties": [ { "name": "facing", @@ -127078,50 +127167,8 @@ ] } ], - "default_state_id": 12280, + "default_state_id": 12284, "states": [ - { - "id": 12269, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 12270, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 12271, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 12272, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, { "id": 12273, "luminance": 0, @@ -127129,8 +127176,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -127140,8 +127186,7 @@ "replaceable": false, "collision_shapes": [ 41, - 46, - 47 + 42 ] }, { @@ -127150,9 +127195,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -127161,9 +127206,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -127172,9 +127217,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -127183,9 +127228,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -127194,8 +127239,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -127204,8 +127250,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52 + 48, + 42, + 49 ] }, { @@ -127214,9 +127261,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -127225,9 +127272,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, + 44, 50, - 49 + 45 ] }, { @@ -127237,8 +127284,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -127248,8 +127294,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 52 ] }, { @@ -127259,7 +127304,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -127269,7 +127315,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -127279,7 +127326,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -127289,7 +127337,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -127298,8 +127347,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -127308,8 +127357,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 51, + 53 ] }, { @@ -127318,9 +127367,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -127329,9 +127377,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 51, + 49 ] }, { @@ -127340,9 +127387,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -127351,9 +127397,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 54, + 52 ] }, { @@ -127362,9 +127407,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -127373,9 +127418,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -127384,9 +127429,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -127395,9 +127440,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 43, + 46, + 49 ] }, { @@ -127406,8 +127451,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -127416,8 +127462,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42 + 46, + 50, + 49 ] }, { @@ -127426,9 +127473,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -127437,9 +127484,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 42, - 49 + 55, + 52, + 45 ] }, { @@ -127449,8 +127496,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -127460,8 +127506,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 42 ] }, { @@ -127471,7 +127516,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -127481,7 +127527,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -127491,7 +127538,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -127501,7 +127549,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -127510,8 +127559,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -127520,8 +127569,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 51, + 45 ] }, { @@ -127530,9 +127579,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -127541,9 +127589,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, - 49 + 51, + 47 ] }, { @@ -127553,8 +127600,7 @@ "replaceable": false, "collision_shapes": [ 43, - 44, - 45 + 56 ] }, { @@ -127562,54 +127608,53 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 12315, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 12316, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 12317, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 43, 44, 45 ] }, - { - "id": 12315, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 12316, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 12317, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, { "id": 12318, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 43, + 44, + 45 ] }, { @@ -127618,8 +127663,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -127628,8 +127674,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50 + 55, + 52, + 45 ] }, { @@ -127638,9 +127685,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -127649,9 +127696,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -127661,8 +127708,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -127672,8 +127718,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 50 ] }, { @@ -127683,7 +127728,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -127693,7 +127739,8 @@ "replaceable": false, "collision_shapes": [ 51, - 47 + 50, + 45 ] }, { @@ -127703,7 +127750,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -127713,7 +127761,8 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 50, + 49 ] }, { @@ -127722,8 +127771,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -127732,8 +127781,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 51, + 47 ] }, { @@ -127742,9 +127791,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -127753,9 +127801,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 51, + 53 ] }, { @@ -127764,9 +127811,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -127775,9 +127821,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 57, + 50 ] }, { @@ -127786,9 +127831,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -127797,9 +127842,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 41, + 46, + 47 ] }, { @@ -127808,9 +127853,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -127819,9 +127864,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 54, + 44, + 53 ] }, { @@ -127830,8 +127875,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -127840,8 +127886,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 56 + 44, + 50, + 45 ] }, { @@ -127850,9 +127897,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -127861,9 +127908,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 52, - 45 + 46, + 50, + 49 ] }, { @@ -127873,8 +127920,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -127884,8 +127930,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 56 ] }, { @@ -127895,7 +127940,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -127905,7 +127951,8 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 52, + 45 ] }, { @@ -127915,7 +127962,8 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 42, + 49 ] }, { @@ -127923,6 +127971,47 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 12349, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 12350, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 12351, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 12352, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 51, 45 @@ -127931,15 +128020,15 @@ ] }, { - "id": 596, + "id": 597, "name": "end_stone_bricks", "translation_key": "block.minecraft.end_stone_bricks", - "item_id": 354, + "item_id": 356, "properties": [], - "default_state_id": 12349, + "default_state_id": 12353, "states": [ { - "id": 12349, + "id": 12353, "luminance": 0, "opaque": true, "replaceable": false, @@ -127950,70 +128039,21 @@ ] }, { - "id": 597, + "id": 598, "name": "torchflower_crop", "translation_key": "block.minecraft.torchflower_crop", - "item_id": 1102, + "item_id": 1106, "properties": [ { "name": "age", "values": [ "0", - "1", - "2" + "1" ] } ], - "default_state_id": 12350, + "default_state_id": 12354, "states": [ - { - "id": 12350, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12351, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12352, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 598, - "name": "beetroots", - "translation_key": "block.minecraft.beetroots", - "item_id": 1104, - "properties": [ - { - "name": "age", - "values": [ - "0", - "1", - "2", - "3" - ] - } - ], - "default_state_id": 12353, - "states": [ - { - "id": 12353, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 12354, "luminance": 0, @@ -128027,26 +128067,209 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 599, + "name": "pitcher_crop", + "translation_key": "block.minecraft.pitcher_crop", + "item_id": 1107, + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4" + ] }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + } + ], + "default_state_id": 12357, + "states": [ { "id": 12356, "luminance": 0, "opaque": false, "replaceable": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 12357, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 220 + ] + }, + { + "id": 12358, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12359, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 221 + ] + }, + { + "id": 12360, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12361, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 221 + ] + }, + { + "id": 12362, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12363, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 221 + ] + }, + { + "id": 12364, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12365, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 221 + ] + } + ] + }, + { + "id": 600, + "name": "pitcher_plant", + "translation_key": "block.minecraft.pitcher_plant", + "item_id": 210, + "properties": [ + { + "name": "half", + "values": [ + "upper", + "lower" + ] + } + ], + "default_state_id": 12367, + "states": [ + { + "id": 12366, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12367, + "luminance": 0, + "opaque": false, + "replaceable": false, "collision_shapes": [] } ] }, { - "id": 599, - "name": "dirt_path", - "translation_key": "block.minecraft.dirt_path", - "item_id": 440, - "properties": [], - "default_state_id": 12357, + "id": 601, + "name": "beetroots", + "translation_key": "block.minecraft.beetroots", + "item_id": 1109, + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3" + ] + } + ], + "default_state_id": 12368, "states": [ { - "id": 12357, + "id": 12368, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12369, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12370, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12371, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 602, + "name": "dirt_path", + "translation_key": "block.minecraft.dirt_path", + "item_id": 442, + "properties": [], + "default_state_id": 12372, + "states": [ + { + "id": 12372, "luminance": 0, "opaque": true, "replaceable": false, @@ -128057,15 +128280,15 @@ ] }, { - "id": 600, + "id": 603, "name": "end_gateway", "translation_key": "block.minecraft.end_gateway", "item_id": 0, "properties": [], - "default_state_id": 12358, + "default_state_id": 12373, "states": [ { - "id": 12358, + "id": 12373, "luminance": 15, "opaque": false, "replaceable": false, @@ -128075,10 +128298,10 @@ ] }, { - "id": 601, + "id": 604, "name": "repeating_command_block", "translation_key": "block.minecraft.repeating_command_block", - "item_id": 490, + "item_id": 492, "properties": [ { "name": "conditional", @@ -128099,187 +128322,8 @@ ] } ], - "default_state_id": 12365, + "default_state_id": 12380, "states": [ - { - "id": 12359, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12360, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12361, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12362, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12363, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12364, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12365, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12366, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12367, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12368, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12369, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12370, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - } - ] - }, - { - "id": 602, - "name": "chain_command_block", - "translation_key": "block.minecraft.chain_command_block", - "item_id": 491, - "properties": [ - { - "name": "conditional", - "values": [ - "true", - "false" - ] - }, - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12377, - "states": [ - { - "id": 12371, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12372, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, - { - "id": 12373, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 22 - }, { "id": 12374, "luminance": 0, @@ -128369,11 +128413,190 @@ 0 ], "block_entity_type": 22 + }, + { + "id": 12383, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12384, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12385, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 } ] }, { - "id": 603, + "id": 605, + "name": "chain_command_block", + "translation_key": "block.minecraft.chain_command_block", + "item_id": 493, + "properties": [ + { + "name": "conditional", + "values": [ + "true", + "false" + ] + }, + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12392, + "states": [ + { + "id": 12386, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12387, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12388, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12389, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12390, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12391, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12392, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12393, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12394, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12395, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12396, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + }, + { + "id": 12397, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 22 + } + ] + }, + { + "id": 606, "name": "frosted_ice", "translation_key": "block.minecraft.frosted_ice", "item_id": 0, @@ -128388,10 +128611,10 @@ ] } ], - "default_state_id": 12383, + "default_state_id": 12398, "states": [ { - "id": 12383, + "id": 12398, "luminance": 0, "opaque": false, "replaceable": false, @@ -128400,7 +128623,7 @@ ] }, { - "id": 12384, + "id": 12399, "luminance": 0, "opaque": false, "replaceable": false, @@ -128409,7 +128632,7 @@ ] }, { - "id": 12385, + "id": 12400, "luminance": 0, "opaque": false, "replaceable": false, @@ -128418,7 +128641,7 @@ ] }, { - "id": 12386, + "id": 12401, "luminance": 0, "opaque": false, "replaceable": false, @@ -128429,15 +128652,15 @@ ] }, { - "id": 604, + "id": 607, "name": "magma_block", "translation_key": "block.minecraft.magma_block", - "item_id": 492, + "item_id": 494, "properties": [], - "default_state_id": 12387, + "default_state_id": 12402, "states": [ { - "id": 12387, + "id": 12402, "luminance": 3, "opaque": true, "replaceable": false, @@ -128448,34 +128671,15 @@ ] }, { - "id": 605, + "id": 608, "name": "nether_wart_block", "translation_key": "block.minecraft.nether_wart_block", - "item_id": 493, - "properties": [], - "default_state_id": 12388, - "states": [ - { - "id": 12388, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 606, - "name": "red_nether_bricks", - "translation_key": "block.minecraft.red_nether_bricks", "item_id": 495, "properties": [], - "default_state_id": 12389, + "default_state_id": 12403, "states": [ { - "id": 12389, + "id": 12403, "luminance": 0, "opaque": true, "replaceable": false, @@ -128486,10 +128690,29 @@ ] }, { - "id": 607, + "id": 609, + "name": "red_nether_bricks", + "translation_key": "block.minecraft.red_nether_bricks", + "item_id": 497, + "properties": [], + "default_state_id": 12404, + "states": [ + { + "id": 12404, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 610, "name": "bone_block", "translation_key": "block.minecraft.bone_block", - "item_id": 496, + "item_id": 498, "properties": [ { "name": "axis", @@ -128500,10 +128723,10 @@ ] } ], - "default_state_id": 12391, + "default_state_id": 12406, "states": [ { - "id": 12390, + "id": 12405, "luminance": 0, "opaque": true, "replaceable": false, @@ -128512,7 +128735,7 @@ ] }, { - "id": 12391, + "id": 12406, "luminance": 0, "opaque": true, "replaceable": false, @@ -128521,7 +128744,7 @@ ] }, { - "id": 12392, + "id": 12407, "luminance": 0, "opaque": true, "replaceable": false, @@ -128532,15 +128755,15 @@ ] }, { - "id": 608, + "id": 611, "name": "structure_void", "translation_key": "block.minecraft.structure_void", - "item_id": 497, + "item_id": 499, "properties": [], - "default_state_id": 12393, + "default_state_id": 12408, "states": [ { - "id": 12393, + "id": 12408, "luminance": 0, "opaque": false, "replaceable": true, @@ -128549,10 +128772,10 @@ ] }, { - "id": 609, + "id": 612, "name": "observer", "translation_key": "block.minecraft.observer", - "item_id": 641, + "item_id": 644, "properties": [ { "name": "facing", @@ -128573,286 +128796,122 @@ ] } ], - "default_state_id": 12399, + "default_state_id": 12414, "states": [ - { - "id": 12394, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12395, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12396, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12397, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12398, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12399, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12400, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12401, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12402, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12403, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12404, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12405, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 610, - "name": "shulker_box", - "translation_key": "block.minecraft.shulker_box", - "item_id": 498, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12410, - "states": [ - { - "id": 12406, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 23 - }, - { - "id": 12407, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 23 - }, - { - "id": 12408, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 23 - }, { "id": 12409, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ 0 - ], - "block_entity_type": 23 + ] }, { "id": 12410, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ 0 - ], - "block_entity_type": 23 + ] }, { "id": 12411, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ 0 - ], - "block_entity_type": 23 - } - ] - }, - { - "id": 611, - "name": "white_shulker_box", - "translation_key": "block.minecraft.white_shulker_box", - "item_id": 499, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" ] - } - ], - "default_state_id": 12416, - "states": [ + }, { "id": 12412, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ 0 - ], - "block_entity_type": 23 + ] }, { "id": 12413, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ 0 - ], - "block_entity_type": 23 + ] }, { "id": 12414, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ 0 - ], - "block_entity_type": 23 + ] }, { "id": 12415, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ 0 - ], - "block_entity_type": 23 + ] }, { "id": 12416, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ 0 - ], - "block_entity_type": 23 + ] }, { "id": 12417, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ 0 - ], - "block_entity_type": 23 + ] + }, + { + "id": 12418, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 12419, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 12420, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { - "id": 612, - "name": "orange_shulker_box", - "translation_key": "block.minecraft.orange_shulker_box", + "id": 613, + "name": "shulker_box", + "translation_key": "block.minecraft.shulker_box", "item_id": 500, "properties": [ { @@ -128867,38 +128926,8 @@ ] } ], - "default_state_id": 12422, + "default_state_id": 12425, "states": [ - { - "id": 12418, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 23 - }, - { - "id": 12419, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 23 - }, - { - "id": 12420, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 23 - }, { "id": 12421, "luminance": 0, @@ -128928,29 +128957,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 613, - "name": "magenta_shulker_box", - "translation_key": "block.minecraft.magenta_shulker_box", - "item_id": 501, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12428, - "states": [ + }, { "id": 12424, "luminance": 0, @@ -128980,7 +128987,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 614, + "name": "white_shulker_box", + "translation_key": "block.minecraft.white_shulker_box", + "item_id": 501, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12431, + "states": [ { "id": 12427, "luminance": 0, @@ -129010,29 +129039,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 614, - "name": "light_blue_shulker_box", - "translation_key": "block.minecraft.light_blue_shulker_box", - "item_id": 502, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12434, - "states": [ + }, { "id": 12430, "luminance": 0, @@ -129062,7 +129069,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 615, + "name": "orange_shulker_box", + "translation_key": "block.minecraft.orange_shulker_box", + "item_id": 502, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12437, + "states": [ { "id": 12433, "luminance": 0, @@ -129092,29 +129121,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 615, - "name": "yellow_shulker_box", - "translation_key": "block.minecraft.yellow_shulker_box", - "item_id": 503, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12440, - "states": [ + }, { "id": 12436, "luminance": 0, @@ -129144,7 +129151,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 616, + "name": "magenta_shulker_box", + "translation_key": "block.minecraft.magenta_shulker_box", + "item_id": 503, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12443, + "states": [ { "id": 12439, "luminance": 0, @@ -129174,29 +129203,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 616, - "name": "lime_shulker_box", - "translation_key": "block.minecraft.lime_shulker_box", - "item_id": 504, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12446, - "states": [ + }, { "id": 12442, "luminance": 0, @@ -129226,7 +129233,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 617, + "name": "light_blue_shulker_box", + "translation_key": "block.minecraft.light_blue_shulker_box", + "item_id": 504, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12449, + "states": [ { "id": 12445, "luminance": 0, @@ -129256,29 +129285,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 617, - "name": "pink_shulker_box", - "translation_key": "block.minecraft.pink_shulker_box", - "item_id": 505, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12452, - "states": [ + }, { "id": 12448, "luminance": 0, @@ -129308,7 +129315,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 618, + "name": "yellow_shulker_box", + "translation_key": "block.minecraft.yellow_shulker_box", + "item_id": 505, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12455, + "states": [ { "id": 12451, "luminance": 0, @@ -129338,29 +129367,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 618, - "name": "gray_shulker_box", - "translation_key": "block.minecraft.gray_shulker_box", - "item_id": 506, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12458, - "states": [ + }, { "id": 12454, "luminance": 0, @@ -129390,7 +129397,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 619, + "name": "lime_shulker_box", + "translation_key": "block.minecraft.lime_shulker_box", + "item_id": 506, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12461, + "states": [ { "id": 12457, "luminance": 0, @@ -129420,29 +129449,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 619, - "name": "light_gray_shulker_box", - "translation_key": "block.minecraft.light_gray_shulker_box", - "item_id": 507, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12464, - "states": [ + }, { "id": 12460, "luminance": 0, @@ -129472,7 +129479,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 620, + "name": "pink_shulker_box", + "translation_key": "block.minecraft.pink_shulker_box", + "item_id": 507, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12467, + "states": [ { "id": 12463, "luminance": 0, @@ -129502,29 +129531,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 620, - "name": "cyan_shulker_box", - "translation_key": "block.minecraft.cyan_shulker_box", - "item_id": 508, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12470, - "states": [ + }, { "id": 12466, "luminance": 0, @@ -129554,7 +129561,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 621, + "name": "gray_shulker_box", + "translation_key": "block.minecraft.gray_shulker_box", + "item_id": 508, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12473, + "states": [ { "id": 12469, "luminance": 0, @@ -129584,29 +129613,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 621, - "name": "purple_shulker_box", - "translation_key": "block.minecraft.purple_shulker_box", - "item_id": 509, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12476, - "states": [ + }, { "id": 12472, "luminance": 0, @@ -129636,7 +129643,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 622, + "name": "light_gray_shulker_box", + "translation_key": "block.minecraft.light_gray_shulker_box", + "item_id": 509, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12479, + "states": [ { "id": 12475, "luminance": 0, @@ -129666,29 +129695,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 622, - "name": "blue_shulker_box", - "translation_key": "block.minecraft.blue_shulker_box", - "item_id": 510, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12482, - "states": [ + }, { "id": 12478, "luminance": 0, @@ -129718,7 +129725,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 623, + "name": "cyan_shulker_box", + "translation_key": "block.minecraft.cyan_shulker_box", + "item_id": 510, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12485, + "states": [ { "id": 12481, "luminance": 0, @@ -129748,29 +129777,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 623, - "name": "brown_shulker_box", - "translation_key": "block.minecraft.brown_shulker_box", - "item_id": 511, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12488, - "states": [ + }, { "id": 12484, "luminance": 0, @@ -129800,7 +129807,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 624, + "name": "purple_shulker_box", + "translation_key": "block.minecraft.purple_shulker_box", + "item_id": 511, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12491, + "states": [ { "id": 12487, "luminance": 0, @@ -129830,29 +129859,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 624, - "name": "green_shulker_box", - "translation_key": "block.minecraft.green_shulker_box", - "item_id": 512, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12494, - "states": [ + }, { "id": 12490, "luminance": 0, @@ -129882,7 +129889,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 625, + "name": "blue_shulker_box", + "translation_key": "block.minecraft.blue_shulker_box", + "item_id": 512, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12497, + "states": [ { "id": 12493, "luminance": 0, @@ -129912,29 +129941,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 625, - "name": "red_shulker_box", - "translation_key": "block.minecraft.red_shulker_box", - "item_id": 513, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12500, - "states": [ + }, { "id": 12496, "luminance": 0, @@ -129964,7 +129971,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 626, + "name": "brown_shulker_box", + "translation_key": "block.minecraft.brown_shulker_box", + "item_id": 513, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12503, + "states": [ { "id": 12499, "luminance": 0, @@ -129994,29 +130023,7 @@ 0 ], "block_entity_type": 23 - } - ] - }, - { - "id": 626, - "name": "black_shulker_box", - "translation_key": "block.minecraft.black_shulker_box", - "item_id": 514, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - } - ], - "default_state_id": 12506, - "states": [ + }, { "id": 12502, "luminance": 0, @@ -130046,7 +130053,29 @@ 0 ], "block_entity_type": 23 - }, + } + ] + }, + { + "id": 627, + "name": "green_shulker_box", + "translation_key": "block.minecraft.green_shulker_box", + "item_id": 514, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + } + ], + "default_state_id": 12509, + "states": [ { "id": 12505, "luminance": 0, @@ -130076,125 +130105,207 @@ 0 ], "block_entity_type": 23 + }, + { + "id": 12508, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 23 + }, + { + "id": 12509, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 23 + }, + { + "id": 12510, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 23 } ] }, { - "id": 627, - "name": "white_glazed_terracotta", - "translation_key": "block.minecraft.white_glazed_terracotta", + "id": 628, + "name": "red_shulker_box", + "translation_key": "block.minecraft.red_shulker_box", "item_id": 515, "properties": [ { "name": "facing", "values": [ "north", + "east", "south", "west", - "east" + "up", + "down" ] } ], - "default_state_id": 12508, + "default_state_id": 12515, "states": [ - { - "id": 12508, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12509, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12510, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 12511, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ 0 - ] + ], + "block_entity_type": 23 + }, + { + "id": 12512, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 23 + }, + { + "id": 12513, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 23 + }, + { + "id": 12514, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 23 + }, + { + "id": 12515, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 23 + }, + { + "id": 12516, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 23 } ] }, { - "id": 628, - "name": "orange_glazed_terracotta", - "translation_key": "block.minecraft.orange_glazed_terracotta", + "id": 629, + "name": "black_shulker_box", + "translation_key": "block.minecraft.black_shulker_box", "item_id": 516, "properties": [ { "name": "facing", "values": [ "north", + "east", "south", "west", - "east" + "up", + "down" ] } ], - "default_state_id": 12512, + "default_state_id": 12521, "states": [ { - "id": 12512, + "id": 12517, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ 0 - ] + ], + "block_entity_type": 23 }, { - "id": 12513, + "id": 12518, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ 0 - ] + ], + "block_entity_type": 23 }, { - "id": 12514, + "id": 12519, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ 0 - ] + ], + "block_entity_type": 23 }, { - "id": 12515, + "id": 12520, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ 0 - ] + ], + "block_entity_type": 23 + }, + { + "id": 12521, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 23 + }, + { + "id": 12522, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 23 } ] }, { - "id": 629, - "name": "magenta_glazed_terracotta", - "translation_key": "block.minecraft.magenta_glazed_terracotta", + "id": 630, + "name": "white_glazed_terracotta", + "translation_key": "block.minecraft.white_glazed_terracotta", "item_id": 517, "properties": [ { @@ -130207,91 +130318,8 @@ ] } ], - "default_state_id": 12516, + "default_state_id": 12523, "states": [ - { - "id": 12516, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12517, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12518, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12519, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 630, - "name": "light_blue_glazed_terracotta", - "translation_key": "block.minecraft.light_blue_glazed_terracotta", - "item_id": 518, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "default_state_id": 12520, - "states": [ - { - "id": 12520, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12521, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 12522, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 12523, "luminance": 0, @@ -130300,27 +130328,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 631, - "name": "yellow_glazed_terracotta", - "translation_key": "block.minecraft.yellow_glazed_terracotta", - "item_id": 519, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - } - ], - "default_state_id": 12524, - "states": [ + }, { "id": 12524, "luminance": 0, @@ -130347,23 +130355,14 @@ "collision_shapes": [ 0 ] - }, - { - "id": 12527, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] } ] }, { - "id": 632, - "name": "lime_glazed_terracotta", - "translation_key": "block.minecraft.lime_glazed_terracotta", - "item_id": 520, + "id": 631, + "name": "orange_glazed_terracotta", + "translation_key": "block.minecraft.orange_glazed_terracotta", + "item_id": 518, "properties": [ { "name": "facing", @@ -130375,8 +130374,17 @@ ] } ], - "default_state_id": 12528, + "default_state_id": 12527, "states": [ + { + "id": 12527, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, { "id": 12528, "luminance": 0, @@ -130403,23 +130411,14 @@ "collision_shapes": [ 0 ] - }, - { - "id": 12531, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] } ] }, { - "id": 633, - "name": "pink_glazed_terracotta", - "translation_key": "block.minecraft.pink_glazed_terracotta", - "item_id": 521, + "id": 632, + "name": "magenta_glazed_terracotta", + "translation_key": "block.minecraft.magenta_glazed_terracotta", + "item_id": 519, "properties": [ { "name": "facing", @@ -130431,8 +130430,17 @@ ] } ], - "default_state_id": 12532, + "default_state_id": 12531, "states": [ + { + "id": 12531, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, { "id": 12532, "luminance": 0, @@ -130459,23 +130467,14 @@ "collision_shapes": [ 0 ] - }, - { - "id": 12535, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] } ] }, { - "id": 634, - "name": "gray_glazed_terracotta", - "translation_key": "block.minecraft.gray_glazed_terracotta", - "item_id": 522, + "id": 633, + "name": "light_blue_glazed_terracotta", + "translation_key": "block.minecraft.light_blue_glazed_terracotta", + "item_id": 520, "properties": [ { "name": "facing", @@ -130487,8 +130486,17 @@ ] } ], - "default_state_id": 12536, + "default_state_id": 12535, "states": [ + { + "id": 12535, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, { "id": 12536, "luminance": 0, @@ -130515,23 +130523,14 @@ "collision_shapes": [ 0 ] - }, - { - "id": 12539, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] } ] }, { - "id": 635, - "name": "light_gray_glazed_terracotta", - "translation_key": "block.minecraft.light_gray_glazed_terracotta", - "item_id": 523, + "id": 634, + "name": "yellow_glazed_terracotta", + "translation_key": "block.minecraft.yellow_glazed_terracotta", + "item_id": 521, "properties": [ { "name": "facing", @@ -130543,8 +130542,17 @@ ] } ], - "default_state_id": 12540, + "default_state_id": 12539, "states": [ + { + "id": 12539, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, { "id": 12540, "luminance": 0, @@ -130571,23 +130579,14 @@ "collision_shapes": [ 0 ] - }, - { - "id": 12543, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] } ] }, { - "id": 636, - "name": "cyan_glazed_terracotta", - "translation_key": "block.minecraft.cyan_glazed_terracotta", - "item_id": 524, + "id": 635, + "name": "lime_glazed_terracotta", + "translation_key": "block.minecraft.lime_glazed_terracotta", + "item_id": 522, "properties": [ { "name": "facing", @@ -130599,8 +130598,17 @@ ] } ], - "default_state_id": 12544, + "default_state_id": 12543, "states": [ + { + "id": 12543, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, { "id": 12544, "luminance": 0, @@ -130627,23 +130635,14 @@ "collision_shapes": [ 0 ] - }, - { - "id": 12547, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] } ] }, { - "id": 637, - "name": "purple_glazed_terracotta", - "translation_key": "block.minecraft.purple_glazed_terracotta", - "item_id": 525, + "id": 636, + "name": "pink_glazed_terracotta", + "translation_key": "block.minecraft.pink_glazed_terracotta", + "item_id": 523, "properties": [ { "name": "facing", @@ -130655,8 +130654,17 @@ ] } ], - "default_state_id": 12548, + "default_state_id": 12547, "states": [ + { + "id": 12547, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, { "id": 12548, "luminance": 0, @@ -130683,23 +130691,14 @@ "collision_shapes": [ 0 ] - }, - { - "id": 12551, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] } ] }, { - "id": 638, - "name": "blue_glazed_terracotta", - "translation_key": "block.minecraft.blue_glazed_terracotta", - "item_id": 526, + "id": 637, + "name": "gray_glazed_terracotta", + "translation_key": "block.minecraft.gray_glazed_terracotta", + "item_id": 524, "properties": [ { "name": "facing", @@ -130711,8 +130710,17 @@ ] } ], - "default_state_id": 12552, + "default_state_id": 12551, "states": [ + { + "id": 12551, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, { "id": 12552, "luminance": 0, @@ -130739,23 +130747,14 @@ "collision_shapes": [ 0 ] - }, - { - "id": 12555, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] } ] }, { - "id": 639, - "name": "brown_glazed_terracotta", - "translation_key": "block.minecraft.brown_glazed_terracotta", - "item_id": 527, + "id": 638, + "name": "light_gray_glazed_terracotta", + "translation_key": "block.minecraft.light_gray_glazed_terracotta", + "item_id": 525, "properties": [ { "name": "facing", @@ -130767,8 +130766,17 @@ ] } ], - "default_state_id": 12556, + "default_state_id": 12555, "states": [ + { + "id": 12555, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, { "id": 12556, "luminance": 0, @@ -130795,23 +130803,14 @@ "collision_shapes": [ 0 ] - }, - { - "id": 12559, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] } ] }, { - "id": 640, - "name": "green_glazed_terracotta", - "translation_key": "block.minecraft.green_glazed_terracotta", - "item_id": 528, + "id": 639, + "name": "cyan_glazed_terracotta", + "translation_key": "block.minecraft.cyan_glazed_terracotta", + "item_id": 526, "properties": [ { "name": "facing", @@ -130823,8 +130822,17 @@ ] } ], - "default_state_id": 12560, + "default_state_id": 12559, "states": [ + { + "id": 12559, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, { "id": 12560, "luminance": 0, @@ -130851,23 +130859,14 @@ "collision_shapes": [ 0 ] - }, - { - "id": 12563, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] } ] }, { - "id": 641, - "name": "red_glazed_terracotta", - "translation_key": "block.minecraft.red_glazed_terracotta", - "item_id": 529, + "id": 640, + "name": "purple_glazed_terracotta", + "translation_key": "block.minecraft.purple_glazed_terracotta", + "item_id": 527, "properties": [ { "name": "facing", @@ -130879,8 +130878,17 @@ ] } ], - "default_state_id": 12564, + "default_state_id": 12563, "states": [ + { + "id": 12563, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, { "id": 12564, "luminance": 0, @@ -130907,23 +130915,14 @@ "collision_shapes": [ 0 ] - }, - { - "id": 12567, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] } ] }, { - "id": 642, - "name": "black_glazed_terracotta", - "translation_key": "block.minecraft.black_glazed_terracotta", - "item_id": 530, + "id": 641, + "name": "blue_glazed_terracotta", + "translation_key": "block.minecraft.blue_glazed_terracotta", + "item_id": 528, "properties": [ { "name": "facing", @@ -130935,8 +130934,17 @@ ] } ], - "default_state_id": 12568, + "default_state_id": 12567, "states": [ + { + "id": 12567, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, { "id": 12568, "luminance": 0, @@ -130963,7 +130971,27 @@ "collision_shapes": [ 0 ] - }, + } + ] + }, + { + "id": 642, + "name": "brown_glazed_terracotta", + "translation_key": "block.minecraft.brown_glazed_terracotta", + "item_id": 529, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], + "default_state_id": 12571, + "states": [ { "id": 12571, "luminance": 0, @@ -130972,17 +131000,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 643, - "name": "white_concrete", - "translation_key": "block.minecraft.white_concrete", - "item_id": 531, - "properties": [], - "default_state_id": 12572, - "states": [ + }, { "id": 12572, "luminance": 0, @@ -130991,17 +131009,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 644, - "name": "orange_concrete", - "translation_key": "block.minecraft.orange_concrete", - "item_id": 532, - "properties": [], - "default_state_id": 12573, - "states": [ + }, { "id": 12573, "luminance": 0, @@ -131010,17 +131018,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 645, - "name": "magenta_concrete", - "translation_key": "block.minecraft.magenta_concrete", - "item_id": 533, - "properties": [], - "default_state_id": 12574, - "states": [ + }, { "id": 12574, "luminance": 0, @@ -131033,11 +131031,21 @@ ] }, { - "id": 646, - "name": "light_blue_concrete", - "translation_key": "block.minecraft.light_blue_concrete", - "item_id": 534, - "properties": [], + "id": 643, + "name": "green_glazed_terracotta", + "translation_key": "block.minecraft.green_glazed_terracotta", + "item_id": 530, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], "default_state_id": 12575, "states": [ { @@ -131048,17 +131056,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 647, - "name": "yellow_concrete", - "translation_key": "block.minecraft.yellow_concrete", - "item_id": 535, - "properties": [], - "default_state_id": 12576, - "states": [ + }, { "id": 12576, "luminance": 0, @@ -131067,17 +131065,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 648, - "name": "lime_concrete", - "translation_key": "block.minecraft.lime_concrete", - "item_id": 536, - "properties": [], - "default_state_id": 12577, - "states": [ + }, { "id": 12577, "luminance": 0, @@ -131086,17 +131074,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 649, - "name": "pink_concrete", - "translation_key": "block.minecraft.pink_concrete", - "item_id": 537, - "properties": [], - "default_state_id": 12578, - "states": [ + }, { "id": 12578, "luminance": 0, @@ -131109,11 +131087,21 @@ ] }, { - "id": 650, - "name": "gray_concrete", - "translation_key": "block.minecraft.gray_concrete", - "item_id": 538, - "properties": [], + "id": 644, + "name": "red_glazed_terracotta", + "translation_key": "block.minecraft.red_glazed_terracotta", + "item_id": 531, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], "default_state_id": 12579, "states": [ { @@ -131124,17 +131112,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 651, - "name": "light_gray_concrete", - "translation_key": "block.minecraft.light_gray_concrete", - "item_id": 539, - "properties": [], - "default_state_id": 12580, - "states": [ + }, { "id": 12580, "luminance": 0, @@ -131143,17 +131121,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 652, - "name": "cyan_concrete", - "translation_key": "block.minecraft.cyan_concrete", - "item_id": 540, - "properties": [], - "default_state_id": 12581, - "states": [ + }, { "id": 12581, "luminance": 0, @@ -131162,17 +131130,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 653, - "name": "purple_concrete", - "translation_key": "block.minecraft.purple_concrete", - "item_id": 541, - "properties": [], - "default_state_id": 12582, - "states": [ + }, { "id": 12582, "luminance": 0, @@ -131185,11 +131143,21 @@ ] }, { - "id": 654, - "name": "blue_concrete", - "translation_key": "block.minecraft.blue_concrete", - "item_id": 542, - "properties": [], + "id": 645, + "name": "black_glazed_terracotta", + "translation_key": "block.minecraft.black_glazed_terracotta", + "item_id": 532, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + } + ], "default_state_id": 12583, "states": [ { @@ -131200,17 +131168,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 655, - "name": "brown_concrete", - "translation_key": "block.minecraft.brown_concrete", - "item_id": 543, - "properties": [], - "default_state_id": 12584, - "states": [ + }, { "id": 12584, "luminance": 0, @@ -131219,17 +131177,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 656, - "name": "green_concrete", - "translation_key": "block.minecraft.green_concrete", - "item_id": 544, - "properties": [], - "default_state_id": 12585, - "states": [ + }, { "id": 12585, "luminance": 0, @@ -131238,17 +131186,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 657, - "name": "red_concrete", - "translation_key": "block.minecraft.red_concrete", - "item_id": 545, - "properties": [], - "default_state_id": 12586, - "states": [ + }, { "id": 12586, "luminance": 0, @@ -131261,10 +131199,10 @@ ] }, { - "id": 658, - "name": "black_concrete", - "translation_key": "block.minecraft.black_concrete", - "item_id": 546, + "id": 646, + "name": "white_concrete", + "translation_key": "block.minecraft.white_concrete", + "item_id": 533, "properties": [], "default_state_id": 12587, "states": [ @@ -131280,10 +131218,10 @@ ] }, { - "id": 659, - "name": "white_concrete_powder", - "translation_key": "block.minecraft.white_concrete_powder", - "item_id": 547, + "id": 647, + "name": "orange_concrete", + "translation_key": "block.minecraft.orange_concrete", + "item_id": 534, "properties": [], "default_state_id": 12588, "states": [ @@ -131299,10 +131237,10 @@ ] }, { - "id": 660, - "name": "orange_concrete_powder", - "translation_key": "block.minecraft.orange_concrete_powder", - "item_id": 548, + "id": 648, + "name": "magenta_concrete", + "translation_key": "block.minecraft.magenta_concrete", + "item_id": 535, "properties": [], "default_state_id": 12589, "states": [ @@ -131318,10 +131256,10 @@ ] }, { - "id": 661, - "name": "magenta_concrete_powder", - "translation_key": "block.minecraft.magenta_concrete_powder", - "item_id": 549, + "id": 649, + "name": "light_blue_concrete", + "translation_key": "block.minecraft.light_blue_concrete", + "item_id": 536, "properties": [], "default_state_id": 12590, "states": [ @@ -131337,10 +131275,10 @@ ] }, { - "id": 662, - "name": "light_blue_concrete_powder", - "translation_key": "block.minecraft.light_blue_concrete_powder", - "item_id": 550, + "id": 650, + "name": "yellow_concrete", + "translation_key": "block.minecraft.yellow_concrete", + "item_id": 537, "properties": [], "default_state_id": 12591, "states": [ @@ -131356,10 +131294,10 @@ ] }, { - "id": 663, - "name": "yellow_concrete_powder", - "translation_key": "block.minecraft.yellow_concrete_powder", - "item_id": 551, + "id": 651, + "name": "lime_concrete", + "translation_key": "block.minecraft.lime_concrete", + "item_id": 538, "properties": [], "default_state_id": 12592, "states": [ @@ -131375,10 +131313,10 @@ ] }, { - "id": 664, - "name": "lime_concrete_powder", - "translation_key": "block.minecraft.lime_concrete_powder", - "item_id": 552, + "id": 652, + "name": "pink_concrete", + "translation_key": "block.minecraft.pink_concrete", + "item_id": 539, "properties": [], "default_state_id": 12593, "states": [ @@ -131394,10 +131332,10 @@ ] }, { - "id": 665, - "name": "pink_concrete_powder", - "translation_key": "block.minecraft.pink_concrete_powder", - "item_id": 553, + "id": 653, + "name": "gray_concrete", + "translation_key": "block.minecraft.gray_concrete", + "item_id": 540, "properties": [], "default_state_id": 12594, "states": [ @@ -131413,10 +131351,10 @@ ] }, { - "id": 666, - "name": "gray_concrete_powder", - "translation_key": "block.minecraft.gray_concrete_powder", - "item_id": 554, + "id": 654, + "name": "light_gray_concrete", + "translation_key": "block.minecraft.light_gray_concrete", + "item_id": 541, "properties": [], "default_state_id": 12595, "states": [ @@ -131432,10 +131370,10 @@ ] }, { - "id": 667, - "name": "light_gray_concrete_powder", - "translation_key": "block.minecraft.light_gray_concrete_powder", - "item_id": 555, + "id": 655, + "name": "cyan_concrete", + "translation_key": "block.minecraft.cyan_concrete", + "item_id": 542, "properties": [], "default_state_id": 12596, "states": [ @@ -131451,10 +131389,10 @@ ] }, { - "id": 668, - "name": "cyan_concrete_powder", - "translation_key": "block.minecraft.cyan_concrete_powder", - "item_id": 556, + "id": 656, + "name": "purple_concrete", + "translation_key": "block.minecraft.purple_concrete", + "item_id": 543, "properties": [], "default_state_id": 12597, "states": [ @@ -131470,10 +131408,10 @@ ] }, { - "id": 669, - "name": "purple_concrete_powder", - "translation_key": "block.minecraft.purple_concrete_powder", - "item_id": 557, + "id": 657, + "name": "blue_concrete", + "translation_key": "block.minecraft.blue_concrete", + "item_id": 544, "properties": [], "default_state_id": 12598, "states": [ @@ -131489,10 +131427,10 @@ ] }, { - "id": 670, - "name": "blue_concrete_powder", - "translation_key": "block.minecraft.blue_concrete_powder", - "item_id": 558, + "id": 658, + "name": "brown_concrete", + "translation_key": "block.minecraft.brown_concrete", + "item_id": 545, "properties": [], "default_state_id": 12599, "states": [ @@ -131508,10 +131446,10 @@ ] }, { - "id": 671, - "name": "brown_concrete_powder", - "translation_key": "block.minecraft.brown_concrete_powder", - "item_id": 559, + "id": 659, + "name": "green_concrete", + "translation_key": "block.minecraft.green_concrete", + "item_id": 546, "properties": [], "default_state_id": 12600, "states": [ @@ -131527,10 +131465,10 @@ ] }, { - "id": 672, - "name": "green_concrete_powder", - "translation_key": "block.minecraft.green_concrete_powder", - "item_id": 560, + "id": 660, + "name": "red_concrete", + "translation_key": "block.minecraft.red_concrete", + "item_id": 547, "properties": [], "default_state_id": 12601, "states": [ @@ -131546,10 +131484,10 @@ ] }, { - "id": 673, - "name": "red_concrete_powder", - "translation_key": "block.minecraft.red_concrete_powder", - "item_id": 561, + "id": 661, + "name": "black_concrete", + "translation_key": "block.minecraft.black_concrete", + "item_id": 548, "properties": [], "default_state_id": 12602, "states": [ @@ -131565,10 +131503,10 @@ ] }, { - "id": 674, - "name": "black_concrete_powder", - "translation_key": "block.minecraft.black_concrete_powder", - "item_id": 562, + "id": 662, + "name": "white_concrete_powder", + "translation_key": "block.minecraft.white_concrete_powder", + "item_id": 549, "properties": [], "default_state_id": 12603, "states": [ @@ -131583,11 +131521,296 @@ } ] }, + { + "id": 663, + "name": "orange_concrete_powder", + "translation_key": "block.minecraft.orange_concrete_powder", + "item_id": 550, + "properties": [], + "default_state_id": 12604, + "states": [ + { + "id": 12604, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 664, + "name": "magenta_concrete_powder", + "translation_key": "block.minecraft.magenta_concrete_powder", + "item_id": 551, + "properties": [], + "default_state_id": 12605, + "states": [ + { + "id": 12605, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 665, + "name": "light_blue_concrete_powder", + "translation_key": "block.minecraft.light_blue_concrete_powder", + "item_id": 552, + "properties": [], + "default_state_id": 12606, + "states": [ + { + "id": 12606, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 666, + "name": "yellow_concrete_powder", + "translation_key": "block.minecraft.yellow_concrete_powder", + "item_id": 553, + "properties": [], + "default_state_id": 12607, + "states": [ + { + "id": 12607, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 667, + "name": "lime_concrete_powder", + "translation_key": "block.minecraft.lime_concrete_powder", + "item_id": 554, + "properties": [], + "default_state_id": 12608, + "states": [ + { + "id": 12608, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 668, + "name": "pink_concrete_powder", + "translation_key": "block.minecraft.pink_concrete_powder", + "item_id": 555, + "properties": [], + "default_state_id": 12609, + "states": [ + { + "id": 12609, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 669, + "name": "gray_concrete_powder", + "translation_key": "block.minecraft.gray_concrete_powder", + "item_id": 556, + "properties": [], + "default_state_id": 12610, + "states": [ + { + "id": 12610, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 670, + "name": "light_gray_concrete_powder", + "translation_key": "block.minecraft.light_gray_concrete_powder", + "item_id": 557, + "properties": [], + "default_state_id": 12611, + "states": [ + { + "id": 12611, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 671, + "name": "cyan_concrete_powder", + "translation_key": "block.minecraft.cyan_concrete_powder", + "item_id": 558, + "properties": [], + "default_state_id": 12612, + "states": [ + { + "id": 12612, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 672, + "name": "purple_concrete_powder", + "translation_key": "block.minecraft.purple_concrete_powder", + "item_id": 559, + "properties": [], + "default_state_id": 12613, + "states": [ + { + "id": 12613, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 673, + "name": "blue_concrete_powder", + "translation_key": "block.minecraft.blue_concrete_powder", + "item_id": 560, + "properties": [], + "default_state_id": 12614, + "states": [ + { + "id": 12614, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 674, + "name": "brown_concrete_powder", + "translation_key": "block.minecraft.brown_concrete_powder", + "item_id": 561, + "properties": [], + "default_state_id": 12615, + "states": [ + { + "id": 12615, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, { "id": 675, + "name": "green_concrete_powder", + "translation_key": "block.minecraft.green_concrete_powder", + "item_id": 562, + "properties": [], + "default_state_id": 12616, + "states": [ + { + "id": 12616, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 676, + "name": "red_concrete_powder", + "translation_key": "block.minecraft.red_concrete_powder", + "item_id": 563, + "properties": [], + "default_state_id": 12617, + "states": [ + { + "id": 12617, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 677, + "name": "black_concrete_powder", + "translation_key": "block.minecraft.black_concrete_powder", + "item_id": 564, + "properties": [], + "default_state_id": 12618, + "states": [ + { + "id": 12618, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 678, "name": "kelp", "translation_key": "block.minecraft.kelp", - "item_id": 220, + "item_id": 222, "properties": [ { "name": "age", @@ -131621,113 +131844,8 @@ ] } ], - "default_state_id": 12604, + "default_state_id": 12619, "states": [ - { - "id": 12604, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12605, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12606, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12607, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12608, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12609, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12610, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12611, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12612, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12613, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12614, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12615, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12616, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12617, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12618, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 12619, "luminance": 0, @@ -131804,36 +131922,141 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 676, - "name": "kelp_plant", - "translation_key": "block.minecraft.kelp_plant", - "item_id": 0, - "properties": [], - "default_state_id": 12630, - "states": [ + }, { "id": 12630, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 12631, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12632, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12633, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12634, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12635, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12636, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12637, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12638, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12639, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12640, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12641, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12642, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12643, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12644, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 677, - "name": "dried_kelp_block", - "translation_key": "block.minecraft.dried_kelp_block", - "item_id": 879, + "id": 679, + "name": "kelp_plant", + "translation_key": "block.minecraft.kelp_plant", + "item_id": 0, "properties": [], - "default_state_id": 12631, + "default_state_id": 12645, "states": [ { - "id": 12631, + "id": 12645, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 680, + "name": "dried_kelp_block", + "translation_key": "block.minecraft.dried_kelp_block", + "item_id": 883, + "properties": [], + "default_state_id": 12646, + "states": [ + { + "id": 12646, "luminance": 0, "opaque": true, "replaceable": false, @@ -131844,10 +132067,10 @@ ] }, { - "id": 678, + "id": 681, "name": "turtle_egg", "translation_key": "block.minecraft.turtle_egg", - "item_id": 563, + "item_id": 565, "properties": [ { "name": "eggs", @@ -131867,204 +132090,174 @@ ] } ], - "default_state_id": 12632, + "default_state_id": 12647, "states": [ { - "id": 12632, + "id": 12647, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 220 + 222 ] }, { - "id": 12633, + "id": 12648, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 220 + 222 ] }, { - "id": 12634, + "id": 12649, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 220 + 222 ] }, { - "id": 12635, + "id": 12650, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 221 + 223 ] }, { - "id": 12636, + "id": 12651, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 221 + 223 ] }, { - "id": 12637, + "id": 12652, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 221 + 223 ] }, { - "id": 12638, + "id": 12653, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 221 + 223 ] }, { - "id": 12639, + "id": 12654, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 221 + 223 ] }, { - "id": 12640, + "id": 12655, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 221 + 223 ] }, { - "id": 12641, + "id": 12656, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 221 + 223 ] }, { - "id": 12642, + "id": 12657, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 221 + 223 ] }, { - "id": 12643, + "id": 12658, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 221 - ] - } - ] - }, - { - "id": 679, - "name": "dead_tube_coral_block", - "translation_key": "block.minecraft.dead_tube_coral_block", - "item_id": 564, - "properties": [], - "default_state_id": 12644, - "states": [ - { - "id": 12644, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 680, - "name": "dead_brain_coral_block", - "translation_key": "block.minecraft.dead_brain_coral_block", - "item_id": 565, - "properties": [], - "default_state_id": 12645, - "states": [ - { - "id": 12645, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 681, - "name": "dead_bubble_coral_block", - "translation_key": "block.minecraft.dead_bubble_coral_block", - "item_id": 566, - "properties": [], - "default_state_id": 12646, - "states": [ - { - "id": 12646, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 + 223 ] } ] }, { "id": 682, - "name": "dead_fire_coral_block", - "translation_key": "block.minecraft.dead_fire_coral_block", - "item_id": 567, - "properties": [], - "default_state_id": 12647, + "name": "sniffer_egg", + "translation_key": "block.minecraft.sniffer_egg", + "item_id": 566, + "properties": [ + { + "name": "hatch", + "values": [ + "0", + "1", + "2" + ] + } + ], + "default_state_id": 12659, "states": [ { - "id": 12647, + "id": 12659, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ - 0 + 224 + ] + }, + { + "id": 12660, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 224 + ] + }, + { + "id": 12661, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 224 ] } ] }, { "id": 683, - "name": "dead_horn_coral_block", - "translation_key": "block.minecraft.dead_horn_coral_block", - "item_id": 568, + "name": "dead_tube_coral_block", + "translation_key": "block.minecraft.dead_tube_coral_block", + "item_id": 567, "properties": [], - "default_state_id": 12648, + "default_state_id": 12662, "states": [ { - "id": 12648, + "id": 12662, "luminance": 0, "opaque": true, "replaceable": false, @@ -132076,14 +132269,14 @@ }, { "id": 684, - "name": "tube_coral_block", - "translation_key": "block.minecraft.tube_coral_block", - "item_id": 569, + "name": "dead_brain_coral_block", + "translation_key": "block.minecraft.dead_brain_coral_block", + "item_id": 568, "properties": [], - "default_state_id": 12649, + "default_state_id": 12663, "states": [ { - "id": 12649, + "id": 12663, "luminance": 0, "opaque": true, "replaceable": false, @@ -132095,14 +132288,14 @@ }, { "id": 685, - "name": "brain_coral_block", - "translation_key": "block.minecraft.brain_coral_block", - "item_id": 570, + "name": "dead_bubble_coral_block", + "translation_key": "block.minecraft.dead_bubble_coral_block", + "item_id": 569, "properties": [], - "default_state_id": 12650, + "default_state_id": 12664, "states": [ { - "id": 12650, + "id": 12664, "luminance": 0, "opaque": true, "replaceable": false, @@ -132114,14 +132307,14 @@ }, { "id": 686, - "name": "bubble_coral_block", - "translation_key": "block.minecraft.bubble_coral_block", - "item_id": 571, + "name": "dead_fire_coral_block", + "translation_key": "block.minecraft.dead_fire_coral_block", + "item_id": 570, "properties": [], - "default_state_id": 12651, + "default_state_id": 12665, "states": [ { - "id": 12651, + "id": 12665, "luminance": 0, "opaque": true, "replaceable": false, @@ -132133,14 +132326,14 @@ }, { "id": 687, - "name": "fire_coral_block", - "translation_key": "block.minecraft.fire_coral_block", - "item_id": 572, + "name": "dead_horn_coral_block", + "translation_key": "block.minecraft.dead_horn_coral_block", + "item_id": 571, "properties": [], - "default_state_id": 12652, + "default_state_id": 12666, "states": [ { - "id": 12652, + "id": 12666, "luminance": 0, "opaque": true, "replaceable": false, @@ -132152,14 +132345,14 @@ }, { "id": 688, - "name": "horn_coral_block", - "translation_key": "block.minecraft.horn_coral_block", - "item_id": 573, + "name": "tube_coral_block", + "translation_key": "block.minecraft.tube_coral_block", + "item_id": 572, "properties": [], - "default_state_id": 12653, + "default_state_id": 12667, "states": [ { - "id": 12653, + "id": 12667, "luminance": 0, "opaque": true, "replaceable": false, @@ -132171,297 +132364,85 @@ }, { "id": 689, - "name": "dead_tube_coral", - "translation_key": "block.minecraft.dead_tube_coral", - "item_id": 583, - "properties": [ - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 12654, - "states": [ - { - "id": 12654, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12655, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 690, - "name": "dead_brain_coral", - "translation_key": "block.minecraft.dead_brain_coral", - "item_id": 579, - "properties": [ - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 12656, - "states": [ - { - "id": 12656, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12657, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 691, - "name": "dead_bubble_coral", - "translation_key": "block.minecraft.dead_bubble_coral", - "item_id": 580, - "properties": [ - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 12658, - "states": [ - { - "id": 12658, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12659, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 692, - "name": "dead_fire_coral", - "translation_key": "block.minecraft.dead_fire_coral", - "item_id": 581, - "properties": [ - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 12660, - "states": [ - { - "id": 12660, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12661, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 693, - "name": "dead_horn_coral", - "translation_key": "block.minecraft.dead_horn_coral", - "item_id": 582, - "properties": [ - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 12662, - "states": [ - { - "id": 12662, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12663, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 694, - "name": "tube_coral", - "translation_key": "block.minecraft.tube_coral", - "item_id": 574, - "properties": [ - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 12664, - "states": [ - { - "id": 12664, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12665, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 695, - "name": "brain_coral", - "translation_key": "block.minecraft.brain_coral", - "item_id": 575, - "properties": [ - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 12666, - "states": [ - { - "id": 12666, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12667, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 696, - "name": "bubble_coral", - "translation_key": "block.minecraft.bubble_coral", - "item_id": 576, - "properties": [ - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], + "name": "brain_coral_block", + "translation_key": "block.minecraft.brain_coral_block", + "item_id": 573, + "properties": [], "default_state_id": 12668, "states": [ { "id": 12668, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12669, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 0 + ] } ] }, { - "id": 697, - "name": "fire_coral", - "translation_key": "block.minecraft.fire_coral", - "item_id": 577, - "properties": [ + "id": 690, + "name": "bubble_coral_block", + "translation_key": "block.minecraft.bubble_coral_block", + "item_id": 574, + "properties": [], + "default_state_id": 12669, + "states": [ { - "name": "waterlogged", - "values": [ - "true", - "false" + "id": 12669, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 ] } - ], + ] + }, + { + "id": 691, + "name": "fire_coral_block", + "translation_key": "block.minecraft.fire_coral_block", + "item_id": 575, + "properties": [], "default_state_id": 12670, "states": [ { "id": 12670, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12671, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 0 + ] } ] }, { - "id": 698, - "name": "horn_coral", - "translation_key": "block.minecraft.horn_coral", - "item_id": 578, + "id": 692, + "name": "horn_coral_block", + "translation_key": "block.minecraft.horn_coral_block", + "item_id": 576, + "properties": [], + "default_state_id": 12671, + "states": [ + { + "id": 12671, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 693, + "name": "dead_tube_coral", + "translation_key": "block.minecraft.dead_tube_coral", + "item_id": 586, "properties": [ { "name": "waterlogged", @@ -132490,11 +132471,10 @@ ] }, { - "id": 699, - "name": "dead_tube_coral_fan", - "translation_key": "block.minecraft.dead_tube_coral_fan", - "item_id": 589, - "wall_variant_id": 709, + "id": 694, + "name": "dead_brain_coral", + "translation_key": "block.minecraft.dead_brain_coral", + "item_id": 582, "properties": [ { "name": "waterlogged", @@ -132523,11 +132503,10 @@ ] }, { - "id": 700, - "name": "dead_brain_coral_fan", - "translation_key": "block.minecraft.dead_brain_coral_fan", - "item_id": 590, - "wall_variant_id": 710, + "id": 695, + "name": "dead_bubble_coral", + "translation_key": "block.minecraft.dead_bubble_coral", + "item_id": 583, "properties": [ { "name": "waterlogged", @@ -132556,11 +132535,10 @@ ] }, { - "id": 701, - "name": "dead_bubble_coral_fan", - "translation_key": "block.minecraft.dead_bubble_coral_fan", - "item_id": 591, - "wall_variant_id": 711, + "id": 696, + "name": "dead_fire_coral", + "translation_key": "block.minecraft.dead_fire_coral", + "item_id": 584, "properties": [ { "name": "waterlogged", @@ -132589,11 +132567,10 @@ ] }, { - "id": 702, - "name": "dead_fire_coral_fan", - "translation_key": "block.minecraft.dead_fire_coral_fan", - "item_id": 592, - "wall_variant_id": 712, + "id": 697, + "name": "dead_horn_coral", + "translation_key": "block.minecraft.dead_horn_coral", + "item_id": 585, "properties": [ { "name": "waterlogged", @@ -132622,11 +132599,10 @@ ] }, { - "id": 703, - "name": "dead_horn_coral_fan", - "translation_key": "block.minecraft.dead_horn_coral_fan", - "item_id": 593, - "wall_variant_id": 713, + "id": 698, + "name": "tube_coral", + "translation_key": "block.minecraft.tube_coral", + "item_id": 577, "properties": [ { "name": "waterlogged", @@ -132655,11 +132631,10 @@ ] }, { - "id": 704, - "name": "tube_coral_fan", - "translation_key": "block.minecraft.tube_coral_fan", - "item_id": 584, - "wall_variant_id": 714, + "id": 699, + "name": "brain_coral", + "translation_key": "block.minecraft.brain_coral", + "item_id": 578, "properties": [ { "name": "waterlogged", @@ -132688,11 +132663,10 @@ ] }, { - "id": 705, - "name": "brain_coral_fan", - "translation_key": "block.minecraft.brain_coral_fan", - "item_id": 585, - "wall_variant_id": 715, + "id": 700, + "name": "bubble_coral", + "translation_key": "block.minecraft.bubble_coral", + "item_id": 579, "properties": [ { "name": "waterlogged", @@ -132721,11 +132695,10 @@ ] }, { - "id": 706, - "name": "bubble_coral_fan", - "translation_key": "block.minecraft.bubble_coral_fan", - "item_id": 586, - "wall_variant_id": 716, + "id": 701, + "name": "fire_coral", + "translation_key": "block.minecraft.fire_coral", + "item_id": 580, "properties": [ { "name": "waterlogged", @@ -132754,11 +132727,10 @@ ] }, { - "id": 707, - "name": "fire_coral_fan", - "translation_key": "block.minecraft.fire_coral_fan", - "item_id": 587, - "wall_variant_id": 717, + "id": 702, + "name": "horn_coral", + "translation_key": "block.minecraft.horn_coral", + "item_id": 581, "properties": [ { "name": "waterlogged", @@ -132787,11 +132759,11 @@ ] }, { - "id": 708, - "name": "horn_coral_fan", - "translation_key": "block.minecraft.horn_coral_fan", - "item_id": 588, - "wall_variant_id": 718, + "id": 703, + "name": "dead_tube_coral_fan", + "translation_key": "block.minecraft.dead_tube_coral_fan", + "item_id": 592, + "wall_variant_id": 713, "properties": [ { "name": "waterlogged", @@ -132820,20 +132792,12 @@ ] }, { - "id": 709, - "name": "dead_tube_coral_wall_fan", - "translation_key": "block.minecraft.dead_tube_coral_wall_fan", - "item_id": 589, + "id": 704, + "name": "dead_brain_coral_fan", + "translation_key": "block.minecraft.dead_brain_coral_fan", + "item_id": 593, + "wall_variant_id": 714, "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, { "name": "waterlogged", "values": [ @@ -132857,7 +132821,26 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - }, + } + ] + }, + { + "id": 705, + "name": "dead_bubble_coral_fan", + "translation_key": "block.minecraft.dead_bubble_coral_fan", + "item_id": 594, + "wall_variant_id": 715, + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 12696, + "states": [ { "id": 12696, "luminance": 0, @@ -132871,7 +132854,26 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - }, + } + ] + }, + { + "id": 706, + "name": "dead_fire_coral_fan", + "translation_key": "block.minecraft.dead_fire_coral_fan", + "item_id": 595, + "wall_variant_id": 716, + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 12698, + "states": [ { "id": 12698, "luminance": 0, @@ -132885,7 +132887,26 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - }, + } + ] + }, + { + "id": 707, + "name": "dead_horn_coral_fan", + "translation_key": "block.minecraft.dead_horn_coral_fan", + "item_id": 596, + "wall_variant_id": 717, + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 12700, + "states": [ { "id": 12700, "luminance": 0, @@ -132903,20 +132924,12 @@ ] }, { - "id": 710, - "name": "dead_brain_coral_wall_fan", - "translation_key": "block.minecraft.dead_brain_coral_wall_fan", - "item_id": 590, + "id": 708, + "name": "tube_coral_fan", + "translation_key": "block.minecraft.tube_coral_fan", + "item_id": 587, + "wall_variant_id": 718, "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, { "name": "waterlogged", "values": [ @@ -132940,7 +132953,26 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - }, + } + ] + }, + { + "id": 709, + "name": "brain_coral_fan", + "translation_key": "block.minecraft.brain_coral_fan", + "item_id": 588, + "wall_variant_id": 719, + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 12704, + "states": [ { "id": 12704, "luminance": 0, @@ -132954,7 +132986,26 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - }, + } + ] + }, + { + "id": 710, + "name": "bubble_coral_fan", + "translation_key": "block.minecraft.bubble_coral_fan", + "item_id": 589, + "wall_variant_id": 720, + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 12706, + "states": [ { "id": 12706, "luminance": 0, @@ -132968,7 +133019,26 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - }, + } + ] + }, + { + "id": 711, + "name": "fire_coral_fan", + "translation_key": "block.minecraft.fire_coral_fan", + "item_id": 590, + "wall_variant_id": 721, + "properties": [ + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 12708, + "states": [ { "id": 12708, "luminance": 0, @@ -132986,20 +133056,12 @@ ] }, { - "id": 711, - "name": "dead_bubble_coral_wall_fan", - "translation_key": "block.minecraft.dead_bubble_coral_wall_fan", + "id": 712, + "name": "horn_coral_fan", + "translation_key": "block.minecraft.horn_coral_fan", "item_id": 591, + "wall_variant_id": 722, "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, { "name": "waterlogged", "values": [ @@ -133023,7 +133085,34 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 713, + "name": "dead_tube_coral_wall_fan", + "translation_key": "block.minecraft.dead_tube_coral_wall_fan", + "item_id": 592, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 12712, + "states": [ { "id": 12712, "luminance": 0, @@ -133065,14 +133154,28 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 12718, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12719, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 712, - "name": "dead_fire_coral_wall_fan", - "translation_key": "block.minecraft.dead_fire_coral_wall_fan", - "item_id": 592, + "id": 714, + "name": "dead_brain_coral_wall_fan", + "translation_key": "block.minecraft.dead_brain_coral_wall_fan", + "item_id": 593, "properties": [ { "name": "facing", @@ -133091,22 +133194,8 @@ ] } ], - "default_state_id": 12718, + "default_state_id": 12720, "states": [ - { - "id": 12718, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12719, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 12720, "luminance": 0, @@ -133148,14 +133237,28 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 12726, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12727, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 713, - "name": "dead_horn_coral_wall_fan", - "translation_key": "block.minecraft.dead_horn_coral_wall_fan", - "item_id": 593, + "id": 715, + "name": "dead_bubble_coral_wall_fan", + "translation_key": "block.minecraft.dead_bubble_coral_wall_fan", + "item_id": 594, "properties": [ { "name": "facing", @@ -133174,22 +133277,8 @@ ] } ], - "default_state_id": 12726, + "default_state_id": 12728, "states": [ - { - "id": 12726, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12727, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 12728, "luminance": 0, @@ -133231,14 +133320,28 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 12734, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12735, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 714, - "name": "tube_coral_wall_fan", - "translation_key": "block.minecraft.tube_coral_wall_fan", - "item_id": 584, + "id": 716, + "name": "dead_fire_coral_wall_fan", + "translation_key": "block.minecraft.dead_fire_coral_wall_fan", + "item_id": 595, "properties": [ { "name": "facing", @@ -133257,22 +133360,8 @@ ] } ], - "default_state_id": 12734, + "default_state_id": 12736, "states": [ - { - "id": 12734, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12735, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 12736, "luminance": 0, @@ -133314,14 +133403,28 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 12742, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12743, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 715, - "name": "brain_coral_wall_fan", - "translation_key": "block.minecraft.brain_coral_wall_fan", - "item_id": 585, + "id": 717, + "name": "dead_horn_coral_wall_fan", + "translation_key": "block.minecraft.dead_horn_coral_wall_fan", + "item_id": 596, "properties": [ { "name": "facing", @@ -133340,22 +133443,8 @@ ] } ], - "default_state_id": 12742, + "default_state_id": 12744, "states": [ - { - "id": 12742, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12743, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 12744, "luminance": 0, @@ -133397,14 +133486,28 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 12750, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12751, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 716, - "name": "bubble_coral_wall_fan", - "translation_key": "block.minecraft.bubble_coral_wall_fan", - "item_id": 586, + "id": 718, + "name": "tube_coral_wall_fan", + "translation_key": "block.minecraft.tube_coral_wall_fan", + "item_id": 587, "properties": [ { "name": "facing", @@ -133423,22 +133526,8 @@ ] } ], - "default_state_id": 12750, + "default_state_id": 12752, "states": [ - { - "id": 12750, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12751, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 12752, "luminance": 0, @@ -133480,14 +133569,28 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 12758, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12759, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 717, - "name": "fire_coral_wall_fan", - "translation_key": "block.minecraft.fire_coral_wall_fan", - "item_id": 587, + "id": 719, + "name": "brain_coral_wall_fan", + "translation_key": "block.minecraft.brain_coral_wall_fan", + "item_id": 588, "properties": [ { "name": "facing", @@ -133506,22 +133609,8 @@ ] } ], - "default_state_id": 12758, + "default_state_id": 12760, "states": [ - { - "id": 12758, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12759, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 12760, "luminance": 0, @@ -133563,14 +133652,28 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 12766, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12767, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 718, - "name": "horn_coral_wall_fan", - "translation_key": "block.minecraft.horn_coral_wall_fan", - "item_id": 588, + "id": 720, + "name": "bubble_coral_wall_fan", + "translation_key": "block.minecraft.bubble_coral_wall_fan", + "item_id": 589, "properties": [ { "name": "facing", @@ -133589,22 +133692,8 @@ ] } ], - "default_state_id": 12766, + "default_state_id": 12768, "states": [ - { - "id": 12766, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 12767, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 12768, "luminance": 0, @@ -133646,14 +133735,194 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 12774, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12775, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 719, + "id": 721, + "name": "fire_coral_wall_fan", + "translation_key": "block.minecraft.fire_coral_wall_fan", + "item_id": 590, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 12776, + "states": [ + { + "id": 12776, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12777, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12778, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12779, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12780, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12781, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12782, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12783, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 722, + "name": "horn_coral_wall_fan", + "translation_key": "block.minecraft.horn_coral_wall_fan", + "item_id": 591, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 12784, + "states": [ + { + "id": 12784, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12785, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12786, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12787, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12788, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12789, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12790, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 12791, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 723, "name": "sea_pickle", "translation_key": "block.minecraft.sea_pickle", - "item_id": 178, + "item_id": 179, "properties": [ { "name": "pickles", @@ -133672,92 +133941,92 @@ ] } ], - "default_state_id": 12774, + "default_state_id": 12792, "states": [ { - "id": 12774, + "id": 12792, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 222 + 225 ] }, { - "id": 12775, + "id": 12793, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 222 + 225 ] }, { - "id": 12776, + "id": 12794, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 223 + 226 ] }, { - "id": 12777, + "id": 12795, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 223 + 226 ] }, { - "id": 12778, + "id": 12796, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 224 + 227 ] }, { - "id": 12779, + "id": 12797, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 224 + 227 ] }, { - "id": 12780, + "id": 12798, "luminance": 15, "opaque": false, "replaceable": false, "collision_shapes": [ - 225 + 228 ] }, { - "id": 12781, + "id": 12799, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 225 + 228 ] } ] }, { - "id": 720, + "id": 724, "name": "blue_ice", "translation_key": "block.minecraft.blue_ice", - "item_id": 594, + "item_id": 597, "properties": [], - "default_state_id": 12782, + "default_state_id": 12800, "states": [ { - "id": 12782, + "id": 12800, "luminance": 0, "opaque": true, "replaceable": false, @@ -133768,10 +134037,10 @@ ] }, { - "id": 721, + "id": 725, "name": "conduit", "translation_key": "block.minecraft.conduit", - "item_id": 595, + "item_id": 598, "properties": [ { "name": "waterlogged", @@ -133781,40 +134050,40 @@ ] } ], - "default_state_id": 12783, + "default_state_id": 12801, "states": [ { - "id": 12783, + "id": 12801, "luminance": 15, "opaque": false, "replaceable": false, "collision_shapes": [ - 226 + 229 ], "block_entity_type": 25 }, { - "id": 12784, + "id": 12802, "luminance": 15, "opaque": false, "replaceable": false, "collision_shapes": [ - 226 + 229 ], "block_entity_type": 25 } ] }, { - "id": 722, + "id": 726, "name": "bamboo_sapling", "translation_key": "block.minecraft.bamboo_sapling", "item_id": 0, "properties": [], - "default_state_id": 12785, + "default_state_id": 12803, "states": [ { - "id": 12785, + "id": 12803, "luminance": 0, "opaque": false, "replaceable": false, @@ -133823,10 +134092,10 @@ ] }, { - "id": 723, + "id": 727, "name": "bamboo", "translation_key": "block.minecraft.bamboo", - "item_id": 227, + "item_id": 229, "properties": [ { "name": "age", @@ -133851,128 +134120,128 @@ ] } ], - "default_state_id": 12786, + "default_state_id": 12804, "states": [ { - "id": 12786, + "id": 12804, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 227 + 230 ] }, { - "id": 12787, + "id": 12805, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 227 + 230 ] }, { - "id": 12788, + "id": 12806, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 227 + 230 ] }, { - "id": 12789, + "id": 12807, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 227 + 230 ] }, { - "id": 12790, + "id": 12808, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 227 + 230 ] }, { - "id": 12791, + "id": 12809, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 227 + 230 ] }, { - "id": 12792, + "id": 12810, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 227 + 230 ] }, { - "id": 12793, + "id": 12811, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 227 + 230 ] }, { - "id": 12794, + "id": 12812, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 227 + 230 ] }, { - "id": 12795, + "id": 12813, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 227 + 230 ] }, { - "id": 12796, + "id": 12814, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 227 + 230 ] }, { - "id": 12797, + "id": 12815, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 227 + 230 ] } ] }, { - "id": 724, + "id": 728, "name": "potted_bamboo", "translation_key": "block.minecraft.potted_bamboo", "item_id": 0, "properties": [], - "default_state_id": 12798, + "default_state_id": 12816, "states": [ { - "id": 12798, + "id": 12816, "luminance": 0, "opaque": false, "replaceable": false, @@ -133983,15 +134252,15 @@ ] }, { - "id": 725, + "id": 729, "name": "void_air", "translation_key": "block.minecraft.void_air", "item_id": 0, "properties": [], - "default_state_id": 12799, + "default_state_id": 12817, "states": [ { - "id": 12799, + "id": 12817, "luminance": 0, "opaque": false, "replaceable": true, @@ -134000,15 +134269,15 @@ ] }, { - "id": 726, + "id": 730, "name": "cave_air", "translation_key": "block.minecraft.cave_air", "item_id": 0, "properties": [], - "default_state_id": 12800, + "default_state_id": 12818, "states": [ { - "id": 12800, + "id": 12818, "luminance": 0, "opaque": false, "replaceable": true, @@ -134017,7 +134286,7 @@ ] }, { - "id": 727, + "id": 731, "name": "bubble_column", "translation_key": "block.minecraft.bubble_column", "item_id": 0, @@ -134030,2704 +134299,28 @@ ] } ], - "default_state_id": 12801, + "default_state_id": 12819, "states": [ - { - "id": 12801, - "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - }, - { - "id": 12802, - "luminance": 0, - "opaque": false, - "replaceable": true, - "collision_shapes": [] - } - ] - }, - { - "id": 728, - "name": "polished_granite_stairs", - "translation_key": "block.minecraft.polished_granite_stairs", - "item_id": 596, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 12814, - "states": [ - { - "id": 12803, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 12804, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 12805, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 12806, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 12807, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 12808, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 12809, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 12810, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 12811, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 12812, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 12813, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 12814, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 12815, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 12816, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 12817, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 12818, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, { "id": 12819, "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] + "opaque": false, + "replaceable": true, + "collision_shapes": [] }, { "id": 12820, "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 12821, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 12822, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 12823, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 12824, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 12825, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 12826, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 12827, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 12828, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 12829, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 12830, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 12831, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 12832, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 12833, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 12834, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 12835, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 12836, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 12837, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 12838, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 12839, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 12840, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 12841, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 12842, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 12843, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 12844, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 12845, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 12846, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 12847, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 12848, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 12849, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 12850, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 12851, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 12852, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 12853, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 12854, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 12855, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 12856, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 12857, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 12858, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 12859, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 12860, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 12861, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 12862, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 12863, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 12864, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 12865, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 12866, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 12867, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 12868, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 12869, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 12870, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 12871, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 12872, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 12873, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 12874, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 12875, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 12876, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 12877, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 12878, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 12879, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 12880, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 12881, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 12882, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] + "opaque": false, + "replaceable": true, + "collision_shapes": [] } ] }, { - "id": 729, - "name": "smooth_red_sandstone_stairs", - "translation_key": "block.minecraft.smooth_red_sandstone_stairs", - "item_id": 597, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 12894, - "states": [ - { - "id": 12883, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 12884, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 12885, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 12886, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 12887, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 12888, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 12889, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 12890, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 12891, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 12892, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 12893, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 12894, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 12895, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 12896, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 12897, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 12898, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 12899, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 12900, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 12901, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 12902, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 12903, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 12904, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 12905, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 12906, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 12907, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 12908, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 12909, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 12910, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 12911, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 12912, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 12913, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 12914, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 12915, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 12916, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 12917, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 12918, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 12919, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 12920, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 12921, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 12922, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 12923, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 12924, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 12925, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 12926, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 12927, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 12928, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 12929, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 12930, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 12931, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 12932, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 12933, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 12934, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 12935, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 12936, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 12937, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 12938, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 12939, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 12940, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 12941, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 12942, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 12943, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 12944, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 12945, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 12946, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 12947, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 12948, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 12949, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 12950, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 12951, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 12952, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 12953, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 12954, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 12955, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 12956, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 12957, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 12958, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 12959, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 12960, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 12961, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 12962, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - } - ] - }, - { - "id": 730, - "name": "mossy_stone_brick_stairs", - "translation_key": "block.minecraft.mossy_stone_brick_stairs", - "item_id": 598, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 12974, - "states": [ - { - "id": 12963, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 12964, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 12965, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 12966, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 12967, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 12968, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 12969, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 12970, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 12971, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 12972, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 12973, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 12974, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 12975, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 12976, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 12977, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 12978, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 12979, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 12980, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 12981, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 12982, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 12983, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 12984, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 12985, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 12986, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 12987, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 12988, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 12989, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 12990, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 12991, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 12992, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 12993, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 12994, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 12995, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 12996, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 12997, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 12998, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 12999, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 13000, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 13001, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 13002, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 13003, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 13004, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 13005, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 13006, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 13007, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 13008, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 13009, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 13010, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 13011, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 13012, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 13013, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 13014, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 13015, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 13016, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 13017, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 13018, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 13019, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 13020, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 13021, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 13022, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 13023, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 13024, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 13025, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 13026, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 13027, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 13028, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 13029, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 13030, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 13031, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 13032, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 13033, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 13034, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 13035, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 13036, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 13037, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 13038, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 13039, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 13040, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 13041, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 13042, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - } - ] - }, - { - "id": 731, - "name": "polished_diorite_stairs", - "translation_key": "block.minecraft.polished_diorite_stairs", + "id": 732, + "name": "polished_granite_stairs", + "translation_key": "block.minecraft.polished_granite_stairs", "item_id": 599, "properties": [ { @@ -136764,10 +134357,10 @@ ] } ], - "default_state_id": 13054, + "default_state_id": 12832, "states": [ { - "id": 13043, + "id": 12821, "luminance": 0, "opaque": true, "replaceable": false, @@ -136777,7 +134370,7 @@ ] }, { - "id": 13044, + "id": 12822, "luminance": 0, "opaque": true, "replaceable": false, @@ -136787,7 +134380,7 @@ ] }, { - "id": 13045, + "id": 12823, "luminance": 0, "opaque": true, "replaceable": false, @@ -136798,7 +134391,7 @@ ] }, { - "id": 13046, + "id": 12824, "luminance": 0, "opaque": true, "replaceable": false, @@ -136809,7 +134402,7 @@ ] }, { - "id": 13047, + "id": 12825, "luminance": 0, "opaque": true, "replaceable": false, @@ -136820,7 +134413,7 @@ ] }, { - "id": 13048, + "id": 12826, "luminance": 0, "opaque": true, "replaceable": false, @@ -136831,7 +134424,7 @@ ] }, { - "id": 13049, + "id": 12827, "luminance": 0, "opaque": true, "replaceable": false, @@ -136842,7 +134435,7 @@ ] }, { - "id": 13050, + "id": 12828, "luminance": 0, "opaque": true, "replaceable": false, @@ -136853,7 +134446,7 @@ ] }, { - "id": 13051, + "id": 12829, "luminance": 0, "opaque": true, "replaceable": false, @@ -136864,7 +134457,7 @@ ] }, { - "id": 13052, + "id": 12830, "luminance": 0, "opaque": true, "replaceable": false, @@ -136875,7 +134468,7 @@ ] }, { - "id": 13053, + "id": 12831, "luminance": 0, "opaque": true, "replaceable": false, @@ -136885,7 +134478,7 @@ ] }, { - "id": 13054, + "id": 12832, "luminance": 0, "opaque": true, "replaceable": false, @@ -136895,7 +134488,7 @@ ] }, { - "id": 13055, + "id": 12833, "luminance": 0, "opaque": true, "replaceable": false, @@ -136906,7 +134499,7 @@ ] }, { - "id": 13056, + "id": 12834, "luminance": 0, "opaque": true, "replaceable": false, @@ -136917,7 +134510,7 @@ ] }, { - "id": 13057, + "id": 12835, "luminance": 0, "opaque": true, "replaceable": false, @@ -136928,7 +134521,7 @@ ] }, { - "id": 13058, + "id": 12836, "luminance": 0, "opaque": true, "replaceable": false, @@ -136939,7 +134532,7 @@ ] }, { - "id": 13059, + "id": 12837, "luminance": 0, "opaque": true, "replaceable": false, @@ -136949,7 +134542,7 @@ ] }, { - "id": 13060, + "id": 12838, "luminance": 0, "opaque": true, "replaceable": false, @@ -136959,7 +134552,7 @@ ] }, { - "id": 13061, + "id": 12839, "luminance": 0, "opaque": true, "replaceable": false, @@ -136969,7 +134562,7 @@ ] }, { - "id": 13062, + "id": 12840, "luminance": 0, "opaque": true, "replaceable": false, @@ -136979,7 +134572,7 @@ ] }, { - "id": 13063, + "id": 12841, "luminance": 0, "opaque": true, "replaceable": false, @@ -136989,7 +134582,7 @@ ] }, { - "id": 13064, + "id": 12842, "luminance": 0, "opaque": true, "replaceable": false, @@ -136999,7 +134592,7 @@ ] }, { - "id": 13065, + "id": 12843, "luminance": 0, "opaque": true, "replaceable": false, @@ -137010,7 +134603,7 @@ ] }, { - "id": 13066, + "id": 12844, "luminance": 0, "opaque": true, "replaceable": false, @@ -137021,7 +134614,7 @@ ] }, { - "id": 13067, + "id": 12845, "luminance": 0, "opaque": true, "replaceable": false, @@ -137032,7 +134625,7 @@ ] }, { - "id": 13068, + "id": 12846, "luminance": 0, "opaque": true, "replaceable": false, @@ -137043,7 +134636,7 @@ ] }, { - "id": 13069, + "id": 12847, "luminance": 0, "opaque": true, "replaceable": false, @@ -137054,7 +134647,7 @@ ] }, { - "id": 13070, + "id": 12848, "luminance": 0, "opaque": true, "replaceable": false, @@ -137065,7 +134658,7 @@ ] }, { - "id": 13071, + "id": 12849, "luminance": 0, "opaque": true, "replaceable": false, @@ -137076,7 +134669,7 @@ ] }, { - "id": 13072, + "id": 12850, "luminance": 0, "opaque": true, "replaceable": false, @@ -137087,7 +134680,7 @@ ] }, { - "id": 13073, + "id": 12851, "luminance": 0, "opaque": true, "replaceable": false, @@ -137097,7 +134690,7 @@ ] }, { - "id": 13074, + "id": 12852, "luminance": 0, "opaque": true, "replaceable": false, @@ -137107,7 +134700,7 @@ ] }, { - "id": 13075, + "id": 12853, "luminance": 0, "opaque": true, "replaceable": false, @@ -137118,7 +134711,7 @@ ] }, { - "id": 13076, + "id": 12854, "luminance": 0, "opaque": true, "replaceable": false, @@ -137129,7 +134722,7 @@ ] }, { - "id": 13077, + "id": 12855, "luminance": 0, "opaque": true, "replaceable": false, @@ -137140,7 +134733,7 @@ ] }, { - "id": 13078, + "id": 12856, "luminance": 0, "opaque": true, "replaceable": false, @@ -137151,7 +134744,7 @@ ] }, { - "id": 13079, + "id": 12857, "luminance": 0, "opaque": true, "replaceable": false, @@ -137161,7 +134754,7 @@ ] }, { - "id": 13080, + "id": 12858, "luminance": 0, "opaque": true, "replaceable": false, @@ -137171,7 +134764,7 @@ ] }, { - "id": 13081, + "id": 12859, "luminance": 0, "opaque": true, "replaceable": false, @@ -137181,7 +134774,7 @@ ] }, { - "id": 13082, + "id": 12860, "luminance": 0, "opaque": true, "replaceable": false, @@ -137191,7 +134784,7 @@ ] }, { - "id": 13083, + "id": 12861, "luminance": 0, "opaque": true, "replaceable": false, @@ -137201,7 +134794,7 @@ ] }, { - "id": 13084, + "id": 12862, "luminance": 0, "opaque": true, "replaceable": false, @@ -137211,7 +134804,7 @@ ] }, { - "id": 13085, + "id": 12863, "luminance": 0, "opaque": true, "replaceable": false, @@ -137222,7 +134815,7 @@ ] }, { - "id": 13086, + "id": 12864, "luminance": 0, "opaque": true, "replaceable": false, @@ -137233,7 +134826,7 @@ ] }, { - "id": 13087, + "id": 12865, "luminance": 0, "opaque": true, "replaceable": false, @@ -137244,7 +134837,7 @@ ] }, { - "id": 13088, + "id": 12866, "luminance": 0, "opaque": true, "replaceable": false, @@ -137255,7 +134848,7 @@ ] }, { - "id": 13089, + "id": 12867, "luminance": 0, "opaque": true, "replaceable": false, @@ -137266,7 +134859,7 @@ ] }, { - "id": 13090, + "id": 12868, "luminance": 0, "opaque": true, "replaceable": false, @@ -137277,7 +134870,7 @@ ] }, { - "id": 13091, + "id": 12869, "luminance": 0, "opaque": true, "replaceable": false, @@ -137288,7 +134881,7 @@ ] }, { - "id": 13092, + "id": 12870, "luminance": 0, "opaque": true, "replaceable": false, @@ -137299,7 +134892,7 @@ ] }, { - "id": 13093, + "id": 12871, "luminance": 0, "opaque": true, "replaceable": false, @@ -137309,7 +134902,7 @@ ] }, { - "id": 13094, + "id": 12872, "luminance": 0, "opaque": true, "replaceable": false, @@ -137319,7 +134912,7 @@ ] }, { - "id": 13095, + "id": 12873, "luminance": 0, "opaque": true, "replaceable": false, @@ -137330,7 +134923,7 @@ ] }, { - "id": 13096, + "id": 12874, "luminance": 0, "opaque": true, "replaceable": false, @@ -137341,7 +134934,7 @@ ] }, { - "id": 13097, + "id": 12875, "luminance": 0, "opaque": true, "replaceable": false, @@ -137352,7 +134945,7 @@ ] }, { - "id": 13098, + "id": 12876, "luminance": 0, "opaque": true, "replaceable": false, @@ -137363,7 +134956,7 @@ ] }, { - "id": 13099, + "id": 12877, "luminance": 0, "opaque": true, "replaceable": false, @@ -137373,7 +134966,7 @@ ] }, { - "id": 13100, + "id": 12878, "luminance": 0, "opaque": true, "replaceable": false, @@ -137383,7 +134976,7 @@ ] }, { - "id": 13101, + "id": 12879, "luminance": 0, "opaque": true, "replaceable": false, @@ -137393,7 +134986,7 @@ ] }, { - "id": 13102, + "id": 12880, "luminance": 0, "opaque": true, "replaceable": false, @@ -137403,7 +134996,7 @@ ] }, { - "id": 13103, + "id": 12881, "luminance": 0, "opaque": true, "replaceable": false, @@ -137413,7 +135006,7 @@ ] }, { - "id": 13104, + "id": 12882, "luminance": 0, "opaque": true, "replaceable": false, @@ -137423,7 +135016,7 @@ ] }, { - "id": 13105, + "id": 12883, "luminance": 0, "opaque": true, "replaceable": false, @@ -137434,7 +135027,7 @@ ] }, { - "id": 13106, + "id": 12884, "luminance": 0, "opaque": true, "replaceable": false, @@ -137445,7 +135038,7 @@ ] }, { - "id": 13107, + "id": 12885, "luminance": 0, "opaque": true, "replaceable": false, @@ -137456,7 +135049,7 @@ ] }, { - "id": 13108, + "id": 12886, "luminance": 0, "opaque": true, "replaceable": false, @@ -137467,7 +135060,7 @@ ] }, { - "id": 13109, + "id": 12887, "luminance": 0, "opaque": true, "replaceable": false, @@ -137478,7 +135071,7 @@ ] }, { - "id": 13110, + "id": 12888, "luminance": 0, "opaque": true, "replaceable": false, @@ -137489,7 +135082,7 @@ ] }, { - "id": 13111, + "id": 12889, "luminance": 0, "opaque": true, "replaceable": false, @@ -137500,7 +135093,7 @@ ] }, { - "id": 13112, + "id": 12890, "luminance": 0, "opaque": true, "replaceable": false, @@ -137511,7 +135104,7 @@ ] }, { - "id": 13113, + "id": 12891, "luminance": 0, "opaque": true, "replaceable": false, @@ -137521,7 +135114,7 @@ ] }, { - "id": 13114, + "id": 12892, "luminance": 0, "opaque": true, "replaceable": false, @@ -137531,7 +135124,7 @@ ] }, { - "id": 13115, + "id": 12893, "luminance": 0, "opaque": true, "replaceable": false, @@ -137542,7 +135135,7 @@ ] }, { - "id": 13116, + "id": 12894, "luminance": 0, "opaque": true, "replaceable": false, @@ -137553,7 +135146,7 @@ ] }, { - "id": 13117, + "id": 12895, "luminance": 0, "opaque": true, "replaceable": false, @@ -137564,7 +135157,7 @@ ] }, { - "id": 13118, + "id": 12896, "luminance": 0, "opaque": true, "replaceable": false, @@ -137575,7 +135168,7 @@ ] }, { - "id": 13119, + "id": 12897, "luminance": 0, "opaque": true, "replaceable": false, @@ -137585,7 +135178,7 @@ ] }, { - "id": 13120, + "id": 12898, "luminance": 0, "opaque": true, "replaceable": false, @@ -137595,7 +135188,7 @@ ] }, { - "id": 13121, + "id": 12899, "luminance": 0, "opaque": true, "replaceable": false, @@ -137605,7 +135198,7 @@ ] }, { - "id": 13122, + "id": 12900, "luminance": 0, "opaque": true, "replaceable": false, @@ -137617,9 +135210,9 @@ ] }, { - "id": 732, - "name": "mossy_cobblestone_stairs", - "translation_key": "block.minecraft.mossy_cobblestone_stairs", + "id": 733, + "name": "smooth_red_sandstone_stairs", + "translation_key": "block.minecraft.smooth_red_sandstone_stairs", "item_id": 600, "properties": [ { @@ -137656,10 +135249,10 @@ ] } ], - "default_state_id": 13134, + "default_state_id": 12912, "states": [ { - "id": 13123, + "id": 12901, "luminance": 0, "opaque": true, "replaceable": false, @@ -137669,7 +135262,7 @@ ] }, { - "id": 13124, + "id": 12902, "luminance": 0, "opaque": true, "replaceable": false, @@ -137679,7 +135272,7 @@ ] }, { - "id": 13125, + "id": 12903, "luminance": 0, "opaque": true, "replaceable": false, @@ -137690,7 +135283,7 @@ ] }, { - "id": 13126, + "id": 12904, "luminance": 0, "opaque": true, "replaceable": false, @@ -137701,7 +135294,7 @@ ] }, { - "id": 13127, + "id": 12905, "luminance": 0, "opaque": true, "replaceable": false, @@ -137712,7 +135305,7 @@ ] }, { - "id": 13128, + "id": 12906, "luminance": 0, "opaque": true, "replaceable": false, @@ -137723,7 +135316,7 @@ ] }, { - "id": 13129, + "id": 12907, "luminance": 0, "opaque": true, "replaceable": false, @@ -137734,7 +135327,7 @@ ] }, { - "id": 13130, + "id": 12908, "luminance": 0, "opaque": true, "replaceable": false, @@ -137745,7 +135338,7 @@ ] }, { - "id": 13131, + "id": 12909, "luminance": 0, "opaque": true, "replaceable": false, @@ -137756,7 +135349,7 @@ ] }, { - "id": 13132, + "id": 12910, "luminance": 0, "opaque": true, "replaceable": false, @@ -137767,7 +135360,7 @@ ] }, { - "id": 13133, + "id": 12911, "luminance": 0, "opaque": true, "replaceable": false, @@ -137777,7 +135370,7 @@ ] }, { - "id": 13134, + "id": 12912, "luminance": 0, "opaque": true, "replaceable": false, @@ -137787,7 +135380,7 @@ ] }, { - "id": 13135, + "id": 12913, "luminance": 0, "opaque": true, "replaceable": false, @@ -137798,7 +135391,7 @@ ] }, { - "id": 13136, + "id": 12914, "luminance": 0, "opaque": true, "replaceable": false, @@ -137809,7 +135402,7 @@ ] }, { - "id": 13137, + "id": 12915, "luminance": 0, "opaque": true, "replaceable": false, @@ -137820,7 +135413,7 @@ ] }, { - "id": 13138, + "id": 12916, "luminance": 0, "opaque": true, "replaceable": false, @@ -137831,7 +135424,7 @@ ] }, { - "id": 13139, + "id": 12917, "luminance": 0, "opaque": true, "replaceable": false, @@ -137841,7 +135434,7 @@ ] }, { - "id": 13140, + "id": 12918, "luminance": 0, "opaque": true, "replaceable": false, @@ -137851,7 +135444,7 @@ ] }, { - "id": 13141, + "id": 12919, "luminance": 0, "opaque": true, "replaceable": false, @@ -137861,7 +135454,7 @@ ] }, { - "id": 13142, + "id": 12920, "luminance": 0, "opaque": true, "replaceable": false, @@ -137871,7 +135464,7 @@ ] }, { - "id": 13143, + "id": 12921, "luminance": 0, "opaque": true, "replaceable": false, @@ -137881,7 +135474,7 @@ ] }, { - "id": 13144, + "id": 12922, "luminance": 0, "opaque": true, "replaceable": false, @@ -137891,7 +135484,7 @@ ] }, { - "id": 13145, + "id": 12923, "luminance": 0, "opaque": true, "replaceable": false, @@ -137902,7 +135495,7 @@ ] }, { - "id": 13146, + "id": 12924, "luminance": 0, "opaque": true, "replaceable": false, @@ -137913,7 +135506,7 @@ ] }, { - "id": 13147, + "id": 12925, "luminance": 0, "opaque": true, "replaceable": false, @@ -137924,7 +135517,7 @@ ] }, { - "id": 13148, + "id": 12926, "luminance": 0, "opaque": true, "replaceable": false, @@ -137935,7 +135528,7 @@ ] }, { - "id": 13149, + "id": 12927, "luminance": 0, "opaque": true, "replaceable": false, @@ -137946,7 +135539,7 @@ ] }, { - "id": 13150, + "id": 12928, "luminance": 0, "opaque": true, "replaceable": false, @@ -137957,7 +135550,7 @@ ] }, { - "id": 13151, + "id": 12929, "luminance": 0, "opaque": true, "replaceable": false, @@ -137968,7 +135561,7 @@ ] }, { - "id": 13152, + "id": 12930, "luminance": 0, "opaque": true, "replaceable": false, @@ -137979,7 +135572,7 @@ ] }, { - "id": 13153, + "id": 12931, "luminance": 0, "opaque": true, "replaceable": false, @@ -137989,7 +135582,7 @@ ] }, { - "id": 13154, + "id": 12932, "luminance": 0, "opaque": true, "replaceable": false, @@ -137999,7 +135592,7 @@ ] }, { - "id": 13155, + "id": 12933, "luminance": 0, "opaque": true, "replaceable": false, @@ -138010,7 +135603,7 @@ ] }, { - "id": 13156, + "id": 12934, "luminance": 0, "opaque": true, "replaceable": false, @@ -138021,7 +135614,7 @@ ] }, { - "id": 13157, + "id": 12935, "luminance": 0, "opaque": true, "replaceable": false, @@ -138032,7 +135625,7 @@ ] }, { - "id": 13158, + "id": 12936, "luminance": 0, "opaque": true, "replaceable": false, @@ -138043,7 +135636,7 @@ ] }, { - "id": 13159, + "id": 12937, "luminance": 0, "opaque": true, "replaceable": false, @@ -138053,7 +135646,7 @@ ] }, { - "id": 13160, + "id": 12938, "luminance": 0, "opaque": true, "replaceable": false, @@ -138063,7 +135656,7 @@ ] }, { - "id": 13161, + "id": 12939, "luminance": 0, "opaque": true, "replaceable": false, @@ -138073,7 +135666,7 @@ ] }, { - "id": 13162, + "id": 12940, "luminance": 0, "opaque": true, "replaceable": false, @@ -138083,7 +135676,7 @@ ] }, { - "id": 13163, + "id": 12941, "luminance": 0, "opaque": true, "replaceable": false, @@ -138093,7 +135686,7 @@ ] }, { - "id": 13164, + "id": 12942, "luminance": 0, "opaque": true, "replaceable": false, @@ -138103,7 +135696,7 @@ ] }, { - "id": 13165, + "id": 12943, "luminance": 0, "opaque": true, "replaceable": false, @@ -138114,7 +135707,7 @@ ] }, { - "id": 13166, + "id": 12944, "luminance": 0, "opaque": true, "replaceable": false, @@ -138125,7 +135718,7 @@ ] }, { - "id": 13167, + "id": 12945, "luminance": 0, "opaque": true, "replaceable": false, @@ -138136,7 +135729,7 @@ ] }, { - "id": 13168, + "id": 12946, "luminance": 0, "opaque": true, "replaceable": false, @@ -138147,7 +135740,7 @@ ] }, { - "id": 13169, + "id": 12947, "luminance": 0, "opaque": true, "replaceable": false, @@ -138158,7 +135751,7 @@ ] }, { - "id": 13170, + "id": 12948, "luminance": 0, "opaque": true, "replaceable": false, @@ -138169,7 +135762,7 @@ ] }, { - "id": 13171, + "id": 12949, "luminance": 0, "opaque": true, "replaceable": false, @@ -138180,7 +135773,7 @@ ] }, { - "id": 13172, + "id": 12950, "luminance": 0, "opaque": true, "replaceable": false, @@ -138191,7 +135784,7 @@ ] }, { - "id": 13173, + "id": 12951, "luminance": 0, "opaque": true, "replaceable": false, @@ -138201,7 +135794,7 @@ ] }, { - "id": 13174, + "id": 12952, "luminance": 0, "opaque": true, "replaceable": false, @@ -138211,7 +135804,7 @@ ] }, { - "id": 13175, + "id": 12953, "luminance": 0, "opaque": true, "replaceable": false, @@ -138222,7 +135815,7 @@ ] }, { - "id": 13176, + "id": 12954, "luminance": 0, "opaque": true, "replaceable": false, @@ -138233,7 +135826,7 @@ ] }, { - "id": 13177, + "id": 12955, "luminance": 0, "opaque": true, "replaceable": false, @@ -138244,7 +135837,7 @@ ] }, { - "id": 13178, + "id": 12956, "luminance": 0, "opaque": true, "replaceable": false, @@ -138255,7 +135848,7 @@ ] }, { - "id": 13179, + "id": 12957, "luminance": 0, "opaque": true, "replaceable": false, @@ -138265,7 +135858,7 @@ ] }, { - "id": 13180, + "id": 12958, "luminance": 0, "opaque": true, "replaceable": false, @@ -138275,7 +135868,7 @@ ] }, { - "id": 13181, + "id": 12959, "luminance": 0, "opaque": true, "replaceable": false, @@ -138285,7 +135878,7 @@ ] }, { - "id": 13182, + "id": 12960, "luminance": 0, "opaque": true, "replaceable": false, @@ -138295,7 +135888,7 @@ ] }, { - "id": 13183, + "id": 12961, "luminance": 0, "opaque": true, "replaceable": false, @@ -138305,7 +135898,7 @@ ] }, { - "id": 13184, + "id": 12962, "luminance": 0, "opaque": true, "replaceable": false, @@ -138315,7 +135908,7 @@ ] }, { - "id": 13185, + "id": 12963, "luminance": 0, "opaque": true, "replaceable": false, @@ -138326,7 +135919,7 @@ ] }, { - "id": 13186, + "id": 12964, "luminance": 0, "opaque": true, "replaceable": false, @@ -138337,7 +135930,7 @@ ] }, { - "id": 13187, + "id": 12965, "luminance": 0, "opaque": true, "replaceable": false, @@ -138348,7 +135941,7 @@ ] }, { - "id": 13188, + "id": 12966, "luminance": 0, "opaque": true, "replaceable": false, @@ -138359,7 +135952,7 @@ ] }, { - "id": 13189, + "id": 12967, "luminance": 0, "opaque": true, "replaceable": false, @@ -138370,7 +135963,7 @@ ] }, { - "id": 13190, + "id": 12968, "luminance": 0, "opaque": true, "replaceable": false, @@ -138381,7 +135974,7 @@ ] }, { - "id": 13191, + "id": 12969, "luminance": 0, "opaque": true, "replaceable": false, @@ -138392,7 +135985,7 @@ ] }, { - "id": 13192, + "id": 12970, "luminance": 0, "opaque": true, "replaceable": false, @@ -138403,7 +135996,7 @@ ] }, { - "id": 13193, + "id": 12971, "luminance": 0, "opaque": true, "replaceable": false, @@ -138413,7 +136006,7 @@ ] }, { - "id": 13194, + "id": 12972, "luminance": 0, "opaque": true, "replaceable": false, @@ -138423,7 +136016,7 @@ ] }, { - "id": 13195, + "id": 12973, "luminance": 0, "opaque": true, "replaceable": false, @@ -138434,7 +136027,7 @@ ] }, { - "id": 13196, + "id": 12974, "luminance": 0, "opaque": true, "replaceable": false, @@ -138445,7 +136038,7 @@ ] }, { - "id": 13197, + "id": 12975, "luminance": 0, "opaque": true, "replaceable": false, @@ -138456,7 +136049,7 @@ ] }, { - "id": 13198, + "id": 12976, "luminance": 0, "opaque": true, "replaceable": false, @@ -138467,7 +136060,7 @@ ] }, { - "id": 13199, + "id": 12977, "luminance": 0, "opaque": true, "replaceable": false, @@ -138477,7 +136070,7 @@ ] }, { - "id": 13200, + "id": 12978, "luminance": 0, "opaque": true, "replaceable": false, @@ -138487,7 +136080,7 @@ ] }, { - "id": 13201, + "id": 12979, "luminance": 0, "opaque": true, "replaceable": false, @@ -138497,7 +136090,7 @@ ] }, { - "id": 13202, + "id": 12980, "luminance": 0, "opaque": true, "replaceable": false, @@ -138509,9 +136102,9 @@ ] }, { - "id": 733, - "name": "end_stone_brick_stairs", - "translation_key": "block.minecraft.end_stone_brick_stairs", + "id": 734, + "name": "mossy_stone_brick_stairs", + "translation_key": "block.minecraft.mossy_stone_brick_stairs", "item_id": 601, "properties": [ { @@ -138548,10 +136141,10 @@ ] } ], - "default_state_id": 13214, + "default_state_id": 12992, "states": [ { - "id": 13203, + "id": 12981, "luminance": 0, "opaque": true, "replaceable": false, @@ -138561,7 +136154,7 @@ ] }, { - "id": 13204, + "id": 12982, "luminance": 0, "opaque": true, "replaceable": false, @@ -138571,7 +136164,7 @@ ] }, { - "id": 13205, + "id": 12983, "luminance": 0, "opaque": true, "replaceable": false, @@ -138582,7 +136175,7 @@ ] }, { - "id": 13206, + "id": 12984, "luminance": 0, "opaque": true, "replaceable": false, @@ -138593,7 +136186,7 @@ ] }, { - "id": 13207, + "id": 12985, "luminance": 0, "opaque": true, "replaceable": false, @@ -138604,7 +136197,7 @@ ] }, { - "id": 13208, + "id": 12986, "luminance": 0, "opaque": true, "replaceable": false, @@ -138615,7 +136208,7 @@ ] }, { - "id": 13209, + "id": 12987, "luminance": 0, "opaque": true, "replaceable": false, @@ -138626,7 +136219,7 @@ ] }, { - "id": 13210, + "id": 12988, "luminance": 0, "opaque": true, "replaceable": false, @@ -138637,7 +136230,7 @@ ] }, { - "id": 13211, + "id": 12989, "luminance": 0, "opaque": true, "replaceable": false, @@ -138648,7 +136241,7 @@ ] }, { - "id": 13212, + "id": 12990, "luminance": 0, "opaque": true, "replaceable": false, @@ -138659,7 +136252,7 @@ ] }, { - "id": 13213, + "id": 12991, "luminance": 0, "opaque": true, "replaceable": false, @@ -138669,7 +136262,7 @@ ] }, { - "id": 13214, + "id": 12992, "luminance": 0, "opaque": true, "replaceable": false, @@ -138679,7 +136272,7 @@ ] }, { - "id": 13215, + "id": 12993, "luminance": 0, "opaque": true, "replaceable": false, @@ -138690,7 +136283,7 @@ ] }, { - "id": 13216, + "id": 12994, "luminance": 0, "opaque": true, "replaceable": false, @@ -138701,7 +136294,7 @@ ] }, { - "id": 13217, + "id": 12995, "luminance": 0, "opaque": true, "replaceable": false, @@ -138712,7 +136305,7 @@ ] }, { - "id": 13218, + "id": 12996, "luminance": 0, "opaque": true, "replaceable": false, @@ -138723,7 +136316,7 @@ ] }, { - "id": 13219, + "id": 12997, "luminance": 0, "opaque": true, "replaceable": false, @@ -138733,7 +136326,7 @@ ] }, { - "id": 13220, + "id": 12998, "luminance": 0, "opaque": true, "replaceable": false, @@ -138743,7 +136336,7 @@ ] }, { - "id": 13221, + "id": 12999, "luminance": 0, "opaque": true, "replaceable": false, @@ -138753,7 +136346,7 @@ ] }, { - "id": 13222, + "id": 13000, "luminance": 0, "opaque": true, "replaceable": false, @@ -138763,7 +136356,7 @@ ] }, { - "id": 13223, + "id": 13001, "luminance": 0, "opaque": true, "replaceable": false, @@ -138773,7 +136366,7 @@ ] }, { - "id": 13224, + "id": 13002, "luminance": 0, "opaque": true, "replaceable": false, @@ -138783,7 +136376,7 @@ ] }, { - "id": 13225, + "id": 13003, "luminance": 0, "opaque": true, "replaceable": false, @@ -138794,7 +136387,7 @@ ] }, { - "id": 13226, + "id": 13004, "luminance": 0, "opaque": true, "replaceable": false, @@ -138805,7 +136398,7 @@ ] }, { - "id": 13227, + "id": 13005, "luminance": 0, "opaque": true, "replaceable": false, @@ -138816,7 +136409,7 @@ ] }, { - "id": 13228, + "id": 13006, "luminance": 0, "opaque": true, "replaceable": false, @@ -138827,7 +136420,7 @@ ] }, { - "id": 13229, + "id": 13007, "luminance": 0, "opaque": true, "replaceable": false, @@ -138838,7 +136431,7 @@ ] }, { - "id": 13230, + "id": 13008, "luminance": 0, "opaque": true, "replaceable": false, @@ -138849,7 +136442,7 @@ ] }, { - "id": 13231, + "id": 13009, "luminance": 0, "opaque": true, "replaceable": false, @@ -138860,7 +136453,7 @@ ] }, { - "id": 13232, + "id": 13010, "luminance": 0, "opaque": true, "replaceable": false, @@ -138871,7 +136464,7 @@ ] }, { - "id": 13233, + "id": 13011, "luminance": 0, "opaque": true, "replaceable": false, @@ -138881,7 +136474,7 @@ ] }, { - "id": 13234, + "id": 13012, "luminance": 0, "opaque": true, "replaceable": false, @@ -138891,7 +136484,7 @@ ] }, { - "id": 13235, + "id": 13013, "luminance": 0, "opaque": true, "replaceable": false, @@ -138902,7 +136495,7 @@ ] }, { - "id": 13236, + "id": 13014, "luminance": 0, "opaque": true, "replaceable": false, @@ -138913,7 +136506,7 @@ ] }, { - "id": 13237, + "id": 13015, "luminance": 0, "opaque": true, "replaceable": false, @@ -138924,7 +136517,7 @@ ] }, { - "id": 13238, + "id": 13016, "luminance": 0, "opaque": true, "replaceable": false, @@ -138935,7 +136528,7 @@ ] }, { - "id": 13239, + "id": 13017, "luminance": 0, "opaque": true, "replaceable": false, @@ -138945,7 +136538,7 @@ ] }, { - "id": 13240, + "id": 13018, "luminance": 0, "opaque": true, "replaceable": false, @@ -138955,7 +136548,7 @@ ] }, { - "id": 13241, + "id": 13019, "luminance": 0, "opaque": true, "replaceable": false, @@ -138965,7 +136558,7 @@ ] }, { - "id": 13242, + "id": 13020, "luminance": 0, "opaque": true, "replaceable": false, @@ -138975,7 +136568,7 @@ ] }, { - "id": 13243, + "id": 13021, "luminance": 0, "opaque": true, "replaceable": false, @@ -138985,7 +136578,7 @@ ] }, { - "id": 13244, + "id": 13022, "luminance": 0, "opaque": true, "replaceable": false, @@ -138995,7 +136588,7 @@ ] }, { - "id": 13245, + "id": 13023, "luminance": 0, "opaque": true, "replaceable": false, @@ -139006,7 +136599,7 @@ ] }, { - "id": 13246, + "id": 13024, "luminance": 0, "opaque": true, "replaceable": false, @@ -139017,7 +136610,7 @@ ] }, { - "id": 13247, + "id": 13025, "luminance": 0, "opaque": true, "replaceable": false, @@ -139028,7 +136621,7 @@ ] }, { - "id": 13248, + "id": 13026, "luminance": 0, "opaque": true, "replaceable": false, @@ -139039,7 +136632,7 @@ ] }, { - "id": 13249, + "id": 13027, "luminance": 0, "opaque": true, "replaceable": false, @@ -139050,7 +136643,7 @@ ] }, { - "id": 13250, + "id": 13028, "luminance": 0, "opaque": true, "replaceable": false, @@ -139061,7 +136654,7 @@ ] }, { - "id": 13251, + "id": 13029, "luminance": 0, "opaque": true, "replaceable": false, @@ -139072,7 +136665,7 @@ ] }, { - "id": 13252, + "id": 13030, "luminance": 0, "opaque": true, "replaceable": false, @@ -139083,7 +136676,7 @@ ] }, { - "id": 13253, + "id": 13031, "luminance": 0, "opaque": true, "replaceable": false, @@ -139093,7 +136686,7 @@ ] }, { - "id": 13254, + "id": 13032, "luminance": 0, "opaque": true, "replaceable": false, @@ -139103,7 +136696,7 @@ ] }, { - "id": 13255, + "id": 13033, "luminance": 0, "opaque": true, "replaceable": false, @@ -139114,7 +136707,7 @@ ] }, { - "id": 13256, + "id": 13034, "luminance": 0, "opaque": true, "replaceable": false, @@ -139125,7 +136718,7 @@ ] }, { - "id": 13257, + "id": 13035, "luminance": 0, "opaque": true, "replaceable": false, @@ -139136,7 +136729,7 @@ ] }, { - "id": 13258, + "id": 13036, "luminance": 0, "opaque": true, "replaceable": false, @@ -139147,7 +136740,7 @@ ] }, { - "id": 13259, + "id": 13037, "luminance": 0, "opaque": true, "replaceable": false, @@ -139157,7 +136750,7 @@ ] }, { - "id": 13260, + "id": 13038, "luminance": 0, "opaque": true, "replaceable": false, @@ -139167,7 +136760,7 @@ ] }, { - "id": 13261, + "id": 13039, "luminance": 0, "opaque": true, "replaceable": false, @@ -139177,7 +136770,7 @@ ] }, { - "id": 13262, + "id": 13040, "luminance": 0, "opaque": true, "replaceable": false, @@ -139187,7 +136780,7 @@ ] }, { - "id": 13263, + "id": 13041, "luminance": 0, "opaque": true, "replaceable": false, @@ -139197,7 +136790,7 @@ ] }, { - "id": 13264, + "id": 13042, "luminance": 0, "opaque": true, "replaceable": false, @@ -139207,7 +136800,7 @@ ] }, { - "id": 13265, + "id": 13043, "luminance": 0, "opaque": true, "replaceable": false, @@ -139218,7 +136811,7 @@ ] }, { - "id": 13266, + "id": 13044, "luminance": 0, "opaque": true, "replaceable": false, @@ -139229,7 +136822,7 @@ ] }, { - "id": 13267, + "id": 13045, "luminance": 0, "opaque": true, "replaceable": false, @@ -139240,7 +136833,7 @@ ] }, { - "id": 13268, + "id": 13046, "luminance": 0, "opaque": true, "replaceable": false, @@ -139251,7 +136844,7 @@ ] }, { - "id": 13269, + "id": 13047, "luminance": 0, "opaque": true, "replaceable": false, @@ -139262,7 +136855,7 @@ ] }, { - "id": 13270, + "id": 13048, "luminance": 0, "opaque": true, "replaceable": false, @@ -139273,7 +136866,7 @@ ] }, { - "id": 13271, + "id": 13049, "luminance": 0, "opaque": true, "replaceable": false, @@ -139284,7 +136877,7 @@ ] }, { - "id": 13272, + "id": 13050, "luminance": 0, "opaque": true, "replaceable": false, @@ -139295,7 +136888,7 @@ ] }, { - "id": 13273, + "id": 13051, "luminance": 0, "opaque": true, "replaceable": false, @@ -139305,7 +136898,7 @@ ] }, { - "id": 13274, + "id": 13052, "luminance": 0, "opaque": true, "replaceable": false, @@ -139315,7 +136908,7 @@ ] }, { - "id": 13275, + "id": 13053, "luminance": 0, "opaque": true, "replaceable": false, @@ -139326,7 +136919,7 @@ ] }, { - "id": 13276, + "id": 13054, "luminance": 0, "opaque": true, "replaceable": false, @@ -139337,7 +136930,7 @@ ] }, { - "id": 13277, + "id": 13055, "luminance": 0, "opaque": true, "replaceable": false, @@ -139348,7 +136941,7 @@ ] }, { - "id": 13278, + "id": 13056, "luminance": 0, "opaque": true, "replaceable": false, @@ -139359,7 +136952,7 @@ ] }, { - "id": 13279, + "id": 13057, "luminance": 0, "opaque": true, "replaceable": false, @@ -139369,7 +136962,7 @@ ] }, { - "id": 13280, + "id": 13058, "luminance": 0, "opaque": true, "replaceable": false, @@ -139379,7 +136972,7 @@ ] }, { - "id": 13281, + "id": 13059, "luminance": 0, "opaque": true, "replaceable": false, @@ -139389,7 +136982,7 @@ ] }, { - "id": 13282, + "id": 13060, "luminance": 0, "opaque": true, "replaceable": false, @@ -139401,9 +136994,9 @@ ] }, { - "id": 734, - "name": "stone_stairs", - "translation_key": "block.minecraft.stone_stairs", + "id": 735, + "name": "polished_diorite_stairs", + "translation_key": "block.minecraft.polished_diorite_stairs", "item_id": 602, "properties": [ { @@ -139440,10 +137033,10 @@ ] } ], - "default_state_id": 13294, + "default_state_id": 13072, "states": [ { - "id": 13283, + "id": 13061, "luminance": 0, "opaque": true, "replaceable": false, @@ -139453,7 +137046,7 @@ ] }, { - "id": 13284, + "id": 13062, "luminance": 0, "opaque": true, "replaceable": false, @@ -139463,7 +137056,7 @@ ] }, { - "id": 13285, + "id": 13063, "luminance": 0, "opaque": true, "replaceable": false, @@ -139474,7 +137067,7 @@ ] }, { - "id": 13286, + "id": 13064, "luminance": 0, "opaque": true, "replaceable": false, @@ -139485,7 +137078,7 @@ ] }, { - "id": 13287, + "id": 13065, "luminance": 0, "opaque": true, "replaceable": false, @@ -139496,7 +137089,7 @@ ] }, { - "id": 13288, + "id": 13066, "luminance": 0, "opaque": true, "replaceable": false, @@ -139507,7 +137100,7 @@ ] }, { - "id": 13289, + "id": 13067, "luminance": 0, "opaque": true, "replaceable": false, @@ -139518,7 +137111,7 @@ ] }, { - "id": 13290, + "id": 13068, "luminance": 0, "opaque": true, "replaceable": false, @@ -139529,7 +137122,7 @@ ] }, { - "id": 13291, + "id": 13069, "luminance": 0, "opaque": true, "replaceable": false, @@ -139540,7 +137133,7 @@ ] }, { - "id": 13292, + "id": 13070, "luminance": 0, "opaque": true, "replaceable": false, @@ -139551,7 +137144,7 @@ ] }, { - "id": 13293, + "id": 13071, "luminance": 0, "opaque": true, "replaceable": false, @@ -139561,7 +137154,7 @@ ] }, { - "id": 13294, + "id": 13072, "luminance": 0, "opaque": true, "replaceable": false, @@ -139571,7 +137164,7 @@ ] }, { - "id": 13295, + "id": 13073, "luminance": 0, "opaque": true, "replaceable": false, @@ -139582,7 +137175,7 @@ ] }, { - "id": 13296, + "id": 13074, "luminance": 0, "opaque": true, "replaceable": false, @@ -139593,7 +137186,7 @@ ] }, { - "id": 13297, + "id": 13075, "luminance": 0, "opaque": true, "replaceable": false, @@ -139604,7 +137197,7 @@ ] }, { - "id": 13298, + "id": 13076, "luminance": 0, "opaque": true, "replaceable": false, @@ -139615,7 +137208,7 @@ ] }, { - "id": 13299, + "id": 13077, "luminance": 0, "opaque": true, "replaceable": false, @@ -139625,7 +137218,7 @@ ] }, { - "id": 13300, + "id": 13078, "luminance": 0, "opaque": true, "replaceable": false, @@ -139635,7 +137228,7 @@ ] }, { - "id": 13301, + "id": 13079, "luminance": 0, "opaque": true, "replaceable": false, @@ -139645,7 +137238,7 @@ ] }, { - "id": 13302, + "id": 13080, "luminance": 0, "opaque": true, "replaceable": false, @@ -139655,7 +137248,7 @@ ] }, { - "id": 13303, + "id": 13081, "luminance": 0, "opaque": true, "replaceable": false, @@ -139665,7 +137258,7 @@ ] }, { - "id": 13304, + "id": 13082, "luminance": 0, "opaque": true, "replaceable": false, @@ -139675,7 +137268,7 @@ ] }, { - "id": 13305, + "id": 13083, "luminance": 0, "opaque": true, "replaceable": false, @@ -139686,7 +137279,7 @@ ] }, { - "id": 13306, + "id": 13084, "luminance": 0, "opaque": true, "replaceable": false, @@ -139697,7 +137290,7 @@ ] }, { - "id": 13307, + "id": 13085, "luminance": 0, "opaque": true, "replaceable": false, @@ -139708,7 +137301,7 @@ ] }, { - "id": 13308, + "id": 13086, "luminance": 0, "opaque": true, "replaceable": false, @@ -139719,7 +137312,7 @@ ] }, { - "id": 13309, + "id": 13087, "luminance": 0, "opaque": true, "replaceable": false, @@ -139730,7 +137323,7 @@ ] }, { - "id": 13310, + "id": 13088, "luminance": 0, "opaque": true, "replaceable": false, @@ -139741,7 +137334,7 @@ ] }, { - "id": 13311, + "id": 13089, "luminance": 0, "opaque": true, "replaceable": false, @@ -139752,7 +137345,7 @@ ] }, { - "id": 13312, + "id": 13090, "luminance": 0, "opaque": true, "replaceable": false, @@ -139763,7 +137356,7 @@ ] }, { - "id": 13313, + "id": 13091, "luminance": 0, "opaque": true, "replaceable": false, @@ -139773,7 +137366,7 @@ ] }, { - "id": 13314, + "id": 13092, "luminance": 0, "opaque": true, "replaceable": false, @@ -139783,7 +137376,7 @@ ] }, { - "id": 13315, + "id": 13093, "luminance": 0, "opaque": true, "replaceable": false, @@ -139794,7 +137387,7 @@ ] }, { - "id": 13316, + "id": 13094, "luminance": 0, "opaque": true, "replaceable": false, @@ -139805,7 +137398,7 @@ ] }, { - "id": 13317, + "id": 13095, "luminance": 0, "opaque": true, "replaceable": false, @@ -139816,7 +137409,7 @@ ] }, { - "id": 13318, + "id": 13096, "luminance": 0, "opaque": true, "replaceable": false, @@ -139827,7 +137420,7 @@ ] }, { - "id": 13319, + "id": 13097, "luminance": 0, "opaque": true, "replaceable": false, @@ -139837,7 +137430,7 @@ ] }, { - "id": 13320, + "id": 13098, "luminance": 0, "opaque": true, "replaceable": false, @@ -139847,7 +137440,7 @@ ] }, { - "id": 13321, + "id": 13099, "luminance": 0, "opaque": true, "replaceable": false, @@ -139857,7 +137450,7 @@ ] }, { - "id": 13322, + "id": 13100, "luminance": 0, "opaque": true, "replaceable": false, @@ -139867,7 +137460,7 @@ ] }, { - "id": 13323, + "id": 13101, "luminance": 0, "opaque": true, "replaceable": false, @@ -139877,7 +137470,7 @@ ] }, { - "id": 13324, + "id": 13102, "luminance": 0, "opaque": true, "replaceable": false, @@ -139887,7 +137480,7 @@ ] }, { - "id": 13325, + "id": 13103, "luminance": 0, "opaque": true, "replaceable": false, @@ -139898,7 +137491,7 @@ ] }, { - "id": 13326, + "id": 13104, "luminance": 0, "opaque": true, "replaceable": false, @@ -139909,7 +137502,7 @@ ] }, { - "id": 13327, + "id": 13105, "luminance": 0, "opaque": true, "replaceable": false, @@ -139920,7 +137513,7 @@ ] }, { - "id": 13328, + "id": 13106, "luminance": 0, "opaque": true, "replaceable": false, @@ -139931,7 +137524,7 @@ ] }, { - "id": 13329, + "id": 13107, "luminance": 0, "opaque": true, "replaceable": false, @@ -139942,7 +137535,7 @@ ] }, { - "id": 13330, + "id": 13108, "luminance": 0, "opaque": true, "replaceable": false, @@ -139953,7 +137546,7 @@ ] }, { - "id": 13331, + "id": 13109, "luminance": 0, "opaque": true, "replaceable": false, @@ -139964,7 +137557,7 @@ ] }, { - "id": 13332, + "id": 13110, "luminance": 0, "opaque": true, "replaceable": false, @@ -139975,7 +137568,7 @@ ] }, { - "id": 13333, + "id": 13111, "luminance": 0, "opaque": true, "replaceable": false, @@ -139985,7 +137578,7 @@ ] }, { - "id": 13334, + "id": 13112, "luminance": 0, "opaque": true, "replaceable": false, @@ -139995,7 +137588,7 @@ ] }, { - "id": 13335, + "id": 13113, "luminance": 0, "opaque": true, "replaceable": false, @@ -140006,7 +137599,7 @@ ] }, { - "id": 13336, + "id": 13114, "luminance": 0, "opaque": true, "replaceable": false, @@ -140017,7 +137610,7 @@ ] }, { - "id": 13337, + "id": 13115, "luminance": 0, "opaque": true, "replaceable": false, @@ -140028,7 +137621,7 @@ ] }, { - "id": 13338, + "id": 13116, "luminance": 0, "opaque": true, "replaceable": false, @@ -140039,7 +137632,7 @@ ] }, { - "id": 13339, + "id": 13117, "luminance": 0, "opaque": true, "replaceable": false, @@ -140049,7 +137642,7 @@ ] }, { - "id": 13340, + "id": 13118, "luminance": 0, "opaque": true, "replaceable": false, @@ -140059,7 +137652,7 @@ ] }, { - "id": 13341, + "id": 13119, "luminance": 0, "opaque": true, "replaceable": false, @@ -140069,7 +137662,7 @@ ] }, { - "id": 13342, + "id": 13120, "luminance": 0, "opaque": true, "replaceable": false, @@ -140079,7 +137672,7 @@ ] }, { - "id": 13343, + "id": 13121, "luminance": 0, "opaque": true, "replaceable": false, @@ -140089,7 +137682,7 @@ ] }, { - "id": 13344, + "id": 13122, "luminance": 0, "opaque": true, "replaceable": false, @@ -140099,7 +137692,7 @@ ] }, { - "id": 13345, + "id": 13123, "luminance": 0, "opaque": true, "replaceable": false, @@ -140110,7 +137703,7 @@ ] }, { - "id": 13346, + "id": 13124, "luminance": 0, "opaque": true, "replaceable": false, @@ -140121,7 +137714,7 @@ ] }, { - "id": 13347, + "id": 13125, "luminance": 0, "opaque": true, "replaceable": false, @@ -140132,7 +137725,7 @@ ] }, { - "id": 13348, + "id": 13126, "luminance": 0, "opaque": true, "replaceable": false, @@ -140143,7 +137736,7 @@ ] }, { - "id": 13349, + "id": 13127, "luminance": 0, "opaque": true, "replaceable": false, @@ -140154,7 +137747,7 @@ ] }, { - "id": 13350, + "id": 13128, "luminance": 0, "opaque": true, "replaceable": false, @@ -140165,7 +137758,7 @@ ] }, { - "id": 13351, + "id": 13129, "luminance": 0, "opaque": true, "replaceable": false, @@ -140176,7 +137769,7 @@ ] }, { - "id": 13352, + "id": 13130, "luminance": 0, "opaque": true, "replaceable": false, @@ -140187,7 +137780,7 @@ ] }, { - "id": 13353, + "id": 13131, "luminance": 0, "opaque": true, "replaceable": false, @@ -140197,7 +137790,7 @@ ] }, { - "id": 13354, + "id": 13132, "luminance": 0, "opaque": true, "replaceable": false, @@ -140207,7 +137800,7 @@ ] }, { - "id": 13355, + "id": 13133, "luminance": 0, "opaque": true, "replaceable": false, @@ -140218,7 +137811,7 @@ ] }, { - "id": 13356, + "id": 13134, "luminance": 0, "opaque": true, "replaceable": false, @@ -140229,7 +137822,7 @@ ] }, { - "id": 13357, + "id": 13135, "luminance": 0, "opaque": true, "replaceable": false, @@ -140240,7 +137833,7 @@ ] }, { - "id": 13358, + "id": 13136, "luminance": 0, "opaque": true, "replaceable": false, @@ -140251,7 +137844,7 @@ ] }, { - "id": 13359, + "id": 13137, "luminance": 0, "opaque": true, "replaceable": false, @@ -140261,7 +137854,7 @@ ] }, { - "id": 13360, + "id": 13138, "luminance": 0, "opaque": true, "replaceable": false, @@ -140271,7 +137864,7 @@ ] }, { - "id": 13361, + "id": 13139, "luminance": 0, "opaque": true, "replaceable": false, @@ -140281,7 +137874,7 @@ ] }, { - "id": 13362, + "id": 13140, "luminance": 0, "opaque": true, "replaceable": false, @@ -140293,9 +137886,9 @@ ] }, { - "id": 735, - "name": "smooth_sandstone_stairs", - "translation_key": "block.minecraft.smooth_sandstone_stairs", + "id": 736, + "name": "mossy_cobblestone_stairs", + "translation_key": "block.minecraft.mossy_cobblestone_stairs", "item_id": 603, "properties": [ { @@ -140332,10 +137925,10 @@ ] } ], - "default_state_id": 13374, + "default_state_id": 13152, "states": [ { - "id": 13363, + "id": 13141, "luminance": 0, "opaque": true, "replaceable": false, @@ -140345,7 +137938,7 @@ ] }, { - "id": 13364, + "id": 13142, "luminance": 0, "opaque": true, "replaceable": false, @@ -140355,7 +137948,7 @@ ] }, { - "id": 13365, + "id": 13143, "luminance": 0, "opaque": true, "replaceable": false, @@ -140366,7 +137959,7 @@ ] }, { - "id": 13366, + "id": 13144, "luminance": 0, "opaque": true, "replaceable": false, @@ -140377,7 +137970,7 @@ ] }, { - "id": 13367, + "id": 13145, "luminance": 0, "opaque": true, "replaceable": false, @@ -140388,7 +137981,7 @@ ] }, { - "id": 13368, + "id": 13146, "luminance": 0, "opaque": true, "replaceable": false, @@ -140399,7 +137992,7 @@ ] }, { - "id": 13369, + "id": 13147, "luminance": 0, "opaque": true, "replaceable": false, @@ -140410,7 +138003,7 @@ ] }, { - "id": 13370, + "id": 13148, "luminance": 0, "opaque": true, "replaceable": false, @@ -140421,7 +138014,7 @@ ] }, { - "id": 13371, + "id": 13149, "luminance": 0, "opaque": true, "replaceable": false, @@ -140432,7 +138025,7 @@ ] }, { - "id": 13372, + "id": 13150, "luminance": 0, "opaque": true, "replaceable": false, @@ -140443,7 +138036,7 @@ ] }, { - "id": 13373, + "id": 13151, "luminance": 0, "opaque": true, "replaceable": false, @@ -140453,7 +138046,7 @@ ] }, { - "id": 13374, + "id": 13152, "luminance": 0, "opaque": true, "replaceable": false, @@ -140463,7 +138056,7 @@ ] }, { - "id": 13375, + "id": 13153, "luminance": 0, "opaque": true, "replaceable": false, @@ -140474,7 +138067,7 @@ ] }, { - "id": 13376, + "id": 13154, "luminance": 0, "opaque": true, "replaceable": false, @@ -140485,7 +138078,7 @@ ] }, { - "id": 13377, + "id": 13155, "luminance": 0, "opaque": true, "replaceable": false, @@ -140496,7 +138089,7 @@ ] }, { - "id": 13378, + "id": 13156, "luminance": 0, "opaque": true, "replaceable": false, @@ -140507,7 +138100,7 @@ ] }, { - "id": 13379, + "id": 13157, "luminance": 0, "opaque": true, "replaceable": false, @@ -140517,7 +138110,7 @@ ] }, { - "id": 13380, + "id": 13158, "luminance": 0, "opaque": true, "replaceable": false, @@ -140527,7 +138120,7 @@ ] }, { - "id": 13381, + "id": 13159, "luminance": 0, "opaque": true, "replaceable": false, @@ -140537,7 +138130,7 @@ ] }, { - "id": 13382, + "id": 13160, "luminance": 0, "opaque": true, "replaceable": false, @@ -140547,7 +138140,7 @@ ] }, { - "id": 13383, + "id": 13161, "luminance": 0, "opaque": true, "replaceable": false, @@ -140557,7 +138150,7 @@ ] }, { - "id": 13384, + "id": 13162, "luminance": 0, "opaque": true, "replaceable": false, @@ -140567,7 +138160,7 @@ ] }, { - "id": 13385, + "id": 13163, "luminance": 0, "opaque": true, "replaceable": false, @@ -140578,7 +138171,7 @@ ] }, { - "id": 13386, + "id": 13164, "luminance": 0, "opaque": true, "replaceable": false, @@ -140589,7 +138182,7 @@ ] }, { - "id": 13387, + "id": 13165, "luminance": 0, "opaque": true, "replaceable": false, @@ -140600,7 +138193,7 @@ ] }, { - "id": 13388, + "id": 13166, "luminance": 0, "opaque": true, "replaceable": false, @@ -140611,7 +138204,7 @@ ] }, { - "id": 13389, + "id": 13167, "luminance": 0, "opaque": true, "replaceable": false, @@ -140622,7 +138215,7 @@ ] }, { - "id": 13390, + "id": 13168, "luminance": 0, "opaque": true, "replaceable": false, @@ -140633,7 +138226,7 @@ ] }, { - "id": 13391, + "id": 13169, "luminance": 0, "opaque": true, "replaceable": false, @@ -140644,7 +138237,7 @@ ] }, { - "id": 13392, + "id": 13170, "luminance": 0, "opaque": true, "replaceable": false, @@ -140655,7 +138248,7 @@ ] }, { - "id": 13393, + "id": 13171, "luminance": 0, "opaque": true, "replaceable": false, @@ -140665,7 +138258,7 @@ ] }, { - "id": 13394, + "id": 13172, "luminance": 0, "opaque": true, "replaceable": false, @@ -140675,7 +138268,7 @@ ] }, { - "id": 13395, + "id": 13173, "luminance": 0, "opaque": true, "replaceable": false, @@ -140686,7 +138279,7 @@ ] }, { - "id": 13396, + "id": 13174, "luminance": 0, "opaque": true, "replaceable": false, @@ -140697,7 +138290,7 @@ ] }, { - "id": 13397, + "id": 13175, "luminance": 0, "opaque": true, "replaceable": false, @@ -140708,7 +138301,7 @@ ] }, { - "id": 13398, + "id": 13176, "luminance": 0, "opaque": true, "replaceable": false, @@ -140719,7 +138312,7 @@ ] }, { - "id": 13399, + "id": 13177, "luminance": 0, "opaque": true, "replaceable": false, @@ -140729,7 +138322,7 @@ ] }, { - "id": 13400, + "id": 13178, "luminance": 0, "opaque": true, "replaceable": false, @@ -140739,7 +138332,7 @@ ] }, { - "id": 13401, + "id": 13179, "luminance": 0, "opaque": true, "replaceable": false, @@ -140749,7 +138342,7 @@ ] }, { - "id": 13402, + "id": 13180, "luminance": 0, "opaque": true, "replaceable": false, @@ -140759,7 +138352,7 @@ ] }, { - "id": 13403, + "id": 13181, "luminance": 0, "opaque": true, "replaceable": false, @@ -140769,7 +138362,7 @@ ] }, { - "id": 13404, + "id": 13182, "luminance": 0, "opaque": true, "replaceable": false, @@ -140779,7 +138372,7 @@ ] }, { - "id": 13405, + "id": 13183, "luminance": 0, "opaque": true, "replaceable": false, @@ -140790,7 +138383,7 @@ ] }, { - "id": 13406, + "id": 13184, "luminance": 0, "opaque": true, "replaceable": false, @@ -140801,7 +138394,7 @@ ] }, { - "id": 13407, + "id": 13185, "luminance": 0, "opaque": true, "replaceable": false, @@ -140812,7 +138405,7 @@ ] }, { - "id": 13408, + "id": 13186, "luminance": 0, "opaque": true, "replaceable": false, @@ -140823,7 +138416,7 @@ ] }, { - "id": 13409, + "id": 13187, "luminance": 0, "opaque": true, "replaceable": false, @@ -140834,7 +138427,7 @@ ] }, { - "id": 13410, + "id": 13188, "luminance": 0, "opaque": true, "replaceable": false, @@ -140845,7 +138438,7 @@ ] }, { - "id": 13411, + "id": 13189, "luminance": 0, "opaque": true, "replaceable": false, @@ -140856,7 +138449,7 @@ ] }, { - "id": 13412, + "id": 13190, "luminance": 0, "opaque": true, "replaceable": false, @@ -140867,7 +138460,7 @@ ] }, { - "id": 13413, + "id": 13191, "luminance": 0, "opaque": true, "replaceable": false, @@ -140877,7 +138470,7 @@ ] }, { - "id": 13414, + "id": 13192, "luminance": 0, "opaque": true, "replaceable": false, @@ -140887,7 +138480,7 @@ ] }, { - "id": 13415, + "id": 13193, "luminance": 0, "opaque": true, "replaceable": false, @@ -140898,7 +138491,7 @@ ] }, { - "id": 13416, + "id": 13194, "luminance": 0, "opaque": true, "replaceable": false, @@ -140909,7 +138502,7 @@ ] }, { - "id": 13417, + "id": 13195, "luminance": 0, "opaque": true, "replaceable": false, @@ -140920,7 +138513,7 @@ ] }, { - "id": 13418, + "id": 13196, "luminance": 0, "opaque": true, "replaceable": false, @@ -140931,7 +138524,7 @@ ] }, { - "id": 13419, + "id": 13197, "luminance": 0, "opaque": true, "replaceable": false, @@ -140941,7 +138534,7 @@ ] }, { - "id": 13420, + "id": 13198, "luminance": 0, "opaque": true, "replaceable": false, @@ -140951,7 +138544,7 @@ ] }, { - "id": 13421, + "id": 13199, "luminance": 0, "opaque": true, "replaceable": false, @@ -140961,7 +138554,7 @@ ] }, { - "id": 13422, + "id": 13200, "luminance": 0, "opaque": true, "replaceable": false, @@ -140971,7 +138564,7 @@ ] }, { - "id": 13423, + "id": 13201, "luminance": 0, "opaque": true, "replaceable": false, @@ -140981,7 +138574,7 @@ ] }, { - "id": 13424, + "id": 13202, "luminance": 0, "opaque": true, "replaceable": false, @@ -140991,7 +138584,7 @@ ] }, { - "id": 13425, + "id": 13203, "luminance": 0, "opaque": true, "replaceable": false, @@ -141002,7 +138595,7 @@ ] }, { - "id": 13426, + "id": 13204, "luminance": 0, "opaque": true, "replaceable": false, @@ -141013,7 +138606,7 @@ ] }, { - "id": 13427, + "id": 13205, "luminance": 0, "opaque": true, "replaceable": false, @@ -141024,7 +138617,7 @@ ] }, { - "id": 13428, + "id": 13206, "luminance": 0, "opaque": true, "replaceable": false, @@ -141035,7 +138628,7 @@ ] }, { - "id": 13429, + "id": 13207, "luminance": 0, "opaque": true, "replaceable": false, @@ -141046,7 +138639,7 @@ ] }, { - "id": 13430, + "id": 13208, "luminance": 0, "opaque": true, "replaceable": false, @@ -141057,7 +138650,7 @@ ] }, { - "id": 13431, + "id": 13209, "luminance": 0, "opaque": true, "replaceable": false, @@ -141068,7 +138661,7 @@ ] }, { - "id": 13432, + "id": 13210, "luminance": 0, "opaque": true, "replaceable": false, @@ -141079,7 +138672,7 @@ ] }, { - "id": 13433, + "id": 13211, "luminance": 0, "opaque": true, "replaceable": false, @@ -141089,7 +138682,7 @@ ] }, { - "id": 13434, + "id": 13212, "luminance": 0, "opaque": true, "replaceable": false, @@ -141099,7 +138692,7 @@ ] }, { - "id": 13435, + "id": 13213, "luminance": 0, "opaque": true, "replaceable": false, @@ -141110,7 +138703,7 @@ ] }, { - "id": 13436, + "id": 13214, "luminance": 0, "opaque": true, "replaceable": false, @@ -141121,7 +138714,7 @@ ] }, { - "id": 13437, + "id": 13215, "luminance": 0, "opaque": true, "replaceable": false, @@ -141132,7 +138725,7 @@ ] }, { - "id": 13438, + "id": 13216, "luminance": 0, "opaque": true, "replaceable": false, @@ -141143,7 +138736,7 @@ ] }, { - "id": 13439, + "id": 13217, "luminance": 0, "opaque": true, "replaceable": false, @@ -141153,7 +138746,7 @@ ] }, { - "id": 13440, + "id": 13218, "luminance": 0, "opaque": true, "replaceable": false, @@ -141163,7 +138756,7 @@ ] }, { - "id": 13441, + "id": 13219, "luminance": 0, "opaque": true, "replaceable": false, @@ -141173,7 +138766,7 @@ ] }, { - "id": 13442, + "id": 13220, "luminance": 0, "opaque": true, "replaceable": false, @@ -141185,9 +138778,9 @@ ] }, { - "id": 736, - "name": "smooth_quartz_stairs", - "translation_key": "block.minecraft.smooth_quartz_stairs", + "id": 737, + "name": "end_stone_brick_stairs", + "translation_key": "block.minecraft.end_stone_brick_stairs", "item_id": 604, "properties": [ { @@ -141224,10 +138817,10 @@ ] } ], - "default_state_id": 13454, + "default_state_id": 13232, "states": [ { - "id": 13443, + "id": 13221, "luminance": 0, "opaque": true, "replaceable": false, @@ -141237,7 +138830,7 @@ ] }, { - "id": 13444, + "id": 13222, "luminance": 0, "opaque": true, "replaceable": false, @@ -141247,7 +138840,7 @@ ] }, { - "id": 13445, + "id": 13223, "luminance": 0, "opaque": true, "replaceable": false, @@ -141258,7 +138851,7 @@ ] }, { - "id": 13446, + "id": 13224, "luminance": 0, "opaque": true, "replaceable": false, @@ -141269,7 +138862,7 @@ ] }, { - "id": 13447, + "id": 13225, "luminance": 0, "opaque": true, "replaceable": false, @@ -141280,7 +138873,7 @@ ] }, { - "id": 13448, + "id": 13226, "luminance": 0, "opaque": true, "replaceable": false, @@ -141291,7 +138884,7 @@ ] }, { - "id": 13449, + "id": 13227, "luminance": 0, "opaque": true, "replaceable": false, @@ -141302,7 +138895,7 @@ ] }, { - "id": 13450, + "id": 13228, "luminance": 0, "opaque": true, "replaceable": false, @@ -141313,7 +138906,7 @@ ] }, { - "id": 13451, + "id": 13229, "luminance": 0, "opaque": true, "replaceable": false, @@ -141324,7 +138917,7 @@ ] }, { - "id": 13452, + "id": 13230, "luminance": 0, "opaque": true, "replaceable": false, @@ -141335,7 +138928,7 @@ ] }, { - "id": 13453, + "id": 13231, "luminance": 0, "opaque": true, "replaceable": false, @@ -141345,7 +138938,7 @@ ] }, { - "id": 13454, + "id": 13232, "luminance": 0, "opaque": true, "replaceable": false, @@ -141355,7 +138948,7 @@ ] }, { - "id": 13455, + "id": 13233, "luminance": 0, "opaque": true, "replaceable": false, @@ -141366,7 +138959,7 @@ ] }, { - "id": 13456, + "id": 13234, "luminance": 0, "opaque": true, "replaceable": false, @@ -141377,7 +138970,7 @@ ] }, { - "id": 13457, + "id": 13235, "luminance": 0, "opaque": true, "replaceable": false, @@ -141388,7 +138981,7 @@ ] }, { - "id": 13458, + "id": 13236, "luminance": 0, "opaque": true, "replaceable": false, @@ -141399,7 +138992,7 @@ ] }, { - "id": 13459, + "id": 13237, "luminance": 0, "opaque": true, "replaceable": false, @@ -141409,7 +139002,7 @@ ] }, { - "id": 13460, + "id": 13238, "luminance": 0, "opaque": true, "replaceable": false, @@ -141419,7 +139012,7 @@ ] }, { - "id": 13461, + "id": 13239, "luminance": 0, "opaque": true, "replaceable": false, @@ -141429,7 +139022,7 @@ ] }, { - "id": 13462, + "id": 13240, "luminance": 0, "opaque": true, "replaceable": false, @@ -141439,7 +139032,7 @@ ] }, { - "id": 13463, + "id": 13241, "luminance": 0, "opaque": true, "replaceable": false, @@ -141449,7 +139042,7 @@ ] }, { - "id": 13464, + "id": 13242, "luminance": 0, "opaque": true, "replaceable": false, @@ -141459,7 +139052,7 @@ ] }, { - "id": 13465, + "id": 13243, "luminance": 0, "opaque": true, "replaceable": false, @@ -141470,7 +139063,7 @@ ] }, { - "id": 13466, + "id": 13244, "luminance": 0, "opaque": true, "replaceable": false, @@ -141481,7 +139074,7 @@ ] }, { - "id": 13467, + "id": 13245, "luminance": 0, "opaque": true, "replaceable": false, @@ -141492,7 +139085,7 @@ ] }, { - "id": 13468, + "id": 13246, "luminance": 0, "opaque": true, "replaceable": false, @@ -141503,7 +139096,7 @@ ] }, { - "id": 13469, + "id": 13247, "luminance": 0, "opaque": true, "replaceable": false, @@ -141514,7 +139107,7 @@ ] }, { - "id": 13470, + "id": 13248, "luminance": 0, "opaque": true, "replaceable": false, @@ -141525,7 +139118,7 @@ ] }, { - "id": 13471, + "id": 13249, "luminance": 0, "opaque": true, "replaceable": false, @@ -141536,7 +139129,7 @@ ] }, { - "id": 13472, + "id": 13250, "luminance": 0, "opaque": true, "replaceable": false, @@ -141547,7 +139140,7 @@ ] }, { - "id": 13473, + "id": 13251, "luminance": 0, "opaque": true, "replaceable": false, @@ -141557,7 +139150,7 @@ ] }, { - "id": 13474, + "id": 13252, "luminance": 0, "opaque": true, "replaceable": false, @@ -141567,7 +139160,7 @@ ] }, { - "id": 13475, + "id": 13253, "luminance": 0, "opaque": true, "replaceable": false, @@ -141578,7 +139171,7 @@ ] }, { - "id": 13476, + "id": 13254, "luminance": 0, "opaque": true, "replaceable": false, @@ -141589,7 +139182,7 @@ ] }, { - "id": 13477, + "id": 13255, "luminance": 0, "opaque": true, "replaceable": false, @@ -141600,7 +139193,7 @@ ] }, { - "id": 13478, + "id": 13256, "luminance": 0, "opaque": true, "replaceable": false, @@ -141611,7 +139204,7 @@ ] }, { - "id": 13479, + "id": 13257, "luminance": 0, "opaque": true, "replaceable": false, @@ -141621,7 +139214,7 @@ ] }, { - "id": 13480, + "id": 13258, "luminance": 0, "opaque": true, "replaceable": false, @@ -141631,7 +139224,7 @@ ] }, { - "id": 13481, + "id": 13259, "luminance": 0, "opaque": true, "replaceable": false, @@ -141641,7 +139234,7 @@ ] }, { - "id": 13482, + "id": 13260, "luminance": 0, "opaque": true, "replaceable": false, @@ -141651,7 +139244,7 @@ ] }, { - "id": 13483, + "id": 13261, "luminance": 0, "opaque": true, "replaceable": false, @@ -141661,7 +139254,7 @@ ] }, { - "id": 13484, + "id": 13262, "luminance": 0, "opaque": true, "replaceable": false, @@ -141671,7 +139264,7 @@ ] }, { - "id": 13485, + "id": 13263, "luminance": 0, "opaque": true, "replaceable": false, @@ -141682,7 +139275,7 @@ ] }, { - "id": 13486, + "id": 13264, "luminance": 0, "opaque": true, "replaceable": false, @@ -141693,7 +139286,7 @@ ] }, { - "id": 13487, + "id": 13265, "luminance": 0, "opaque": true, "replaceable": false, @@ -141704,7 +139297,7 @@ ] }, { - "id": 13488, + "id": 13266, "luminance": 0, "opaque": true, "replaceable": false, @@ -141715,7 +139308,7 @@ ] }, { - "id": 13489, + "id": 13267, "luminance": 0, "opaque": true, "replaceable": false, @@ -141726,7 +139319,7 @@ ] }, { - "id": 13490, + "id": 13268, "luminance": 0, "opaque": true, "replaceable": false, @@ -141737,7 +139330,7 @@ ] }, { - "id": 13491, + "id": 13269, "luminance": 0, "opaque": true, "replaceable": false, @@ -141748,7 +139341,7 @@ ] }, { - "id": 13492, + "id": 13270, "luminance": 0, "opaque": true, "replaceable": false, @@ -141759,7 +139352,7 @@ ] }, { - "id": 13493, + "id": 13271, "luminance": 0, "opaque": true, "replaceable": false, @@ -141769,7 +139362,7 @@ ] }, { - "id": 13494, + "id": 13272, "luminance": 0, "opaque": true, "replaceable": false, @@ -141779,7 +139372,7 @@ ] }, { - "id": 13495, + "id": 13273, "luminance": 0, "opaque": true, "replaceable": false, @@ -141790,7 +139383,7 @@ ] }, { - "id": 13496, + "id": 13274, "luminance": 0, "opaque": true, "replaceable": false, @@ -141801,7 +139394,7 @@ ] }, { - "id": 13497, + "id": 13275, "luminance": 0, "opaque": true, "replaceable": false, @@ -141812,7 +139405,7 @@ ] }, { - "id": 13498, + "id": 13276, "luminance": 0, "opaque": true, "replaceable": false, @@ -141823,7 +139416,7 @@ ] }, { - "id": 13499, + "id": 13277, "luminance": 0, "opaque": true, "replaceable": false, @@ -141833,7 +139426,7 @@ ] }, { - "id": 13500, + "id": 13278, "luminance": 0, "opaque": true, "replaceable": false, @@ -141843,7 +139436,7 @@ ] }, { - "id": 13501, + "id": 13279, "luminance": 0, "opaque": true, "replaceable": false, @@ -141853,7 +139446,7 @@ ] }, { - "id": 13502, + "id": 13280, "luminance": 0, "opaque": true, "replaceable": false, @@ -141863,7 +139456,7 @@ ] }, { - "id": 13503, + "id": 13281, "luminance": 0, "opaque": true, "replaceable": false, @@ -141873,7 +139466,7 @@ ] }, { - "id": 13504, + "id": 13282, "luminance": 0, "opaque": true, "replaceable": false, @@ -141883,7 +139476,7 @@ ] }, { - "id": 13505, + "id": 13283, "luminance": 0, "opaque": true, "replaceable": false, @@ -141894,7 +139487,7 @@ ] }, { - "id": 13506, + "id": 13284, "luminance": 0, "opaque": true, "replaceable": false, @@ -141905,7 +139498,7 @@ ] }, { - "id": 13507, + "id": 13285, "luminance": 0, "opaque": true, "replaceable": false, @@ -141916,7 +139509,7 @@ ] }, { - "id": 13508, + "id": 13286, "luminance": 0, "opaque": true, "replaceable": false, @@ -141927,7 +139520,7 @@ ] }, { - "id": 13509, + "id": 13287, "luminance": 0, "opaque": true, "replaceable": false, @@ -141938,7 +139531,7 @@ ] }, { - "id": 13510, + "id": 13288, "luminance": 0, "opaque": true, "replaceable": false, @@ -141949,7 +139542,7 @@ ] }, { - "id": 13511, + "id": 13289, "luminance": 0, "opaque": true, "replaceable": false, @@ -141960,7 +139553,7 @@ ] }, { - "id": 13512, + "id": 13290, "luminance": 0, "opaque": true, "replaceable": false, @@ -141971,7 +139564,7 @@ ] }, { - "id": 13513, + "id": 13291, "luminance": 0, "opaque": true, "replaceable": false, @@ -141981,7 +139574,7 @@ ] }, { - "id": 13514, + "id": 13292, "luminance": 0, "opaque": true, "replaceable": false, @@ -141991,7 +139584,7 @@ ] }, { - "id": 13515, + "id": 13293, "luminance": 0, "opaque": true, "replaceable": false, @@ -142002,7 +139595,7 @@ ] }, { - "id": 13516, + "id": 13294, "luminance": 0, "opaque": true, "replaceable": false, @@ -142013,7 +139606,7 @@ ] }, { - "id": 13517, + "id": 13295, "luminance": 0, "opaque": true, "replaceable": false, @@ -142024,7 +139617,7 @@ ] }, { - "id": 13518, + "id": 13296, "luminance": 0, "opaque": true, "replaceable": false, @@ -142035,7 +139628,7 @@ ] }, { - "id": 13519, + "id": 13297, "luminance": 0, "opaque": true, "replaceable": false, @@ -142045,7 +139638,7 @@ ] }, { - "id": 13520, + "id": 13298, "luminance": 0, "opaque": true, "replaceable": false, @@ -142055,7 +139648,7 @@ ] }, { - "id": 13521, + "id": 13299, "luminance": 0, "opaque": true, "replaceable": false, @@ -142065,7 +139658,7 @@ ] }, { - "id": 13522, + "id": 13300, "luminance": 0, "opaque": true, "replaceable": false, @@ -142077,9 +139670,9 @@ ] }, { - "id": 737, - "name": "granite_stairs", - "translation_key": "block.minecraft.granite_stairs", + "id": 738, + "name": "stone_stairs", + "translation_key": "block.minecraft.stone_stairs", "item_id": 605, "properties": [ { @@ -142116,10 +139709,10 @@ ] } ], - "default_state_id": 13534, + "default_state_id": 13312, "states": [ { - "id": 13523, + "id": 13301, "luminance": 0, "opaque": true, "replaceable": false, @@ -142129,7 +139722,7 @@ ] }, { - "id": 13524, + "id": 13302, "luminance": 0, "opaque": true, "replaceable": false, @@ -142139,7 +139732,7 @@ ] }, { - "id": 13525, + "id": 13303, "luminance": 0, "opaque": true, "replaceable": false, @@ -142150,7 +139743,7 @@ ] }, { - "id": 13526, + "id": 13304, "luminance": 0, "opaque": true, "replaceable": false, @@ -142161,7 +139754,7 @@ ] }, { - "id": 13527, + "id": 13305, "luminance": 0, "opaque": true, "replaceable": false, @@ -142172,7 +139765,7 @@ ] }, { - "id": 13528, + "id": 13306, "luminance": 0, "opaque": true, "replaceable": false, @@ -142183,7 +139776,7 @@ ] }, { - "id": 13529, + "id": 13307, "luminance": 0, "opaque": true, "replaceable": false, @@ -142194,7 +139787,7 @@ ] }, { - "id": 13530, + "id": 13308, "luminance": 0, "opaque": true, "replaceable": false, @@ -142205,7 +139798,7 @@ ] }, { - "id": 13531, + "id": 13309, "luminance": 0, "opaque": true, "replaceable": false, @@ -142216,7 +139809,7 @@ ] }, { - "id": 13532, + "id": 13310, "luminance": 0, "opaque": true, "replaceable": false, @@ -142227,7 +139820,7 @@ ] }, { - "id": 13533, + "id": 13311, "luminance": 0, "opaque": true, "replaceable": false, @@ -142237,7 +139830,7 @@ ] }, { - "id": 13534, + "id": 13312, "luminance": 0, "opaque": true, "replaceable": false, @@ -142247,7 +139840,7 @@ ] }, { - "id": 13535, + "id": 13313, "luminance": 0, "opaque": true, "replaceable": false, @@ -142258,7 +139851,7 @@ ] }, { - "id": 13536, + "id": 13314, "luminance": 0, "opaque": true, "replaceable": false, @@ -142269,7 +139862,7 @@ ] }, { - "id": 13537, + "id": 13315, "luminance": 0, "opaque": true, "replaceable": false, @@ -142280,7 +139873,7 @@ ] }, { - "id": 13538, + "id": 13316, "luminance": 0, "opaque": true, "replaceable": false, @@ -142291,7 +139884,7 @@ ] }, { - "id": 13539, + "id": 13317, "luminance": 0, "opaque": true, "replaceable": false, @@ -142301,7 +139894,7 @@ ] }, { - "id": 13540, + "id": 13318, "luminance": 0, "opaque": true, "replaceable": false, @@ -142311,7 +139904,7 @@ ] }, { - "id": 13541, + "id": 13319, "luminance": 0, "opaque": true, "replaceable": false, @@ -142321,7 +139914,7 @@ ] }, { - "id": 13542, + "id": 13320, "luminance": 0, "opaque": true, "replaceable": false, @@ -142331,7 +139924,7 @@ ] }, { - "id": 13543, + "id": 13321, "luminance": 0, "opaque": true, "replaceable": false, @@ -142341,7 +139934,7 @@ ] }, { - "id": 13544, + "id": 13322, "luminance": 0, "opaque": true, "replaceable": false, @@ -142351,7 +139944,7 @@ ] }, { - "id": 13545, + "id": 13323, "luminance": 0, "opaque": true, "replaceable": false, @@ -142362,7 +139955,7 @@ ] }, { - "id": 13546, + "id": 13324, "luminance": 0, "opaque": true, "replaceable": false, @@ -142373,7 +139966,7 @@ ] }, { - "id": 13547, + "id": 13325, "luminance": 0, "opaque": true, "replaceable": false, @@ -142384,7 +139977,7 @@ ] }, { - "id": 13548, + "id": 13326, "luminance": 0, "opaque": true, "replaceable": false, @@ -142395,7 +139988,7 @@ ] }, { - "id": 13549, + "id": 13327, "luminance": 0, "opaque": true, "replaceable": false, @@ -142406,7 +139999,7 @@ ] }, { - "id": 13550, + "id": 13328, "luminance": 0, "opaque": true, "replaceable": false, @@ -142417,7 +140010,7 @@ ] }, { - "id": 13551, + "id": 13329, "luminance": 0, "opaque": true, "replaceable": false, @@ -142428,7 +140021,7 @@ ] }, { - "id": 13552, + "id": 13330, "luminance": 0, "opaque": true, "replaceable": false, @@ -142439,7 +140032,7 @@ ] }, { - "id": 13553, + "id": 13331, "luminance": 0, "opaque": true, "replaceable": false, @@ -142449,7 +140042,7 @@ ] }, { - "id": 13554, + "id": 13332, "luminance": 0, "opaque": true, "replaceable": false, @@ -142459,7 +140052,7 @@ ] }, { - "id": 13555, + "id": 13333, "luminance": 0, "opaque": true, "replaceable": false, @@ -142470,7 +140063,7 @@ ] }, { - "id": 13556, + "id": 13334, "luminance": 0, "opaque": true, "replaceable": false, @@ -142481,7 +140074,7 @@ ] }, { - "id": 13557, + "id": 13335, "luminance": 0, "opaque": true, "replaceable": false, @@ -142492,7 +140085,7 @@ ] }, { - "id": 13558, + "id": 13336, "luminance": 0, "opaque": true, "replaceable": false, @@ -142503,7 +140096,7 @@ ] }, { - "id": 13559, + "id": 13337, "luminance": 0, "opaque": true, "replaceable": false, @@ -142513,7 +140106,7 @@ ] }, { - "id": 13560, + "id": 13338, "luminance": 0, "opaque": true, "replaceable": false, @@ -142523,7 +140116,7 @@ ] }, { - "id": 13561, + "id": 13339, "luminance": 0, "opaque": true, "replaceable": false, @@ -142533,7 +140126,7 @@ ] }, { - "id": 13562, + "id": 13340, "luminance": 0, "opaque": true, "replaceable": false, @@ -142543,7 +140136,7 @@ ] }, { - "id": 13563, + "id": 13341, "luminance": 0, "opaque": true, "replaceable": false, @@ -142553,7 +140146,7 @@ ] }, { - "id": 13564, + "id": 13342, "luminance": 0, "opaque": true, "replaceable": false, @@ -142563,7 +140156,7 @@ ] }, { - "id": 13565, + "id": 13343, "luminance": 0, "opaque": true, "replaceable": false, @@ -142574,7 +140167,7 @@ ] }, { - "id": 13566, + "id": 13344, "luminance": 0, "opaque": true, "replaceable": false, @@ -142585,7 +140178,7 @@ ] }, { - "id": 13567, + "id": 13345, "luminance": 0, "opaque": true, "replaceable": false, @@ -142596,7 +140189,7 @@ ] }, { - "id": 13568, + "id": 13346, "luminance": 0, "opaque": true, "replaceable": false, @@ -142607,7 +140200,7 @@ ] }, { - "id": 13569, + "id": 13347, "luminance": 0, "opaque": true, "replaceable": false, @@ -142618,7 +140211,7 @@ ] }, { - "id": 13570, + "id": 13348, "luminance": 0, "opaque": true, "replaceable": false, @@ -142629,7 +140222,7 @@ ] }, { - "id": 13571, + "id": 13349, "luminance": 0, "opaque": true, "replaceable": false, @@ -142640,7 +140233,7 @@ ] }, { - "id": 13572, + "id": 13350, "luminance": 0, "opaque": true, "replaceable": false, @@ -142651,7 +140244,7 @@ ] }, { - "id": 13573, + "id": 13351, "luminance": 0, "opaque": true, "replaceable": false, @@ -142661,7 +140254,7 @@ ] }, { - "id": 13574, + "id": 13352, "luminance": 0, "opaque": true, "replaceable": false, @@ -142671,7 +140264,7 @@ ] }, { - "id": 13575, + "id": 13353, "luminance": 0, "opaque": true, "replaceable": false, @@ -142682,7 +140275,7 @@ ] }, { - "id": 13576, + "id": 13354, "luminance": 0, "opaque": true, "replaceable": false, @@ -142693,7 +140286,7 @@ ] }, { - "id": 13577, + "id": 13355, "luminance": 0, "opaque": true, "replaceable": false, @@ -142704,7 +140297,7 @@ ] }, { - "id": 13578, + "id": 13356, "luminance": 0, "opaque": true, "replaceable": false, @@ -142715,7 +140308,7 @@ ] }, { - "id": 13579, + "id": 13357, "luminance": 0, "opaque": true, "replaceable": false, @@ -142725,7 +140318,7 @@ ] }, { - "id": 13580, + "id": 13358, "luminance": 0, "opaque": true, "replaceable": false, @@ -142735,7 +140328,7 @@ ] }, { - "id": 13581, + "id": 13359, "luminance": 0, "opaque": true, "replaceable": false, @@ -142745,7 +140338,7 @@ ] }, { - "id": 13582, + "id": 13360, "luminance": 0, "opaque": true, "replaceable": false, @@ -142755,7 +140348,7 @@ ] }, { - "id": 13583, + "id": 13361, "luminance": 0, "opaque": true, "replaceable": false, @@ -142765,7 +140358,7 @@ ] }, { - "id": 13584, + "id": 13362, "luminance": 0, "opaque": true, "replaceable": false, @@ -142775,7 +140368,7 @@ ] }, { - "id": 13585, + "id": 13363, "luminance": 0, "opaque": true, "replaceable": false, @@ -142786,7 +140379,7 @@ ] }, { - "id": 13586, + "id": 13364, "luminance": 0, "opaque": true, "replaceable": false, @@ -142797,7 +140390,7 @@ ] }, { - "id": 13587, + "id": 13365, "luminance": 0, "opaque": true, "replaceable": false, @@ -142808,7 +140401,7 @@ ] }, { - "id": 13588, + "id": 13366, "luminance": 0, "opaque": true, "replaceable": false, @@ -142819,7 +140412,7 @@ ] }, { - "id": 13589, + "id": 13367, "luminance": 0, "opaque": true, "replaceable": false, @@ -142830,7 +140423,7 @@ ] }, { - "id": 13590, + "id": 13368, "luminance": 0, "opaque": true, "replaceable": false, @@ -142841,7 +140434,7 @@ ] }, { - "id": 13591, + "id": 13369, "luminance": 0, "opaque": true, "replaceable": false, @@ -142852,7 +140445,7 @@ ] }, { - "id": 13592, + "id": 13370, "luminance": 0, "opaque": true, "replaceable": false, @@ -142863,7 +140456,7 @@ ] }, { - "id": 13593, + "id": 13371, "luminance": 0, "opaque": true, "replaceable": false, @@ -142873,7 +140466,7 @@ ] }, { - "id": 13594, + "id": 13372, "luminance": 0, "opaque": true, "replaceable": false, @@ -142883,7 +140476,7 @@ ] }, { - "id": 13595, + "id": 13373, "luminance": 0, "opaque": true, "replaceable": false, @@ -142894,7 +140487,7 @@ ] }, { - "id": 13596, + "id": 13374, "luminance": 0, "opaque": true, "replaceable": false, @@ -142905,7 +140498,7 @@ ] }, { - "id": 13597, + "id": 13375, "luminance": 0, "opaque": true, "replaceable": false, @@ -142916,7 +140509,7 @@ ] }, { - "id": 13598, + "id": 13376, "luminance": 0, "opaque": true, "replaceable": false, @@ -142927,7 +140520,7 @@ ] }, { - "id": 13599, + "id": 13377, "luminance": 0, "opaque": true, "replaceable": false, @@ -142937,7 +140530,7 @@ ] }, { - "id": 13600, + "id": 13378, "luminance": 0, "opaque": true, "replaceable": false, @@ -142947,7 +140540,7 @@ ] }, { - "id": 13601, + "id": 13379, "luminance": 0, "opaque": true, "replaceable": false, @@ -142957,7 +140550,7 @@ ] }, { - "id": 13602, + "id": 13380, "luminance": 0, "opaque": true, "replaceable": false, @@ -142969,9 +140562,9 @@ ] }, { - "id": 738, - "name": "andesite_stairs", - "translation_key": "block.minecraft.andesite_stairs", + "id": 739, + "name": "smooth_sandstone_stairs", + "translation_key": "block.minecraft.smooth_sandstone_stairs", "item_id": 606, "properties": [ { @@ -143008,10 +140601,10 @@ ] } ], - "default_state_id": 13614, + "default_state_id": 13392, "states": [ { - "id": 13603, + "id": 13381, "luminance": 0, "opaque": true, "replaceable": false, @@ -143021,7 +140614,7 @@ ] }, { - "id": 13604, + "id": 13382, "luminance": 0, "opaque": true, "replaceable": false, @@ -143031,7 +140624,7 @@ ] }, { - "id": 13605, + "id": 13383, "luminance": 0, "opaque": true, "replaceable": false, @@ -143042,7 +140635,7 @@ ] }, { - "id": 13606, + "id": 13384, "luminance": 0, "opaque": true, "replaceable": false, @@ -143053,7 +140646,7 @@ ] }, { - "id": 13607, + "id": 13385, "luminance": 0, "opaque": true, "replaceable": false, @@ -143064,7 +140657,7 @@ ] }, { - "id": 13608, + "id": 13386, "luminance": 0, "opaque": true, "replaceable": false, @@ -143075,7 +140668,7 @@ ] }, { - "id": 13609, + "id": 13387, "luminance": 0, "opaque": true, "replaceable": false, @@ -143086,7 +140679,7 @@ ] }, { - "id": 13610, + "id": 13388, "luminance": 0, "opaque": true, "replaceable": false, @@ -143097,7 +140690,7 @@ ] }, { - "id": 13611, + "id": 13389, "luminance": 0, "opaque": true, "replaceable": false, @@ -143108,7 +140701,7 @@ ] }, { - "id": 13612, + "id": 13390, "luminance": 0, "opaque": true, "replaceable": false, @@ -143119,7 +140712,7 @@ ] }, { - "id": 13613, + "id": 13391, "luminance": 0, "opaque": true, "replaceable": false, @@ -143129,7 +140722,7 @@ ] }, { - "id": 13614, + "id": 13392, "luminance": 0, "opaque": true, "replaceable": false, @@ -143139,7 +140732,7 @@ ] }, { - "id": 13615, + "id": 13393, "luminance": 0, "opaque": true, "replaceable": false, @@ -143150,7 +140743,7 @@ ] }, { - "id": 13616, + "id": 13394, "luminance": 0, "opaque": true, "replaceable": false, @@ -143161,7 +140754,7 @@ ] }, { - "id": 13617, + "id": 13395, "luminance": 0, "opaque": true, "replaceable": false, @@ -143172,7 +140765,7 @@ ] }, { - "id": 13618, + "id": 13396, "luminance": 0, "opaque": true, "replaceable": false, @@ -143183,7 +140776,7 @@ ] }, { - "id": 13619, + "id": 13397, "luminance": 0, "opaque": true, "replaceable": false, @@ -143193,7 +140786,7 @@ ] }, { - "id": 13620, + "id": 13398, "luminance": 0, "opaque": true, "replaceable": false, @@ -143203,7 +140796,7 @@ ] }, { - "id": 13621, + "id": 13399, "luminance": 0, "opaque": true, "replaceable": false, @@ -143213,7 +140806,7 @@ ] }, { - "id": 13622, + "id": 13400, "luminance": 0, "opaque": true, "replaceable": false, @@ -143223,7 +140816,7 @@ ] }, { - "id": 13623, + "id": 13401, "luminance": 0, "opaque": true, "replaceable": false, @@ -143233,7 +140826,7 @@ ] }, { - "id": 13624, + "id": 13402, "luminance": 0, "opaque": true, "replaceable": false, @@ -143243,7 +140836,7 @@ ] }, { - "id": 13625, + "id": 13403, "luminance": 0, "opaque": true, "replaceable": false, @@ -143254,7 +140847,7 @@ ] }, { - "id": 13626, + "id": 13404, "luminance": 0, "opaque": true, "replaceable": false, @@ -143265,7 +140858,7 @@ ] }, { - "id": 13627, + "id": 13405, "luminance": 0, "opaque": true, "replaceable": false, @@ -143276,7 +140869,7 @@ ] }, { - "id": 13628, + "id": 13406, "luminance": 0, "opaque": true, "replaceable": false, @@ -143287,7 +140880,7 @@ ] }, { - "id": 13629, + "id": 13407, "luminance": 0, "opaque": true, "replaceable": false, @@ -143298,7 +140891,7 @@ ] }, { - "id": 13630, + "id": 13408, "luminance": 0, "opaque": true, "replaceable": false, @@ -143309,7 +140902,7 @@ ] }, { - "id": 13631, + "id": 13409, "luminance": 0, "opaque": true, "replaceable": false, @@ -143320,7 +140913,7 @@ ] }, { - "id": 13632, + "id": 13410, "luminance": 0, "opaque": true, "replaceable": false, @@ -143331,7 +140924,7 @@ ] }, { - "id": 13633, + "id": 13411, "luminance": 0, "opaque": true, "replaceable": false, @@ -143341,7 +140934,7 @@ ] }, { - "id": 13634, + "id": 13412, "luminance": 0, "opaque": true, "replaceable": false, @@ -143351,7 +140944,7 @@ ] }, { - "id": 13635, + "id": 13413, "luminance": 0, "opaque": true, "replaceable": false, @@ -143362,7 +140955,7 @@ ] }, { - "id": 13636, + "id": 13414, "luminance": 0, "opaque": true, "replaceable": false, @@ -143373,7 +140966,7 @@ ] }, { - "id": 13637, + "id": 13415, "luminance": 0, "opaque": true, "replaceable": false, @@ -143384,7 +140977,7 @@ ] }, { - "id": 13638, + "id": 13416, "luminance": 0, "opaque": true, "replaceable": false, @@ -143395,7 +140988,7 @@ ] }, { - "id": 13639, + "id": 13417, "luminance": 0, "opaque": true, "replaceable": false, @@ -143405,7 +140998,7 @@ ] }, { - "id": 13640, + "id": 13418, "luminance": 0, "opaque": true, "replaceable": false, @@ -143415,7 +141008,7 @@ ] }, { - "id": 13641, + "id": 13419, "luminance": 0, "opaque": true, "replaceable": false, @@ -143425,7 +141018,7 @@ ] }, { - "id": 13642, + "id": 13420, "luminance": 0, "opaque": true, "replaceable": false, @@ -143435,7 +141028,7 @@ ] }, { - "id": 13643, + "id": 13421, "luminance": 0, "opaque": true, "replaceable": false, @@ -143445,7 +141038,7 @@ ] }, { - "id": 13644, + "id": 13422, "luminance": 0, "opaque": true, "replaceable": false, @@ -143455,7 +141048,7 @@ ] }, { - "id": 13645, + "id": 13423, "luminance": 0, "opaque": true, "replaceable": false, @@ -143466,7 +141059,7 @@ ] }, { - "id": 13646, + "id": 13424, "luminance": 0, "opaque": true, "replaceable": false, @@ -143477,7 +141070,7 @@ ] }, { - "id": 13647, + "id": 13425, "luminance": 0, "opaque": true, "replaceable": false, @@ -143488,7 +141081,7 @@ ] }, { - "id": 13648, + "id": 13426, "luminance": 0, "opaque": true, "replaceable": false, @@ -143499,7 +141092,7 @@ ] }, { - "id": 13649, + "id": 13427, "luminance": 0, "opaque": true, "replaceable": false, @@ -143510,7 +141103,7 @@ ] }, { - "id": 13650, + "id": 13428, "luminance": 0, "opaque": true, "replaceable": false, @@ -143521,7 +141114,7 @@ ] }, { - "id": 13651, + "id": 13429, "luminance": 0, "opaque": true, "replaceable": false, @@ -143532,7 +141125,7 @@ ] }, { - "id": 13652, + "id": 13430, "luminance": 0, "opaque": true, "replaceable": false, @@ -143543,7 +141136,7 @@ ] }, { - "id": 13653, + "id": 13431, "luminance": 0, "opaque": true, "replaceable": false, @@ -143553,7 +141146,7 @@ ] }, { - "id": 13654, + "id": 13432, "luminance": 0, "opaque": true, "replaceable": false, @@ -143563,7 +141156,7 @@ ] }, { - "id": 13655, + "id": 13433, "luminance": 0, "opaque": true, "replaceable": false, @@ -143574,7 +141167,7 @@ ] }, { - "id": 13656, + "id": 13434, "luminance": 0, "opaque": true, "replaceable": false, @@ -143585,7 +141178,7 @@ ] }, { - "id": 13657, + "id": 13435, "luminance": 0, "opaque": true, "replaceable": false, @@ -143596,7 +141189,7 @@ ] }, { - "id": 13658, + "id": 13436, "luminance": 0, "opaque": true, "replaceable": false, @@ -143607,7 +141200,7 @@ ] }, { - "id": 13659, + "id": 13437, "luminance": 0, "opaque": true, "replaceable": false, @@ -143617,7 +141210,7 @@ ] }, { - "id": 13660, + "id": 13438, "luminance": 0, "opaque": true, "replaceable": false, @@ -143627,7 +141220,7 @@ ] }, { - "id": 13661, + "id": 13439, "luminance": 0, "opaque": true, "replaceable": false, @@ -143637,7 +141230,7 @@ ] }, { - "id": 13662, + "id": 13440, "luminance": 0, "opaque": true, "replaceable": false, @@ -143647,7 +141240,7 @@ ] }, { - "id": 13663, + "id": 13441, "luminance": 0, "opaque": true, "replaceable": false, @@ -143657,7 +141250,7 @@ ] }, { - "id": 13664, + "id": 13442, "luminance": 0, "opaque": true, "replaceable": false, @@ -143667,7 +141260,7 @@ ] }, { - "id": 13665, + "id": 13443, "luminance": 0, "opaque": true, "replaceable": false, @@ -143678,7 +141271,7 @@ ] }, { - "id": 13666, + "id": 13444, "luminance": 0, "opaque": true, "replaceable": false, @@ -143689,7 +141282,7 @@ ] }, { - "id": 13667, + "id": 13445, "luminance": 0, "opaque": true, "replaceable": false, @@ -143700,7 +141293,7 @@ ] }, { - "id": 13668, + "id": 13446, "luminance": 0, "opaque": true, "replaceable": false, @@ -143711,7 +141304,7 @@ ] }, { - "id": 13669, + "id": 13447, "luminance": 0, "opaque": true, "replaceable": false, @@ -143722,7 +141315,7 @@ ] }, { - "id": 13670, + "id": 13448, "luminance": 0, "opaque": true, "replaceable": false, @@ -143733,7 +141326,7 @@ ] }, { - "id": 13671, + "id": 13449, "luminance": 0, "opaque": true, "replaceable": false, @@ -143744,7 +141337,7 @@ ] }, { - "id": 13672, + "id": 13450, "luminance": 0, "opaque": true, "replaceable": false, @@ -143755,7 +141348,7 @@ ] }, { - "id": 13673, + "id": 13451, "luminance": 0, "opaque": true, "replaceable": false, @@ -143765,7 +141358,7 @@ ] }, { - "id": 13674, + "id": 13452, "luminance": 0, "opaque": true, "replaceable": false, @@ -143775,7 +141368,7 @@ ] }, { - "id": 13675, + "id": 13453, "luminance": 0, "opaque": true, "replaceable": false, @@ -143786,7 +141379,7 @@ ] }, { - "id": 13676, + "id": 13454, "luminance": 0, "opaque": true, "replaceable": false, @@ -143797,7 +141390,7 @@ ] }, { - "id": 13677, + "id": 13455, "luminance": 0, "opaque": true, "replaceable": false, @@ -143808,7 +141401,7 @@ ] }, { - "id": 13678, + "id": 13456, "luminance": 0, "opaque": true, "replaceable": false, @@ -143819,7 +141412,7 @@ ] }, { - "id": 13679, + "id": 13457, "luminance": 0, "opaque": true, "replaceable": false, @@ -143829,7 +141422,7 @@ ] }, { - "id": 13680, + "id": 13458, "luminance": 0, "opaque": true, "replaceable": false, @@ -143839,7 +141432,7 @@ ] }, { - "id": 13681, + "id": 13459, "luminance": 0, "opaque": true, "replaceable": false, @@ -143849,7 +141442,7 @@ ] }, { - "id": 13682, + "id": 13460, "luminance": 0, "opaque": true, "replaceable": false, @@ -143861,9 +141454,9 @@ ] }, { - "id": 739, - "name": "red_nether_brick_stairs", - "translation_key": "block.minecraft.red_nether_brick_stairs", + "id": 740, + "name": "smooth_quartz_stairs", + "translation_key": "block.minecraft.smooth_quartz_stairs", "item_id": 607, "properties": [ { @@ -143900,10 +141493,10 @@ ] } ], - "default_state_id": 13694, + "default_state_id": 13472, "states": [ { - "id": 13683, + "id": 13461, "luminance": 0, "opaque": true, "replaceable": false, @@ -143913,7 +141506,7 @@ ] }, { - "id": 13684, + "id": 13462, "luminance": 0, "opaque": true, "replaceable": false, @@ -143923,7 +141516,7 @@ ] }, { - "id": 13685, + "id": 13463, "luminance": 0, "opaque": true, "replaceable": false, @@ -143934,7 +141527,7 @@ ] }, { - "id": 13686, + "id": 13464, "luminance": 0, "opaque": true, "replaceable": false, @@ -143945,7 +141538,7 @@ ] }, { - "id": 13687, + "id": 13465, "luminance": 0, "opaque": true, "replaceable": false, @@ -143956,7 +141549,7 @@ ] }, { - "id": 13688, + "id": 13466, "luminance": 0, "opaque": true, "replaceable": false, @@ -143967,7 +141560,7 @@ ] }, { - "id": 13689, + "id": 13467, "luminance": 0, "opaque": true, "replaceable": false, @@ -143978,7 +141571,7 @@ ] }, { - "id": 13690, + "id": 13468, "luminance": 0, "opaque": true, "replaceable": false, @@ -143989,7 +141582,7 @@ ] }, { - "id": 13691, + "id": 13469, "luminance": 0, "opaque": true, "replaceable": false, @@ -144000,7 +141593,7 @@ ] }, { - "id": 13692, + "id": 13470, "luminance": 0, "opaque": true, "replaceable": false, @@ -144011,7 +141604,7 @@ ] }, { - "id": 13693, + "id": 13471, "luminance": 0, "opaque": true, "replaceable": false, @@ -144021,7 +141614,7 @@ ] }, { - "id": 13694, + "id": 13472, "luminance": 0, "opaque": true, "replaceable": false, @@ -144031,7 +141624,7 @@ ] }, { - "id": 13695, + "id": 13473, "luminance": 0, "opaque": true, "replaceable": false, @@ -144042,7 +141635,7 @@ ] }, { - "id": 13696, + "id": 13474, "luminance": 0, "opaque": true, "replaceable": false, @@ -144053,7 +141646,7 @@ ] }, { - "id": 13697, + "id": 13475, "luminance": 0, "opaque": true, "replaceable": false, @@ -144064,7 +141657,7 @@ ] }, { - "id": 13698, + "id": 13476, "luminance": 0, "opaque": true, "replaceable": false, @@ -144075,7 +141668,7 @@ ] }, { - "id": 13699, + "id": 13477, "luminance": 0, "opaque": true, "replaceable": false, @@ -144085,7 +141678,7 @@ ] }, { - "id": 13700, + "id": 13478, "luminance": 0, "opaque": true, "replaceable": false, @@ -144095,7 +141688,7 @@ ] }, { - "id": 13701, + "id": 13479, "luminance": 0, "opaque": true, "replaceable": false, @@ -144105,7 +141698,7 @@ ] }, { - "id": 13702, + "id": 13480, "luminance": 0, "opaque": true, "replaceable": false, @@ -144115,7 +141708,7 @@ ] }, { - "id": 13703, + "id": 13481, "luminance": 0, "opaque": true, "replaceable": false, @@ -144125,7 +141718,7 @@ ] }, { - "id": 13704, + "id": 13482, "luminance": 0, "opaque": true, "replaceable": false, @@ -144135,7 +141728,7 @@ ] }, { - "id": 13705, + "id": 13483, "luminance": 0, "opaque": true, "replaceable": false, @@ -144146,7 +141739,7 @@ ] }, { - "id": 13706, + "id": 13484, "luminance": 0, "opaque": true, "replaceable": false, @@ -144157,7 +141750,7 @@ ] }, { - "id": 13707, + "id": 13485, "luminance": 0, "opaque": true, "replaceable": false, @@ -144168,7 +141761,7 @@ ] }, { - "id": 13708, + "id": 13486, "luminance": 0, "opaque": true, "replaceable": false, @@ -144179,7 +141772,7 @@ ] }, { - "id": 13709, + "id": 13487, "luminance": 0, "opaque": true, "replaceable": false, @@ -144190,7 +141783,7 @@ ] }, { - "id": 13710, + "id": 13488, "luminance": 0, "opaque": true, "replaceable": false, @@ -144201,7 +141794,7 @@ ] }, { - "id": 13711, + "id": 13489, "luminance": 0, "opaque": true, "replaceable": false, @@ -144212,7 +141805,7 @@ ] }, { - "id": 13712, + "id": 13490, "luminance": 0, "opaque": true, "replaceable": false, @@ -144223,7 +141816,7 @@ ] }, { - "id": 13713, + "id": 13491, "luminance": 0, "opaque": true, "replaceable": false, @@ -144233,7 +141826,7 @@ ] }, { - "id": 13714, + "id": 13492, "luminance": 0, "opaque": true, "replaceable": false, @@ -144243,7 +141836,7 @@ ] }, { - "id": 13715, + "id": 13493, "luminance": 0, "opaque": true, "replaceable": false, @@ -144254,7 +141847,7 @@ ] }, { - "id": 13716, + "id": 13494, "luminance": 0, "opaque": true, "replaceable": false, @@ -144265,7 +141858,7 @@ ] }, { - "id": 13717, + "id": 13495, "luminance": 0, "opaque": true, "replaceable": false, @@ -144276,7 +141869,7 @@ ] }, { - "id": 13718, + "id": 13496, "luminance": 0, "opaque": true, "replaceable": false, @@ -144287,7 +141880,7 @@ ] }, { - "id": 13719, + "id": 13497, "luminance": 0, "opaque": true, "replaceable": false, @@ -144297,7 +141890,7 @@ ] }, { - "id": 13720, + "id": 13498, "luminance": 0, "opaque": true, "replaceable": false, @@ -144307,7 +141900,7 @@ ] }, { - "id": 13721, + "id": 13499, "luminance": 0, "opaque": true, "replaceable": false, @@ -144317,7 +141910,7 @@ ] }, { - "id": 13722, + "id": 13500, "luminance": 0, "opaque": true, "replaceable": false, @@ -144327,7 +141920,7 @@ ] }, { - "id": 13723, + "id": 13501, "luminance": 0, "opaque": true, "replaceable": false, @@ -144337,7 +141930,7 @@ ] }, { - "id": 13724, + "id": 13502, "luminance": 0, "opaque": true, "replaceable": false, @@ -144347,7 +141940,7 @@ ] }, { - "id": 13725, + "id": 13503, "luminance": 0, "opaque": true, "replaceable": false, @@ -144358,7 +141951,7 @@ ] }, { - "id": 13726, + "id": 13504, "luminance": 0, "opaque": true, "replaceable": false, @@ -144369,7 +141962,7 @@ ] }, { - "id": 13727, + "id": 13505, "luminance": 0, "opaque": true, "replaceable": false, @@ -144380,7 +141973,7 @@ ] }, { - "id": 13728, + "id": 13506, "luminance": 0, "opaque": true, "replaceable": false, @@ -144391,7 +141984,7 @@ ] }, { - "id": 13729, + "id": 13507, "luminance": 0, "opaque": true, "replaceable": false, @@ -144402,7 +141995,7 @@ ] }, { - "id": 13730, + "id": 13508, "luminance": 0, "opaque": true, "replaceable": false, @@ -144413,7 +142006,7 @@ ] }, { - "id": 13731, + "id": 13509, "luminance": 0, "opaque": true, "replaceable": false, @@ -144424,7 +142017,7 @@ ] }, { - "id": 13732, + "id": 13510, "luminance": 0, "opaque": true, "replaceable": false, @@ -144435,7 +142028,7 @@ ] }, { - "id": 13733, + "id": 13511, "luminance": 0, "opaque": true, "replaceable": false, @@ -144445,7 +142038,7 @@ ] }, { - "id": 13734, + "id": 13512, "luminance": 0, "opaque": true, "replaceable": false, @@ -144455,7 +142048,7 @@ ] }, { - "id": 13735, + "id": 13513, "luminance": 0, "opaque": true, "replaceable": false, @@ -144466,7 +142059,7 @@ ] }, { - "id": 13736, + "id": 13514, "luminance": 0, "opaque": true, "replaceable": false, @@ -144477,7 +142070,7 @@ ] }, { - "id": 13737, + "id": 13515, "luminance": 0, "opaque": true, "replaceable": false, @@ -144488,7 +142081,7 @@ ] }, { - "id": 13738, + "id": 13516, "luminance": 0, "opaque": true, "replaceable": false, @@ -144499,7 +142092,7 @@ ] }, { - "id": 13739, + "id": 13517, "luminance": 0, "opaque": true, "replaceable": false, @@ -144509,7 +142102,7 @@ ] }, { - "id": 13740, + "id": 13518, "luminance": 0, "opaque": true, "replaceable": false, @@ -144519,7 +142112,7 @@ ] }, { - "id": 13741, + "id": 13519, "luminance": 0, "opaque": true, "replaceable": false, @@ -144529,7 +142122,7 @@ ] }, { - "id": 13742, + "id": 13520, "luminance": 0, "opaque": true, "replaceable": false, @@ -144539,7 +142132,7 @@ ] }, { - "id": 13743, + "id": 13521, "luminance": 0, "opaque": true, "replaceable": false, @@ -144549,7 +142142,7 @@ ] }, { - "id": 13744, + "id": 13522, "luminance": 0, "opaque": true, "replaceable": false, @@ -144559,7 +142152,7 @@ ] }, { - "id": 13745, + "id": 13523, "luminance": 0, "opaque": true, "replaceable": false, @@ -144570,7 +142163,7 @@ ] }, { - "id": 13746, + "id": 13524, "luminance": 0, "opaque": true, "replaceable": false, @@ -144581,7 +142174,7 @@ ] }, { - "id": 13747, + "id": 13525, "luminance": 0, "opaque": true, "replaceable": false, @@ -144592,7 +142185,7 @@ ] }, { - "id": 13748, + "id": 13526, "luminance": 0, "opaque": true, "replaceable": false, @@ -144603,7 +142196,7 @@ ] }, { - "id": 13749, + "id": 13527, "luminance": 0, "opaque": true, "replaceable": false, @@ -144614,7 +142207,7 @@ ] }, { - "id": 13750, + "id": 13528, "luminance": 0, "opaque": true, "replaceable": false, @@ -144625,7 +142218,7 @@ ] }, { - "id": 13751, + "id": 13529, "luminance": 0, "opaque": true, "replaceable": false, @@ -144636,7 +142229,7 @@ ] }, { - "id": 13752, + "id": 13530, "luminance": 0, "opaque": true, "replaceable": false, @@ -144647,7 +142240,7 @@ ] }, { - "id": 13753, + "id": 13531, "luminance": 0, "opaque": true, "replaceable": false, @@ -144657,7 +142250,7 @@ ] }, { - "id": 13754, + "id": 13532, "luminance": 0, "opaque": true, "replaceable": false, @@ -144667,7 +142260,7 @@ ] }, { - "id": 13755, + "id": 13533, "luminance": 0, "opaque": true, "replaceable": false, @@ -144678,7 +142271,7 @@ ] }, { - "id": 13756, + "id": 13534, "luminance": 0, "opaque": true, "replaceable": false, @@ -144689,7 +142282,7 @@ ] }, { - "id": 13757, + "id": 13535, "luminance": 0, "opaque": true, "replaceable": false, @@ -144700,7 +142293,7 @@ ] }, { - "id": 13758, + "id": 13536, "luminance": 0, "opaque": true, "replaceable": false, @@ -144711,7 +142304,7 @@ ] }, { - "id": 13759, + "id": 13537, "luminance": 0, "opaque": true, "replaceable": false, @@ -144721,7 +142314,7 @@ ] }, { - "id": 13760, + "id": 13538, "luminance": 0, "opaque": true, "replaceable": false, @@ -144731,7 +142324,7 @@ ] }, { - "id": 13761, + "id": 13539, "luminance": 0, "opaque": true, "replaceable": false, @@ -144741,7 +142334,7 @@ ] }, { - "id": 13762, + "id": 13540, "luminance": 0, "opaque": true, "replaceable": false, @@ -144753,9 +142346,9 @@ ] }, { - "id": 740, - "name": "polished_andesite_stairs", - "translation_key": "block.minecraft.polished_andesite_stairs", + "id": 741, + "name": "granite_stairs", + "translation_key": "block.minecraft.granite_stairs", "item_id": 608, "properties": [ { @@ -144792,10 +142385,10 @@ ] } ], - "default_state_id": 13774, + "default_state_id": 13552, "states": [ { - "id": 13763, + "id": 13541, "luminance": 0, "opaque": true, "replaceable": false, @@ -144805,7 +142398,7 @@ ] }, { - "id": 13764, + "id": 13542, "luminance": 0, "opaque": true, "replaceable": false, @@ -144815,7 +142408,7 @@ ] }, { - "id": 13765, + "id": 13543, "luminance": 0, "opaque": true, "replaceable": false, @@ -144826,7 +142419,7 @@ ] }, { - "id": 13766, + "id": 13544, "luminance": 0, "opaque": true, "replaceable": false, @@ -144837,7 +142430,7 @@ ] }, { - "id": 13767, + "id": 13545, "luminance": 0, "opaque": true, "replaceable": false, @@ -144848,7 +142441,7 @@ ] }, { - "id": 13768, + "id": 13546, "luminance": 0, "opaque": true, "replaceable": false, @@ -144859,7 +142452,7 @@ ] }, { - "id": 13769, + "id": 13547, "luminance": 0, "opaque": true, "replaceable": false, @@ -144870,7 +142463,7 @@ ] }, { - "id": 13770, + "id": 13548, "luminance": 0, "opaque": true, "replaceable": false, @@ -144881,7 +142474,7 @@ ] }, { - "id": 13771, + "id": 13549, "luminance": 0, "opaque": true, "replaceable": false, @@ -144892,7 +142485,7 @@ ] }, { - "id": 13772, + "id": 13550, "luminance": 0, "opaque": true, "replaceable": false, @@ -144903,7 +142496,7 @@ ] }, { - "id": 13773, + "id": 13551, "luminance": 0, "opaque": true, "replaceable": false, @@ -144913,7 +142506,7 @@ ] }, { - "id": 13774, + "id": 13552, "luminance": 0, "opaque": true, "replaceable": false, @@ -144923,7 +142516,7 @@ ] }, { - "id": 13775, + "id": 13553, "luminance": 0, "opaque": true, "replaceable": false, @@ -144934,7 +142527,7 @@ ] }, { - "id": 13776, + "id": 13554, "luminance": 0, "opaque": true, "replaceable": false, @@ -144945,7 +142538,7 @@ ] }, { - "id": 13777, + "id": 13555, "luminance": 0, "opaque": true, "replaceable": false, @@ -144956,7 +142549,7 @@ ] }, { - "id": 13778, + "id": 13556, "luminance": 0, "opaque": true, "replaceable": false, @@ -144967,7 +142560,7 @@ ] }, { - "id": 13779, + "id": 13557, "luminance": 0, "opaque": true, "replaceable": false, @@ -144977,7 +142570,7 @@ ] }, { - "id": 13780, + "id": 13558, "luminance": 0, "opaque": true, "replaceable": false, @@ -144987,7 +142580,7 @@ ] }, { - "id": 13781, + "id": 13559, "luminance": 0, "opaque": true, "replaceable": false, @@ -144997,7 +142590,7 @@ ] }, { - "id": 13782, + "id": 13560, "luminance": 0, "opaque": true, "replaceable": false, @@ -145007,7 +142600,7 @@ ] }, { - "id": 13783, + "id": 13561, "luminance": 0, "opaque": true, "replaceable": false, @@ -145017,7 +142610,7 @@ ] }, { - "id": 13784, + "id": 13562, "luminance": 0, "opaque": true, "replaceable": false, @@ -145027,7 +142620,7 @@ ] }, { - "id": 13785, + "id": 13563, "luminance": 0, "opaque": true, "replaceable": false, @@ -145038,7 +142631,7 @@ ] }, { - "id": 13786, + "id": 13564, "luminance": 0, "opaque": true, "replaceable": false, @@ -145049,7 +142642,7 @@ ] }, { - "id": 13787, + "id": 13565, "luminance": 0, "opaque": true, "replaceable": false, @@ -145060,7 +142653,7 @@ ] }, { - "id": 13788, + "id": 13566, "luminance": 0, "opaque": true, "replaceable": false, @@ -145071,7 +142664,7 @@ ] }, { - "id": 13789, + "id": 13567, "luminance": 0, "opaque": true, "replaceable": false, @@ -145082,7 +142675,7 @@ ] }, { - "id": 13790, + "id": 13568, "luminance": 0, "opaque": true, "replaceable": false, @@ -145093,7 +142686,7 @@ ] }, { - "id": 13791, + "id": 13569, "luminance": 0, "opaque": true, "replaceable": false, @@ -145104,7 +142697,7 @@ ] }, { - "id": 13792, + "id": 13570, "luminance": 0, "opaque": true, "replaceable": false, @@ -145115,7 +142708,7 @@ ] }, { - "id": 13793, + "id": 13571, "luminance": 0, "opaque": true, "replaceable": false, @@ -145125,7 +142718,7 @@ ] }, { - "id": 13794, + "id": 13572, "luminance": 0, "opaque": true, "replaceable": false, @@ -145135,7 +142728,7 @@ ] }, { - "id": 13795, + "id": 13573, "luminance": 0, "opaque": true, "replaceable": false, @@ -145146,7 +142739,7 @@ ] }, { - "id": 13796, + "id": 13574, "luminance": 0, "opaque": true, "replaceable": false, @@ -145157,7 +142750,7 @@ ] }, { - "id": 13797, + "id": 13575, "luminance": 0, "opaque": true, "replaceable": false, @@ -145168,7 +142761,7 @@ ] }, { - "id": 13798, + "id": 13576, "luminance": 0, "opaque": true, "replaceable": false, @@ -145179,7 +142772,7 @@ ] }, { - "id": 13799, + "id": 13577, "luminance": 0, "opaque": true, "replaceable": false, @@ -145189,7 +142782,7 @@ ] }, { - "id": 13800, + "id": 13578, "luminance": 0, "opaque": true, "replaceable": false, @@ -145199,7 +142792,7 @@ ] }, { - "id": 13801, + "id": 13579, "luminance": 0, "opaque": true, "replaceable": false, @@ -145209,7 +142802,7 @@ ] }, { - "id": 13802, + "id": 13580, "luminance": 0, "opaque": true, "replaceable": false, @@ -145219,7 +142812,7 @@ ] }, { - "id": 13803, + "id": 13581, "luminance": 0, "opaque": true, "replaceable": false, @@ -145229,7 +142822,7 @@ ] }, { - "id": 13804, + "id": 13582, "luminance": 0, "opaque": true, "replaceable": false, @@ -145239,7 +142832,7 @@ ] }, { - "id": 13805, + "id": 13583, "luminance": 0, "opaque": true, "replaceable": false, @@ -145250,7 +142843,7 @@ ] }, { - "id": 13806, + "id": 13584, "luminance": 0, "opaque": true, "replaceable": false, @@ -145261,7 +142854,7 @@ ] }, { - "id": 13807, + "id": 13585, "luminance": 0, "opaque": true, "replaceable": false, @@ -145272,7 +142865,7 @@ ] }, { - "id": 13808, + "id": 13586, "luminance": 0, "opaque": true, "replaceable": false, @@ -145283,7 +142876,7 @@ ] }, { - "id": 13809, + "id": 13587, "luminance": 0, "opaque": true, "replaceable": false, @@ -145294,7 +142887,7 @@ ] }, { - "id": 13810, + "id": 13588, "luminance": 0, "opaque": true, "replaceable": false, @@ -145305,7 +142898,7 @@ ] }, { - "id": 13811, + "id": 13589, "luminance": 0, "opaque": true, "replaceable": false, @@ -145316,7 +142909,7 @@ ] }, { - "id": 13812, + "id": 13590, "luminance": 0, "opaque": true, "replaceable": false, @@ -145327,7 +142920,7 @@ ] }, { - "id": 13813, + "id": 13591, "luminance": 0, "opaque": true, "replaceable": false, @@ -145337,7 +142930,7 @@ ] }, { - "id": 13814, + "id": 13592, "luminance": 0, "opaque": true, "replaceable": false, @@ -145347,7 +142940,7 @@ ] }, { - "id": 13815, + "id": 13593, "luminance": 0, "opaque": true, "replaceable": false, @@ -145358,7 +142951,7 @@ ] }, { - "id": 13816, + "id": 13594, "luminance": 0, "opaque": true, "replaceable": false, @@ -145369,7 +142962,7 @@ ] }, { - "id": 13817, + "id": 13595, "luminance": 0, "opaque": true, "replaceable": false, @@ -145380,7 +142973,7 @@ ] }, { - "id": 13818, + "id": 13596, "luminance": 0, "opaque": true, "replaceable": false, @@ -145391,7 +142984,7 @@ ] }, { - "id": 13819, + "id": 13597, "luminance": 0, "opaque": true, "replaceable": false, @@ -145401,7 +142994,7 @@ ] }, { - "id": 13820, + "id": 13598, "luminance": 0, "opaque": true, "replaceable": false, @@ -145411,7 +143004,7 @@ ] }, { - "id": 13821, + "id": 13599, "luminance": 0, "opaque": true, "replaceable": false, @@ -145421,7 +143014,7 @@ ] }, { - "id": 13822, + "id": 13600, "luminance": 0, "opaque": true, "replaceable": false, @@ -145431,7 +143024,7 @@ ] }, { - "id": 13823, + "id": 13601, "luminance": 0, "opaque": true, "replaceable": false, @@ -145441,7 +143034,7 @@ ] }, { - "id": 13824, + "id": 13602, "luminance": 0, "opaque": true, "replaceable": false, @@ -145451,7 +143044,7 @@ ] }, { - "id": 13825, + "id": 13603, "luminance": 0, "opaque": true, "replaceable": false, @@ -145462,7 +143055,7 @@ ] }, { - "id": 13826, + "id": 13604, "luminance": 0, "opaque": true, "replaceable": false, @@ -145473,7 +143066,7 @@ ] }, { - "id": 13827, + "id": 13605, "luminance": 0, "opaque": true, "replaceable": false, @@ -145484,7 +143077,7 @@ ] }, { - "id": 13828, + "id": 13606, "luminance": 0, "opaque": true, "replaceable": false, @@ -145495,7 +143088,7 @@ ] }, { - "id": 13829, + "id": 13607, "luminance": 0, "opaque": true, "replaceable": false, @@ -145506,7 +143099,7 @@ ] }, { - "id": 13830, + "id": 13608, "luminance": 0, "opaque": true, "replaceable": false, @@ -145517,7 +143110,7 @@ ] }, { - "id": 13831, + "id": 13609, "luminance": 0, "opaque": true, "replaceable": false, @@ -145528,7 +143121,7 @@ ] }, { - "id": 13832, + "id": 13610, "luminance": 0, "opaque": true, "replaceable": false, @@ -145539,7 +143132,7 @@ ] }, { - "id": 13833, + "id": 13611, "luminance": 0, "opaque": true, "replaceable": false, @@ -145549,7 +143142,7 @@ ] }, { - "id": 13834, + "id": 13612, "luminance": 0, "opaque": true, "replaceable": false, @@ -145559,7 +143152,7 @@ ] }, { - "id": 13835, + "id": 13613, "luminance": 0, "opaque": true, "replaceable": false, @@ -145570,7 +143163,7 @@ ] }, { - "id": 13836, + "id": 13614, "luminance": 0, "opaque": true, "replaceable": false, @@ -145581,7 +143174,7 @@ ] }, { - "id": 13837, + "id": 13615, "luminance": 0, "opaque": true, "replaceable": false, @@ -145592,7 +143185,7 @@ ] }, { - "id": 13838, + "id": 13616, "luminance": 0, "opaque": true, "replaceable": false, @@ -145603,7 +143196,7 @@ ] }, { - "id": 13839, + "id": 13617, "luminance": 0, "opaque": true, "replaceable": false, @@ -145613,7 +143206,7 @@ ] }, { - "id": 13840, + "id": 13618, "luminance": 0, "opaque": true, "replaceable": false, @@ -145623,7 +143216,7 @@ ] }, { - "id": 13841, + "id": 13619, "luminance": 0, "opaque": true, "replaceable": false, @@ -145633,7 +143226,7 @@ ] }, { - "id": 13842, + "id": 13620, "luminance": 0, "opaque": true, "replaceable": false, @@ -145645,9 +143238,9 @@ ] }, { - "id": 741, - "name": "diorite_stairs", - "translation_key": "block.minecraft.diorite_stairs", + "id": 742, + "name": "andesite_stairs", + "translation_key": "block.minecraft.andesite_stairs", "item_id": 609, "properties": [ { @@ -145684,8 +143277,2448 @@ ] } ], - "default_state_id": 13854, + "default_state_id": 13632, "states": [ + { + "id": 13621, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 13622, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 13623, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 13624, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 13625, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 13626, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 13627, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 13628, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 13629, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 13630, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 13631, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 13632, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 13633, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 13634, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 13635, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 13636, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 13637, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 13638, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 13639, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 13640, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 13641, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 13642, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 13643, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 13644, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 13645, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 13646, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 13647, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 13648, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 13649, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 13650, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 13651, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 13652, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 13653, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 13654, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 13655, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 13656, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 13657, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 13658, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 13659, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 13660, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 13661, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 13662, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 13663, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 13664, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 13665, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 13666, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 13667, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 13668, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 13669, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 13670, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 13671, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 13672, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 13673, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 13674, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 13675, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 13676, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 13677, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 13678, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 13679, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 13680, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 13681, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 13682, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 13683, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 13684, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 13685, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 13686, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 13687, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 13688, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 13689, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 13690, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 13691, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 13692, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 13693, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 13694, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 13695, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 13696, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 13697, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 13698, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 13699, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 13700, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 743, + "name": "red_nether_brick_stairs", + "translation_key": "block.minecraft.red_nether_brick_stairs", + "item_id": 610, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 13712, + "states": [ + { + "id": 13701, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 13702, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 13703, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 13704, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 13705, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 13706, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 13707, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 13708, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 13709, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 13710, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 13711, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 13712, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 13713, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 13714, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 13715, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 13716, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 13717, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 13718, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 13719, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 13720, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 13721, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 13722, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 13723, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 13724, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 13725, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 13726, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 13727, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 13728, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 13729, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 13730, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 13731, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 13732, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 13733, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 13734, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 13735, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 13736, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 13737, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 13738, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 13739, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 13740, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 13741, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 13742, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 13743, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 13744, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 13745, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 13746, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 13747, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 13748, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 13749, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 13750, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 13751, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 13752, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 13753, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 13754, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 13755, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 13756, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 13757, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 13758, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 13759, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 13760, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 13761, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 13762, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 13763, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 13764, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 13765, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 13766, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 13767, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 13768, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 13769, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 13770, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 13771, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 13772, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 13773, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 13774, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 13775, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 13776, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 13777, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 13778, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 13779, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 13780, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 744, + "name": "polished_andesite_stairs", + "translation_key": "block.minecraft.polished_andesite_stairs", + "item_id": 611, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 13792, + "states": [ + { + "id": 13781, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 13782, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 13783, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 13784, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 13785, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 13786, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 13787, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 13788, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 13789, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 13790, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 13791, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 13792, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 13793, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 13794, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 13795, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 13796, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 13797, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 13798, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 13799, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 13800, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 13801, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 13802, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 13803, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 13804, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 13805, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 13806, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 13807, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 13808, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 13809, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 13810, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 13811, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 13812, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 13813, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 13814, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 13815, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 13816, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 13817, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 13818, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 13819, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 13820, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 13821, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 13822, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 13823, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 13824, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 13825, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 13826, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 13827, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 13828, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 13829, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 13830, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 13831, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 13832, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 13833, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 13834, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 13835, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 13836, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 13837, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 13838, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 13839, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 13840, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 13841, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 13842, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, { "id": 13843, "luminance": 0, @@ -145693,7 +145726,8 @@ "replaceable": false, "collision_shapes": [ 41, - 42 + 46, + 47 ] }, { @@ -145703,7 +145737,8 @@ "replaceable": false, "collision_shapes": [ 41, - 42 + 46, + 47 ] }, { @@ -145712,9 +145747,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, + 54, 44, - 45 + 53 ] }, { @@ -145723,9 +145758,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, + 54, 44, - 45 + 53 ] }, { @@ -145734,9 +145769,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 44, + 50, + 45 ] }, { @@ -145745,9 +145780,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 44, + 50, + 45 ] }, { @@ -145756,8 +145791,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, + 46, + 50, 49 ] }, @@ -145767,8 +145802,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, + 46, + 50, 49 ] }, @@ -145778,9 +145813,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 51, + 56 ] }, { @@ -145789,9 +145823,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 51, + 56 ] }, { @@ -145801,7 +145834,8 @@ "replaceable": false, "collision_shapes": [ 51, - 52 + 52, + 45 ] }, { @@ -145811,7 +145845,8 @@ "replaceable": false, "collision_shapes": [ 51, - 52 + 52, + 45 ] }, { @@ -145821,7 +145856,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, + 42, 49 ] }, @@ -145832,7 +145867,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, + 42, 49 ] }, @@ -145843,8 +145878,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 49 ] }, { @@ -145854,8 +145888,7 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 49 ] }, { @@ -145865,7 +145898,7 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 45 ] }, { @@ -145875,17 +145908,61 @@ "replaceable": false, "collision_shapes": [ 51, - 53 + 45 + ] + } + ] + }, + { + "id": 745, + "name": "diorite_stairs", + "translation_key": "block.minecraft.diorite_stairs", + "item_id": 612, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" ] }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 13872, + "states": [ { "id": 13861, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 49 + 41, + 42 ] }, { @@ -145894,8 +145971,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 49 + 41, + 42 ] }, { @@ -145904,8 +145981,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 43, + 44, + 45 ] }, { @@ -145914,8 +145992,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 43, + 44, + 45 ] }, { @@ -145924,9 +146003,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 41, + 46, + 47 ] }, { @@ -145935,9 +146014,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 41, + 46, + 47 ] }, { @@ -145946,8 +146025,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, + 48, + 42, 49 ] }, @@ -145957,8 +146036,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, + 48, + 42, 49 ] }, @@ -145968,9 +146047,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, + 44, 50, - 49 + 45 ] }, { @@ -145979,9 +146058,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, + 44, 50, - 49 + 45 ] }, { @@ -145990,9 +146069,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 51, + 52 ] }, { @@ -146001,9 +146079,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 51, + 52 ] }, { @@ -146013,7 +146090,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42 + 50, + 49 ] }, { @@ -146023,7 +146101,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42 + 50, + 49 ] }, { @@ -146033,8 +146112,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 52, + 45 ] }, { @@ -146044,8 +146123,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 52, + 45 ] }, { @@ -146055,8 +146134,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 53 ] }, { @@ -146066,8 +146144,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 53 ] }, { @@ -146077,7 +146154,7 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 49 ] }, { @@ -146087,7 +146164,7 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 49 ] }, { @@ -146096,8 +146173,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 47 + 54, + 52 ] }, { @@ -146106,8 +146183,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 47 + 54, + 52 ] }, { @@ -146116,8 +146193,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 54, + 44, + 53 ] }, { @@ -146126,8 +146204,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 54, + 44, + 53 ] }, { @@ -146158,9 +146237,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 + 46, + 50, + 49 ] }, { @@ -146169,9 +146248,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 + 46, + 50, + 49 ] }, { @@ -146202,9 +146281,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 51, + 42 ] }, { @@ -146213,9 +146291,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 51, + 42 ] }, { @@ -146225,7 +146302,8 @@ "replaceable": false, "collision_shapes": [ 51, - 50 + 42, + 49 ] }, { @@ -146235,7 +146313,8 @@ "replaceable": false, "collision_shapes": [ 51, - 50 + 42, + 49 ] }, { @@ -146267,8 +146346,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 45 ] }, { @@ -146278,8 +146356,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 45 ] }, { @@ -146308,8 +146385,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 53 + 43, + 56 ] }, { @@ -146318,8 +146395,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 53 + 43, + 56 ] }, { @@ -146328,8 +146405,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 43, + 46, + 49 ] }, { @@ -146338,8 +146416,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 43, + 46, + 49 ] }, { @@ -146348,9 +146427,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 43, + 44, + 45 ] }, { @@ -146359,9 +146438,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 43, + 44, + 45 ] }, { @@ -146370,9 +146449,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 55, + 52, + 45 ] }, { @@ -146381,9 +146460,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 55, + 52, + 45 ] }, { @@ -146392,9 +146471,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -146403,9 +146482,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -146414,9 +146493,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 51, + 50 ] }, { @@ -146425,9 +146503,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 51, + 50 ] }, { @@ -146437,7 +146514,8 @@ "replaceable": false, "collision_shapes": [ 51, - 56 + 50, + 45 ] }, { @@ -146447,7 +146525,8 @@ "replaceable": false, "collision_shapes": [ 51, - 56 + 50, + 45 ] }, { @@ -146457,8 +146536,8 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 50, + 49 ] }, { @@ -146468,8 +146547,8 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 50, + 49 ] }, { @@ -146479,8 +146558,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 47 ] }, { @@ -146490,8 +146568,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 47 ] }, { @@ -146501,7 +146578,7 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 53 ] }, { @@ -146511,7 +146588,7 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 53 ] }, { @@ -146520,8 +146597,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 45 + 57, + 50 ] }, { @@ -146530,43 +146607,19 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 45 - ] - } - ] - }, - { - "id": 742, - "name": "polished_granite_slab", - "translation_key": "block.minecraft.polished_granite_slab", - "item_id": 614, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" + 57, + 50 ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 13926, - "states": [ { "id": 13923, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 201 + 41, + 46, + 47 ] }, { @@ -146575,7 +146628,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 201 + 41, + 46, + 47 ] }, { @@ -146584,7 +146639,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51 + 54, + 44, + 53 ] }, { @@ -146593,7 +146650,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51 + 54, + 44, + 53 ] }, { @@ -146602,7 +146661,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 44, + 50, + 45 ] }, { @@ -146611,42 +146672,20 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 743, - "name": "smooth_red_sandstone_slab", - "translation_key": "block.minecraft.smooth_red_sandstone_slab", - "item_id": 615, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" + 44, + 50, + 45 ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 13932, - "states": [ { "id": 13929, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 201 + 46, + 50, + 49 ] }, { @@ -146655,7 +146694,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 201 + 46, + 50, + 49 ] }, { @@ -146664,7 +146705,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51 + 51, + 56 ] }, { @@ -146673,7 +146715,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51 + 51, + 56 ] }, { @@ -146682,7 +146725,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 51, + 52, + 45 ] }, { @@ -146691,42 +146736,20 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 744, - "name": "mossy_stone_brick_slab", - "translation_key": "block.minecraft.mossy_stone_brick_slab", - "item_id": 616, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" + 51, + 52, + 45 ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 13938, - "states": [ { "id": 13935, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 201 + 51, + 42, + 49 ] }, { @@ -146735,7 +146758,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 201 + 51, + 42, + 49 ] }, { @@ -146744,7 +146769,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51 + 51, + 49 ] }, { @@ -146753,7 +146779,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51 + 51, + 49 ] }, { @@ -146762,7 +146789,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 51, + 45 ] }, { @@ -146771,15 +146799,16 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 51, + 45 ] } ] }, { - "id": 745, - "name": "polished_diorite_slab", - "translation_key": "block.minecraft.polished_diorite_slab", + "id": 746, + "name": "polished_granite_slab", + "translation_key": "block.minecraft.polished_granite_slab", "item_id": 617, "properties": [ { @@ -146857,9 +146886,9 @@ ] }, { - "id": 746, - "name": "mossy_cobblestone_slab", - "translation_key": "block.minecraft.mossy_cobblestone_slab", + "id": 747, + "name": "smooth_red_sandstone_slab", + "translation_key": "block.minecraft.smooth_red_sandstone_slab", "item_id": 618, "properties": [ { @@ -146937,9 +146966,9 @@ ] }, { - "id": 747, - "name": "end_stone_brick_slab", - "translation_key": "block.minecraft.end_stone_brick_slab", + "id": 748, + "name": "mossy_stone_brick_slab", + "translation_key": "block.minecraft.mossy_stone_brick_slab", "item_id": 619, "properties": [ { @@ -147017,9 +147046,9 @@ ] }, { - "id": 748, - "name": "smooth_sandstone_slab", - "translation_key": "block.minecraft.smooth_sandstone_slab", + "id": 749, + "name": "polished_diorite_slab", + "translation_key": "block.minecraft.polished_diorite_slab", "item_id": 620, "properties": [ { @@ -147097,9 +147126,9 @@ ] }, { - "id": 749, - "name": "smooth_quartz_slab", - "translation_key": "block.minecraft.smooth_quartz_slab", + "id": 750, + "name": "mossy_cobblestone_slab", + "translation_key": "block.minecraft.mossy_cobblestone_slab", "item_id": 621, "properties": [ { @@ -147177,9 +147206,9 @@ ] }, { - "id": 750, - "name": "granite_slab", - "translation_key": "block.minecraft.granite_slab", + "id": 751, + "name": "end_stone_brick_slab", + "translation_key": "block.minecraft.end_stone_brick_slab", "item_id": 622, "properties": [ { @@ -147257,9 +147286,9 @@ ] }, { - "id": 751, - "name": "andesite_slab", - "translation_key": "block.minecraft.andesite_slab", + "id": 752, + "name": "smooth_sandstone_slab", + "translation_key": "block.minecraft.smooth_sandstone_slab", "item_id": 623, "properties": [ { @@ -147337,9 +147366,9 @@ ] }, { - "id": 752, - "name": "red_nether_brick_slab", - "translation_key": "block.minecraft.red_nether_brick_slab", + "id": 753, + "name": "smooth_quartz_slab", + "translation_key": "block.minecraft.smooth_quartz_slab", "item_id": 624, "properties": [ { @@ -147417,9 +147446,9 @@ ] }, { - "id": 753, - "name": "polished_andesite_slab", - "translation_key": "block.minecraft.polished_andesite_slab", + "id": 754, + "name": "granite_slab", + "translation_key": "block.minecraft.granite_slab", "item_id": 625, "properties": [ { @@ -147497,9 +147526,9 @@ ] }, { - "id": 754, - "name": "diorite_slab", - "translation_key": "block.minecraft.diorite_slab", + "id": 755, + "name": "andesite_slab", + "translation_key": "block.minecraft.andesite_slab", "item_id": 626, "properties": [ { @@ -147577,40 +147606,17 @@ ] }, { - "id": 755, - "name": "brick_wall", - "translation_key": "block.minecraft.brick_wall", - "item_id": 375, + "id": 756, + "name": "red_nether_brick_slab", + "translation_key": "block.minecraft.red_nether_brick_slab", + "item_id": 627, "properties": [ { - "name": "east", + "name": "type", "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "values": [ - "true", - "false" + "top", + "bottom", + "double" ] }, { @@ -147619,14 +147625,6 @@ "true", "false" ] - }, - { - "name": "west", - "values": [ - "none", - "low", - "tall" - ] } ], "default_state_id": 14004, @@ -147637,7 +147635,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140 + 201 ] }, { @@ -147646,9 +147644,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 201 ] }, { @@ -147657,9 +147653,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 51 ] }, { @@ -147668,7 +147662,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140 + 51 ] }, { @@ -147677,9 +147671,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 0 ] }, { @@ -147688,3542 +147680,23 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 14007, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 14008, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 14009, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 14010, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 14011, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 14012, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 14013, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 14014, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14015, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14016, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 14017, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14018, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14019, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 14020, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14021, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14022, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 14023, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14024, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14025, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 14026, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14027, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14028, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 14029, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14030, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14031, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 14032, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14033, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14034, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 14035, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14036, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14037, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 14038, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14039, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14040, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 14041, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14042, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14043, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 14044, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14045, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14046, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 14047, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14048, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14049, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14050, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14051, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14052, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14053, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14054, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14055, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14056, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14057, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14058, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14059, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14060, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14061, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14062, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14063, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14064, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14065, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14066, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14067, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14068, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14069, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14070, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14071, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14072, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14073, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 14074, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14075, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14076, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 14077, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14078, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14079, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 14080, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14081, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14082, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 14083, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14084, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14085, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14086, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14087, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14088, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14089, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14090, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14091, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14092, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14093, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14094, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14095, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14096, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14097, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14098, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14099, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14100, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14101, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14102, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14103, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14104, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14105, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14106, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14107, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14108, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14109, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 14110, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14111, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14112, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 14113, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14114, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14115, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 14116, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14117, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14118, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 14119, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14120, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14121, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14122, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14123, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14124, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14125, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14126, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14127, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14128, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14129, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14130, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14131, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14132, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14133, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14134, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14135, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14136, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14137, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14138, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14139, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14140, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14141, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14142, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14143, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14144, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14145, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14146, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14147, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14148, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14149, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14150, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14151, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14152, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14153, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14154, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14155, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14156, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14157, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14158, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14159, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14160, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14161, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14162, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14163, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14164, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14165, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14166, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14167, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14168, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14169, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14170, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14171, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14172, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14173, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14174, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14175, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14176, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14177, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14178, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14179, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14180, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14181, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14182, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14183, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14184, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14185, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14186, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14187, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14188, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14189, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14190, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14191, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14192, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14193, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14194, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14195, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14196, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14197, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14198, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14199, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14200, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14201, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14202, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14203, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14204, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14205, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14206, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14207, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14208, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14209, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14210, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14211, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14212, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14213, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14214, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14215, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14216, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14217, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 14218, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14219, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14220, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 14221, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14222, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14223, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 14224, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14225, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14226, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 14227, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14228, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14229, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14230, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14231, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14232, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14233, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14234, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14235, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14236, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14237, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14238, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14239, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14240, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14241, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14242, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14243, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14244, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14245, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14246, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14247, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14248, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14249, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14250, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14251, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14252, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14253, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14254, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14255, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14256, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14257, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14258, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14259, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14260, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14261, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14262, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14263, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14264, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14265, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14266, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14267, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14268, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14269, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14270, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14271, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14272, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14273, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14274, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14275, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14276, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14277, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14278, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14279, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14280, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14281, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14282, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14283, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14284, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14285, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14286, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14287, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14288, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14289, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14290, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14291, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14292, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14293, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14294, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14295, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14296, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14297, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14298, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14299, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14300, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14301, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14302, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14303, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14304, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14305, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14306, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14307, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14308, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14309, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14310, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14311, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14312, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14313, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14314, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14315, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14316, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14317, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14318, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14319, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14320, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14321, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14322, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14323, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14324, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 + 0 ] } ] }, { - "id": 756, - "name": "prismarine_wall", - "translation_key": "block.minecraft.prismarine_wall", - "item_id": 376, + "id": 757, + "name": "polished_andesite_slab", + "translation_key": "block.minecraft.polished_andesite_slab", + "item_id": 628, "properties": [ { - "name": "east", + "name": "type", "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "values": [ - "true", - "false" + "top", + "bottom", + "double" ] }, { @@ -151232,3580 +147705,150 @@ "true", "false" ] - }, - { - "name": "west", - "values": [ - "none", - "low", - "tall" - ] } ], - "default_state_id": 14328, + "default_state_id": 14010, "states": [ { - "id": 14325, + "id": 14007, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 140 + 201 ] }, { - "id": 14326, + "id": 14008, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 201 ] }, { - "id": 14327, + "id": 14009, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 51 ] }, { - "id": 14328, + "id": 14010, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 140 + 51 ] }, { - "id": 14329, + "id": 14011, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 0 ] }, { - "id": 14330, + "id": 14012, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 14331, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 14332, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 14333, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 14334, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 14335, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 14336, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 14337, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 14338, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14339, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14340, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 14341, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14342, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14343, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 14344, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14345, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14346, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 14347, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14348, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14349, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 14350, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14351, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14352, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 14353, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14354, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 14355, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 14356, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14357, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14358, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 14359, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14360, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 14361, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 14362, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14363, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14364, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 14365, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14366, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14367, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 14368, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14369, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14370, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 14371, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14372, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14373, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14374, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14375, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14376, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14377, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14378, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14379, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14380, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14381, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14382, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14383, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14384, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14385, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14386, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14387, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14388, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14389, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14390, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14391, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14392, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14393, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14394, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14395, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14396, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14397, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 14398, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14399, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14400, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 14401, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14402, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 14403, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 14404, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14405, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14406, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 14407, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14408, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 14409, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14410, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14411, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14412, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14413, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14414, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14415, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14416, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14417, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14418, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14419, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14420, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14421, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14422, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14423, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14424, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 14425, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14426, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14427, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14428, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14429, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14430, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 14431, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14432, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 14433, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 14434, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14435, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14436, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 14437, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14438, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14439, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 14440, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14441, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14442, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 14443, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14444, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14445, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14446, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14447, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14448, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14449, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14450, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14451, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14452, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14453, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14454, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14455, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14456, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14457, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14458, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14459, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14460, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14461, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14462, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14463, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14464, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14465, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14466, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14467, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14468, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14469, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14470, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14471, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14472, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14473, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14474, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14475, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14476, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14477, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14478, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14479, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14480, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14481, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14482, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14483, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14484, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14485, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14486, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14487, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14488, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14489, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14490, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14491, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14492, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14493, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14494, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14495, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14496, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14497, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14498, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14499, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14500, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14501, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14502, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14503, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14504, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14505, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14506, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14507, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14508, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14509, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14510, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14511, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14512, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14513, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14514, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14515, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14516, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14517, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14518, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14519, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14520, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14521, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14522, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14523, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14524, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14525, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14526, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14527, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14528, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14529, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14530, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14531, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14532, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14533, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14534, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14535, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14536, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14537, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14538, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14539, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14540, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14541, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 14542, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14543, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14544, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 14545, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14546, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 14547, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 14548, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14549, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14550, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 14551, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14552, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 14553, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14554, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14555, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14556, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14557, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14558, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14559, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14560, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14561, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14562, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14563, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14564, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14565, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14566, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14567, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14568, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 14569, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14570, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 14571, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14572, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14573, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14574, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 14575, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14576, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 14577, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14578, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14579, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14580, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14581, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14582, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14583, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14584, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14585, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14586, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14587, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14588, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14589, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14590, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14591, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14592, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14593, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14594, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14595, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14596, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14597, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14598, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14599, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14600, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14601, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14602, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14603, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14604, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14605, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14606, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14607, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14608, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14609, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14610, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14611, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14612, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14613, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14614, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14615, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14616, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 14617, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14618, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 14619, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14620, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14621, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14622, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 14623, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14624, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 14625, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14626, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14627, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14628, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14629, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14630, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14631, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14632, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14633, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14634, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14635, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14636, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14637, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14638, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14639, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14640, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 14641, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14642, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 14643, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14644, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14645, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14646, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 14647, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 14648, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 + 0 ] } ] }, { - "id": 757, - "name": "red_sandstone_wall", - "translation_key": "block.minecraft.red_sandstone_wall", + "id": 758, + "name": "diorite_slab", + "translation_key": "block.minecraft.diorite_slab", + "item_id": 629, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 14016, + "states": [ + { + "id": 14013, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 14014, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 14015, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 14016, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 14017, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 14018, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 759, + "name": "brick_wall", + "translation_key": "block.minecraft.brick_wall", "item_id": 377, "properties": [ { @@ -154855,10 +147898,10 @@ ] } ], - "default_state_id": 14652, + "default_state_id": 14022, "states": [ { - "id": 14649, + "id": 14019, "luminance": 0, "opaque": true, "replaceable": false, @@ -154867,7 +147910,7 @@ ] }, { - "id": 14650, + "id": 14020, "luminance": 0, "opaque": true, "replaceable": false, @@ -154878,7 +147921,7 @@ ] }, { - "id": 14651, + "id": 14021, "luminance": 0, "opaque": true, "replaceable": false, @@ -154889,7 +147932,7 @@ ] }, { - "id": 14652, + "id": 14022, "luminance": 0, "opaque": true, "replaceable": false, @@ -154898,7 +147941,7 @@ ] }, { - "id": 14653, + "id": 14023, "luminance": 0, "opaque": true, "replaceable": false, @@ -154909,7 +147952,7 @@ ] }, { - "id": 14654, + "id": 14024, "luminance": 0, "opaque": true, "replaceable": false, @@ -154920,14 +147963,14 @@ ] }, { - "id": 14655, + "id": 14025, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 14656, + "id": 14026, "luminance": 0, "opaque": true, "replaceable": false, @@ -154936,7 +147979,7 @@ ] }, { - "id": 14657, + "id": 14027, "luminance": 0, "opaque": true, "replaceable": false, @@ -154945,14 +147988,14 @@ ] }, { - "id": 14658, + "id": 14028, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 14659, + "id": 14029, "luminance": 0, "opaque": true, "replaceable": false, @@ -154961,7 +148004,7 @@ ] }, { - "id": 14660, + "id": 14030, "luminance": 0, "opaque": true, "replaceable": false, @@ -154970,7 +148013,7 @@ ] }, { - "id": 14661, + "id": 14031, "luminance": 0, "opaque": true, "replaceable": false, @@ -154980,7 +148023,7 @@ ] }, { - "id": 14662, + "id": 14032, "luminance": 0, "opaque": true, "replaceable": false, @@ -154992,7 +148035,7 @@ ] }, { - "id": 14663, + "id": 14033, "luminance": 0, "opaque": true, "replaceable": false, @@ -155004,7 +148047,7 @@ ] }, { - "id": 14664, + "id": 14034, "luminance": 0, "opaque": true, "replaceable": false, @@ -155014,7 +148057,7 @@ ] }, { - "id": 14665, + "id": 14035, "luminance": 0, "opaque": true, "replaceable": false, @@ -155026,7 +148069,7 @@ ] }, { - "id": 14666, + "id": 14036, "luminance": 0, "opaque": true, "replaceable": false, @@ -155038,7 +148081,7 @@ ] }, { - "id": 14667, + "id": 14037, "luminance": 0, "opaque": true, "replaceable": false, @@ -155047,7 +148090,7 @@ ] }, { - "id": 14668, + "id": 14038, "luminance": 0, "opaque": true, "replaceable": false, @@ -155057,7 +148100,7 @@ ] }, { - "id": 14669, + "id": 14039, "luminance": 0, "opaque": true, "replaceable": false, @@ -155067,7 +148110,7 @@ ] }, { - "id": 14670, + "id": 14040, "luminance": 0, "opaque": true, "replaceable": false, @@ -155076,7 +148119,7 @@ ] }, { - "id": 14671, + "id": 14041, "luminance": 0, "opaque": true, "replaceable": false, @@ -155086,7 +148129,7 @@ ] }, { - "id": 14672, + "id": 14042, "luminance": 0, "opaque": true, "replaceable": false, @@ -155096,7 +148139,7 @@ ] }, { - "id": 14673, + "id": 14043, "luminance": 0, "opaque": true, "replaceable": false, @@ -155106,7 +148149,7 @@ ] }, { - "id": 14674, + "id": 14044, "luminance": 0, "opaque": true, "replaceable": false, @@ -155118,7 +148161,7 @@ ] }, { - "id": 14675, + "id": 14045, "luminance": 0, "opaque": true, "replaceable": false, @@ -155130,7 +148173,7 @@ ] }, { - "id": 14676, + "id": 14046, "luminance": 0, "opaque": true, "replaceable": false, @@ -155140,7 +148183,7 @@ ] }, { - "id": 14677, + "id": 14047, "luminance": 0, "opaque": true, "replaceable": false, @@ -155152,7 +148195,7 @@ ] }, { - "id": 14678, + "id": 14048, "luminance": 0, "opaque": true, "replaceable": false, @@ -155164,7 +148207,7 @@ ] }, { - "id": 14679, + "id": 14049, "luminance": 0, "opaque": true, "replaceable": false, @@ -155173,7 +148216,7 @@ ] }, { - "id": 14680, + "id": 14050, "luminance": 0, "opaque": true, "replaceable": false, @@ -155183,7 +148226,7 @@ ] }, { - "id": 14681, + "id": 14051, "luminance": 0, "opaque": true, "replaceable": false, @@ -155193,7 +148236,7 @@ ] }, { - "id": 14682, + "id": 14052, "luminance": 0, "opaque": true, "replaceable": false, @@ -155202,7 +148245,7 @@ ] }, { - "id": 14683, + "id": 14053, "luminance": 0, "opaque": true, "replaceable": false, @@ -155212,7 +148255,7 @@ ] }, { - "id": 14684, + "id": 14054, "luminance": 0, "opaque": true, "replaceable": false, @@ -155222,7 +148265,7 @@ ] }, { - "id": 14685, + "id": 14055, "luminance": 0, "opaque": true, "replaceable": false, @@ -155232,7 +148275,7 @@ ] }, { - "id": 14686, + "id": 14056, "luminance": 0, "opaque": true, "replaceable": false, @@ -155244,7 +148287,7 @@ ] }, { - "id": 14687, + "id": 14057, "luminance": 0, "opaque": true, "replaceable": false, @@ -155256,7 +148299,7 @@ ] }, { - "id": 14688, + "id": 14058, "luminance": 0, "opaque": true, "replaceable": false, @@ -155266,7 +148309,7 @@ ] }, { - "id": 14689, + "id": 14059, "luminance": 0, "opaque": true, "replaceable": false, @@ -155278,7 +148321,7 @@ ] }, { - "id": 14690, + "id": 14060, "luminance": 0, "opaque": true, "replaceable": false, @@ -155290,7 +148333,7 @@ ] }, { - "id": 14691, + "id": 14061, "luminance": 0, "opaque": true, "replaceable": false, @@ -155299,7 +148342,7 @@ ] }, { - "id": 14692, + "id": 14062, "luminance": 0, "opaque": true, "replaceable": false, @@ -155309,7 +148352,7 @@ ] }, { - "id": 14693, + "id": 14063, "luminance": 0, "opaque": true, "replaceable": false, @@ -155319,7 +148362,7 @@ ] }, { - "id": 14694, + "id": 14064, "luminance": 0, "opaque": true, "replaceable": false, @@ -155328,7 +148371,7 @@ ] }, { - "id": 14695, + "id": 14065, "luminance": 0, "opaque": true, "replaceable": false, @@ -155338,7 +148381,7 @@ ] }, { - "id": 14696, + "id": 14066, "luminance": 0, "opaque": true, "replaceable": false, @@ -155348,7 +148391,7 @@ ] }, { - "id": 14697, + "id": 14067, "luminance": 0, "opaque": true, "replaceable": false, @@ -155359,7 +148402,7 @@ ] }, { - "id": 14698, + "id": 14068, "luminance": 0, "opaque": true, "replaceable": false, @@ -155372,7 +148415,7 @@ ] }, { - "id": 14699, + "id": 14069, "luminance": 0, "opaque": true, "replaceable": false, @@ -155385,7 +148428,7 @@ ] }, { - "id": 14700, + "id": 14070, "luminance": 0, "opaque": true, "replaceable": false, @@ -155396,7 +148439,7 @@ ] }, { - "id": 14701, + "id": 14071, "luminance": 0, "opaque": true, "replaceable": false, @@ -155409,7 +148452,7 @@ ] }, { - "id": 14702, + "id": 14072, "luminance": 0, "opaque": true, "replaceable": false, @@ -155422,7 +148465,7 @@ ] }, { - "id": 14703, + "id": 14073, "luminance": 0, "opaque": true, "replaceable": false, @@ -155431,7 +148474,7 @@ ] }, { - "id": 14704, + "id": 14074, "luminance": 0, "opaque": true, "replaceable": false, @@ -155442,7 +148485,7 @@ ] }, { - "id": 14705, + "id": 14075, "luminance": 0, "opaque": true, "replaceable": false, @@ -155453,7 +148496,7 @@ ] }, { - "id": 14706, + "id": 14076, "luminance": 0, "opaque": true, "replaceable": false, @@ -155462,7 +148505,7 @@ ] }, { - "id": 14707, + "id": 14077, "luminance": 0, "opaque": true, "replaceable": false, @@ -155473,7 +148516,7 @@ ] }, { - "id": 14708, + "id": 14078, "luminance": 0, "opaque": true, "replaceable": false, @@ -155484,7 +148527,7 @@ ] }, { - "id": 14709, + "id": 14079, "luminance": 0, "opaque": true, "replaceable": false, @@ -155495,7 +148538,7 @@ ] }, { - "id": 14710, + "id": 14080, "luminance": 0, "opaque": true, "replaceable": false, @@ -155508,7 +148551,7 @@ ] }, { - "id": 14711, + "id": 14081, "luminance": 0, "opaque": true, "replaceable": false, @@ -155521,7 +148564,7 @@ ] }, { - "id": 14712, + "id": 14082, "luminance": 0, "opaque": true, "replaceable": false, @@ -155532,7 +148575,7 @@ ] }, { - "id": 14713, + "id": 14083, "luminance": 0, "opaque": true, "replaceable": false, @@ -155545,7 +148588,7 @@ ] }, { - "id": 14714, + "id": 14084, "luminance": 0, "opaque": true, "replaceable": false, @@ -155558,7 +148601,7 @@ ] }, { - "id": 14715, + "id": 14085, "luminance": 0, "opaque": true, "replaceable": false, @@ -155567,7 +148610,7 @@ ] }, { - "id": 14716, + "id": 14086, "luminance": 0, "opaque": true, "replaceable": false, @@ -155578,7 +148621,7 @@ ] }, { - "id": 14717, + "id": 14087, "luminance": 0, "opaque": true, "replaceable": false, @@ -155589,7 +148632,7 @@ ] }, { - "id": 14718, + "id": 14088, "luminance": 0, "opaque": true, "replaceable": false, @@ -155598,7 +148641,7 @@ ] }, { - "id": 14719, + "id": 14089, "luminance": 0, "opaque": true, "replaceable": false, @@ -155609,7 +148652,7 @@ ] }, { - "id": 14720, + "id": 14090, "luminance": 0, "opaque": true, "replaceable": false, @@ -155620,7 +148663,7 @@ ] }, { - "id": 14721, + "id": 14091, "luminance": 0, "opaque": true, "replaceable": false, @@ -155630,7 +148673,7 @@ ] }, { - "id": 14722, + "id": 14092, "luminance": 0, "opaque": true, "replaceable": false, @@ -155642,7 +148685,7 @@ ] }, { - "id": 14723, + "id": 14093, "luminance": 0, "opaque": true, "replaceable": false, @@ -155654,7 +148697,7 @@ ] }, { - "id": 14724, + "id": 14094, "luminance": 0, "opaque": true, "replaceable": false, @@ -155664,7 +148707,7 @@ ] }, { - "id": 14725, + "id": 14095, "luminance": 0, "opaque": true, "replaceable": false, @@ -155676,7 +148719,7 @@ ] }, { - "id": 14726, + "id": 14096, "luminance": 0, "opaque": true, "replaceable": false, @@ -155688,7 +148731,7 @@ ] }, { - "id": 14727, + "id": 14097, "luminance": 0, "opaque": true, "replaceable": false, @@ -155697,7 +148740,7 @@ ] }, { - "id": 14728, + "id": 14098, "luminance": 0, "opaque": true, "replaceable": false, @@ -155707,7 +148750,7 @@ ] }, { - "id": 14729, + "id": 14099, "luminance": 0, "opaque": true, "replaceable": false, @@ -155717,7 +148760,7 @@ ] }, { - "id": 14730, + "id": 14100, "luminance": 0, "opaque": true, "replaceable": false, @@ -155726,7 +148769,7 @@ ] }, { - "id": 14731, + "id": 14101, "luminance": 0, "opaque": true, "replaceable": false, @@ -155736,7 +148779,7 @@ ] }, { - "id": 14732, + "id": 14102, "luminance": 0, "opaque": true, "replaceable": false, @@ -155746,7 +148789,7 @@ ] }, { - "id": 14733, + "id": 14103, "luminance": 0, "opaque": true, "replaceable": false, @@ -155757,7 +148800,7 @@ ] }, { - "id": 14734, + "id": 14104, "luminance": 0, "opaque": true, "replaceable": false, @@ -155770,7 +148813,7 @@ ] }, { - "id": 14735, + "id": 14105, "luminance": 0, "opaque": true, "replaceable": false, @@ -155783,7 +148826,7 @@ ] }, { - "id": 14736, + "id": 14106, "luminance": 0, "opaque": true, "replaceable": false, @@ -155794,7 +148837,7 @@ ] }, { - "id": 14737, + "id": 14107, "luminance": 0, "opaque": true, "replaceable": false, @@ -155807,7 +148850,7 @@ ] }, { - "id": 14738, + "id": 14108, "luminance": 0, "opaque": true, "replaceable": false, @@ -155820,7 +148863,7 @@ ] }, { - "id": 14739, + "id": 14109, "luminance": 0, "opaque": true, "replaceable": false, @@ -155829,7 +148872,7 @@ ] }, { - "id": 14740, + "id": 14110, "luminance": 0, "opaque": true, "replaceable": false, @@ -155840,7 +148883,7 @@ ] }, { - "id": 14741, + "id": 14111, "luminance": 0, "opaque": true, "replaceable": false, @@ -155851,7 +148894,7 @@ ] }, { - "id": 14742, + "id": 14112, "luminance": 0, "opaque": true, "replaceable": false, @@ -155860,7 +148903,7 @@ ] }, { - "id": 14743, + "id": 14113, "luminance": 0, "opaque": true, "replaceable": false, @@ -155871,7 +148914,7 @@ ] }, { - "id": 14744, + "id": 14114, "luminance": 0, "opaque": true, "replaceable": false, @@ -155882,7 +148925,7 @@ ] }, { - "id": 14745, + "id": 14115, "luminance": 0, "opaque": true, "replaceable": false, @@ -155893,7 +148936,7 @@ ] }, { - "id": 14746, + "id": 14116, "luminance": 0, "opaque": true, "replaceable": false, @@ -155906,7 +148949,7 @@ ] }, { - "id": 14747, + "id": 14117, "luminance": 0, "opaque": true, "replaceable": false, @@ -155919,7 +148962,7 @@ ] }, { - "id": 14748, + "id": 14118, "luminance": 0, "opaque": true, "replaceable": false, @@ -155930,7 +148973,7 @@ ] }, { - "id": 14749, + "id": 14119, "luminance": 0, "opaque": true, "replaceable": false, @@ -155943,7 +148986,7 @@ ] }, { - "id": 14750, + "id": 14120, "luminance": 0, "opaque": true, "replaceable": false, @@ -155956,7 +148999,7 @@ ] }, { - "id": 14751, + "id": 14121, "luminance": 0, "opaque": true, "replaceable": false, @@ -155965,7 +149008,7 @@ ] }, { - "id": 14752, + "id": 14122, "luminance": 0, "opaque": true, "replaceable": false, @@ -155976,7 +149019,7 @@ ] }, { - "id": 14753, + "id": 14123, "luminance": 0, "opaque": true, "replaceable": false, @@ -155987,7 +149030,7 @@ ] }, { - "id": 14754, + "id": 14124, "luminance": 0, "opaque": true, "replaceable": false, @@ -155996,7 +149039,7 @@ ] }, { - "id": 14755, + "id": 14125, "luminance": 0, "opaque": true, "replaceable": false, @@ -156007,7 +149050,7 @@ ] }, { - "id": 14756, + "id": 14126, "luminance": 0, "opaque": true, "replaceable": false, @@ -156018,7 +149061,7 @@ ] }, { - "id": 14757, + "id": 14127, "luminance": 0, "opaque": true, "replaceable": false, @@ -156028,7 +149071,7 @@ ] }, { - "id": 14758, + "id": 14128, "luminance": 0, "opaque": true, "replaceable": false, @@ -156039,7 +149082,7 @@ ] }, { - "id": 14759, + "id": 14129, "luminance": 0, "opaque": true, "replaceable": false, @@ -156050,7 +149093,7 @@ ] }, { - "id": 14760, + "id": 14130, "luminance": 0, "opaque": true, "replaceable": false, @@ -156060,7 +149103,7 @@ ] }, { - "id": 14761, + "id": 14131, "luminance": 0, "opaque": true, "replaceable": false, @@ -156071,7 +149114,7 @@ ] }, { - "id": 14762, + "id": 14132, "luminance": 0, "opaque": true, "replaceable": false, @@ -156082,7 +149125,7 @@ ] }, { - "id": 14763, + "id": 14133, "luminance": 0, "opaque": true, "replaceable": false, @@ -156091,7 +149134,7 @@ ] }, { - "id": 14764, + "id": 14134, "luminance": 0, "opaque": true, "replaceable": false, @@ -156100,7 +149143,7 @@ ] }, { - "id": 14765, + "id": 14135, "luminance": 0, "opaque": true, "replaceable": false, @@ -156109,7 +149152,7 @@ ] }, { - "id": 14766, + "id": 14136, "luminance": 0, "opaque": true, "replaceable": false, @@ -156118,7 +149161,7 @@ ] }, { - "id": 14767, + "id": 14137, "luminance": 0, "opaque": true, "replaceable": false, @@ -156127,7 +149170,7 @@ ] }, { - "id": 14768, + "id": 14138, "luminance": 0, "opaque": true, "replaceable": false, @@ -156136,7 +149179,7 @@ ] }, { - "id": 14769, + "id": 14139, "luminance": 0, "opaque": true, "replaceable": false, @@ -156147,7 +149190,7 @@ ] }, { - "id": 14770, + "id": 14140, "luminance": 0, "opaque": true, "replaceable": false, @@ -156159,7 +149202,7 @@ ] }, { - "id": 14771, + "id": 14141, "luminance": 0, "opaque": true, "replaceable": false, @@ -156171,7 +149214,7 @@ ] }, { - "id": 14772, + "id": 14142, "luminance": 0, "opaque": true, "replaceable": false, @@ -156182,7 +149225,7 @@ ] }, { - "id": 14773, + "id": 14143, "luminance": 0, "opaque": true, "replaceable": false, @@ -156194,7 +149237,7 @@ ] }, { - "id": 14774, + "id": 14144, "luminance": 0, "opaque": true, "replaceable": false, @@ -156206,7 +149249,7 @@ ] }, { - "id": 14775, + "id": 14145, "luminance": 0, "opaque": true, "replaceable": false, @@ -156216,7 +149259,7 @@ ] }, { - "id": 14776, + "id": 14146, "luminance": 0, "opaque": true, "replaceable": false, @@ -156226,7 +149269,7 @@ ] }, { - "id": 14777, + "id": 14147, "luminance": 0, "opaque": true, "replaceable": false, @@ -156236,7 +149279,7 @@ ] }, { - "id": 14778, + "id": 14148, "luminance": 0, "opaque": true, "replaceable": false, @@ -156246,7 +149289,7 @@ ] }, { - "id": 14779, + "id": 14149, "luminance": 0, "opaque": true, "replaceable": false, @@ -156256,7 +149299,7 @@ ] }, { - "id": 14780, + "id": 14150, "luminance": 0, "opaque": true, "replaceable": false, @@ -156266,7 +149309,7 @@ ] }, { - "id": 14781, + "id": 14151, "luminance": 0, "opaque": true, "replaceable": false, @@ -156277,7 +149320,7 @@ ] }, { - "id": 14782, + "id": 14152, "luminance": 0, "opaque": true, "replaceable": false, @@ -156289,7 +149332,7 @@ ] }, { - "id": 14783, + "id": 14153, "luminance": 0, "opaque": true, "replaceable": false, @@ -156301,7 +149344,7 @@ ] }, { - "id": 14784, + "id": 14154, "luminance": 0, "opaque": true, "replaceable": false, @@ -156312,7 +149355,7 @@ ] }, { - "id": 14785, + "id": 14155, "luminance": 0, "opaque": true, "replaceable": false, @@ -156324,7 +149367,7 @@ ] }, { - "id": 14786, + "id": 14156, "luminance": 0, "opaque": true, "replaceable": false, @@ -156336,7 +149379,7 @@ ] }, { - "id": 14787, + "id": 14157, "luminance": 0, "opaque": true, "replaceable": false, @@ -156346,7 +149389,7 @@ ] }, { - "id": 14788, + "id": 14158, "luminance": 0, "opaque": true, "replaceable": false, @@ -156356,7 +149399,7 @@ ] }, { - "id": 14789, + "id": 14159, "luminance": 0, "opaque": true, "replaceable": false, @@ -156366,7 +149409,7 @@ ] }, { - "id": 14790, + "id": 14160, "luminance": 0, "opaque": true, "replaceable": false, @@ -156376,7 +149419,7 @@ ] }, { - "id": 14791, + "id": 14161, "luminance": 0, "opaque": true, "replaceable": false, @@ -156386,7 +149429,7 @@ ] }, { - "id": 14792, + "id": 14162, "luminance": 0, "opaque": true, "replaceable": false, @@ -156396,7 +149439,7 @@ ] }, { - "id": 14793, + "id": 14163, "luminance": 0, "opaque": true, "replaceable": false, @@ -156407,7 +149450,7 @@ ] }, { - "id": 14794, + "id": 14164, "luminance": 0, "opaque": true, "replaceable": false, @@ -156419,7 +149462,7 @@ ] }, { - "id": 14795, + "id": 14165, "luminance": 0, "opaque": true, "replaceable": false, @@ -156431,7 +149474,7 @@ ] }, { - "id": 14796, + "id": 14166, "luminance": 0, "opaque": true, "replaceable": false, @@ -156442,7 +149485,7 @@ ] }, { - "id": 14797, + "id": 14167, "luminance": 0, "opaque": true, "replaceable": false, @@ -156454,7 +149497,7 @@ ] }, { - "id": 14798, + "id": 14168, "luminance": 0, "opaque": true, "replaceable": false, @@ -156466,7 +149509,7 @@ ] }, { - "id": 14799, + "id": 14169, "luminance": 0, "opaque": true, "replaceable": false, @@ -156476,7 +149519,7 @@ ] }, { - "id": 14800, + "id": 14170, "luminance": 0, "opaque": true, "replaceable": false, @@ -156486,7 +149529,7 @@ ] }, { - "id": 14801, + "id": 14171, "luminance": 0, "opaque": true, "replaceable": false, @@ -156496,7 +149539,7 @@ ] }, { - "id": 14802, + "id": 14172, "luminance": 0, "opaque": true, "replaceable": false, @@ -156506,7 +149549,7 @@ ] }, { - "id": 14803, + "id": 14173, "luminance": 0, "opaque": true, "replaceable": false, @@ -156516,7 +149559,7 @@ ] }, { - "id": 14804, + "id": 14174, "luminance": 0, "opaque": true, "replaceable": false, @@ -156526,7 +149569,7 @@ ] }, { - "id": 14805, + "id": 14175, "luminance": 0, "opaque": true, "replaceable": false, @@ -156538,7 +149581,7 @@ ] }, { - "id": 14806, + "id": 14176, "luminance": 0, "opaque": true, "replaceable": false, @@ -156551,7 +149594,7 @@ ] }, { - "id": 14807, + "id": 14177, "luminance": 0, "opaque": true, "replaceable": false, @@ -156564,7 +149607,7 @@ ] }, { - "id": 14808, + "id": 14178, "luminance": 0, "opaque": true, "replaceable": false, @@ -156576,7 +149619,7 @@ ] }, { - "id": 14809, + "id": 14179, "luminance": 0, "opaque": true, "replaceable": false, @@ -156589,7 +149632,7 @@ ] }, { - "id": 14810, + "id": 14180, "luminance": 0, "opaque": true, "replaceable": false, @@ -156602,7 +149645,7 @@ ] }, { - "id": 14811, + "id": 14181, "luminance": 0, "opaque": true, "replaceable": false, @@ -156612,7 +149655,7 @@ ] }, { - "id": 14812, + "id": 14182, "luminance": 0, "opaque": true, "replaceable": false, @@ -156623,7 +149666,7 @@ ] }, { - "id": 14813, + "id": 14183, "luminance": 0, "opaque": true, "replaceable": false, @@ -156634,7 +149677,7 @@ ] }, { - "id": 14814, + "id": 14184, "luminance": 0, "opaque": true, "replaceable": false, @@ -156644,7 +149687,7 @@ ] }, { - "id": 14815, + "id": 14185, "luminance": 0, "opaque": true, "replaceable": false, @@ -156655,7 +149698,7 @@ ] }, { - "id": 14816, + "id": 14186, "luminance": 0, "opaque": true, "replaceable": false, @@ -156666,7 +149709,7 @@ ] }, { - "id": 14817, + "id": 14187, "luminance": 0, "opaque": true, "replaceable": false, @@ -156678,7 +149721,7 @@ ] }, { - "id": 14818, + "id": 14188, "luminance": 0, "opaque": true, "replaceable": false, @@ -156691,7 +149734,7 @@ ] }, { - "id": 14819, + "id": 14189, "luminance": 0, "opaque": true, "replaceable": false, @@ -156704,7 +149747,7 @@ ] }, { - "id": 14820, + "id": 14190, "luminance": 0, "opaque": true, "replaceable": false, @@ -156716,7 +149759,7 @@ ] }, { - "id": 14821, + "id": 14191, "luminance": 0, "opaque": true, "replaceable": false, @@ -156729,7 +149772,7 @@ ] }, { - "id": 14822, + "id": 14192, "luminance": 0, "opaque": true, "replaceable": false, @@ -156742,7 +149785,7 @@ ] }, { - "id": 14823, + "id": 14193, "luminance": 0, "opaque": true, "replaceable": false, @@ -156752,7 +149795,7 @@ ] }, { - "id": 14824, + "id": 14194, "luminance": 0, "opaque": true, "replaceable": false, @@ -156763,7 +149806,7 @@ ] }, { - "id": 14825, + "id": 14195, "luminance": 0, "opaque": true, "replaceable": false, @@ -156774,7 +149817,7 @@ ] }, { - "id": 14826, + "id": 14196, "luminance": 0, "opaque": true, "replaceable": false, @@ -156784,7 +149827,7 @@ ] }, { - "id": 14827, + "id": 14197, "luminance": 0, "opaque": true, "replaceable": false, @@ -156795,7 +149838,7 @@ ] }, { - "id": 14828, + "id": 14198, "luminance": 0, "opaque": true, "replaceable": false, @@ -156806,7 +149849,7 @@ ] }, { - "id": 14829, + "id": 14199, "luminance": 0, "opaque": true, "replaceable": false, @@ -156817,7 +149860,7 @@ ] }, { - "id": 14830, + "id": 14200, "luminance": 0, "opaque": true, "replaceable": false, @@ -156829,7 +149872,7 @@ ] }, { - "id": 14831, + "id": 14201, "luminance": 0, "opaque": true, "replaceable": false, @@ -156841,7 +149884,7 @@ ] }, { - "id": 14832, + "id": 14202, "luminance": 0, "opaque": true, "replaceable": false, @@ -156852,7 +149895,7 @@ ] }, { - "id": 14833, + "id": 14203, "luminance": 0, "opaque": true, "replaceable": false, @@ -156864,7 +149907,7 @@ ] }, { - "id": 14834, + "id": 14204, "luminance": 0, "opaque": true, "replaceable": false, @@ -156876,7 +149919,7 @@ ] }, { - "id": 14835, + "id": 14205, "luminance": 0, "opaque": true, "replaceable": false, @@ -156886,7 +149929,7 @@ ] }, { - "id": 14836, + "id": 14206, "luminance": 0, "opaque": true, "replaceable": false, @@ -156896,7 +149939,7 @@ ] }, { - "id": 14837, + "id": 14207, "luminance": 0, "opaque": true, "replaceable": false, @@ -156906,7 +149949,7 @@ ] }, { - "id": 14838, + "id": 14208, "luminance": 0, "opaque": true, "replaceable": false, @@ -156916,7 +149959,7 @@ ] }, { - "id": 14839, + "id": 14209, "luminance": 0, "opaque": true, "replaceable": false, @@ -156926,7 +149969,7 @@ ] }, { - "id": 14840, + "id": 14210, "luminance": 0, "opaque": true, "replaceable": false, @@ -156936,7 +149979,7 @@ ] }, { - "id": 14841, + "id": 14211, "luminance": 0, "opaque": true, "replaceable": false, @@ -156948,7 +149991,7 @@ ] }, { - "id": 14842, + "id": 14212, "luminance": 0, "opaque": true, "replaceable": false, @@ -156961,7 +150004,7 @@ ] }, { - "id": 14843, + "id": 14213, "luminance": 0, "opaque": true, "replaceable": false, @@ -156974,7 +150017,7 @@ ] }, { - "id": 14844, + "id": 14214, "luminance": 0, "opaque": true, "replaceable": false, @@ -156986,7 +150029,7 @@ ] }, { - "id": 14845, + "id": 14215, "luminance": 0, "opaque": true, "replaceable": false, @@ -156999,7 +150042,7 @@ ] }, { - "id": 14846, + "id": 14216, "luminance": 0, "opaque": true, "replaceable": false, @@ -157012,7 +150055,7 @@ ] }, { - "id": 14847, + "id": 14217, "luminance": 0, "opaque": true, "replaceable": false, @@ -157022,7 +150065,7 @@ ] }, { - "id": 14848, + "id": 14218, "luminance": 0, "opaque": true, "replaceable": false, @@ -157033,7 +150076,7 @@ ] }, { - "id": 14849, + "id": 14219, "luminance": 0, "opaque": true, "replaceable": false, @@ -157044,7 +150087,7 @@ ] }, { - "id": 14850, + "id": 14220, "luminance": 0, "opaque": true, "replaceable": false, @@ -157054,7 +150097,7 @@ ] }, { - "id": 14851, + "id": 14221, "luminance": 0, "opaque": true, "replaceable": false, @@ -157065,7 +150108,7 @@ ] }, { - "id": 14852, + "id": 14222, "luminance": 0, "opaque": true, "replaceable": false, @@ -157076,7 +150119,7 @@ ] }, { - "id": 14853, + "id": 14223, "luminance": 0, "opaque": true, "replaceable": false, @@ -157088,7 +150131,7 @@ ] }, { - "id": 14854, + "id": 14224, "luminance": 0, "opaque": true, "replaceable": false, @@ -157101,7 +150144,7 @@ ] }, { - "id": 14855, + "id": 14225, "luminance": 0, "opaque": true, "replaceable": false, @@ -157114,7 +150157,7 @@ ] }, { - "id": 14856, + "id": 14226, "luminance": 0, "opaque": true, "replaceable": false, @@ -157126,7 +150169,7 @@ ] }, { - "id": 14857, + "id": 14227, "luminance": 0, "opaque": true, "replaceable": false, @@ -157139,7 +150182,7 @@ ] }, { - "id": 14858, + "id": 14228, "luminance": 0, "opaque": true, "replaceable": false, @@ -157152,7 +150195,7 @@ ] }, { - "id": 14859, + "id": 14229, "luminance": 0, "opaque": true, "replaceable": false, @@ -157162,7 +150205,7 @@ ] }, { - "id": 14860, + "id": 14230, "luminance": 0, "opaque": true, "replaceable": false, @@ -157173,7 +150216,7 @@ ] }, { - "id": 14861, + "id": 14231, "luminance": 0, "opaque": true, "replaceable": false, @@ -157184,7 +150227,7 @@ ] }, { - "id": 14862, + "id": 14232, "luminance": 0, "opaque": true, "replaceable": false, @@ -157194,7 +150237,7 @@ ] }, { - "id": 14863, + "id": 14233, "luminance": 0, "opaque": true, "replaceable": false, @@ -157205,7 +150248,7 @@ ] }, { - "id": 14864, + "id": 14234, "luminance": 0, "opaque": true, "replaceable": false, @@ -157216,7 +150259,7 @@ ] }, { - "id": 14865, + "id": 14235, "luminance": 0, "opaque": true, "replaceable": false, @@ -157226,7 +150269,7 @@ ] }, { - "id": 14866, + "id": 14236, "luminance": 0, "opaque": true, "replaceable": false, @@ -157237,7 +150280,7 @@ ] }, { - "id": 14867, + "id": 14237, "luminance": 0, "opaque": true, "replaceable": false, @@ -157248,7 +150291,7 @@ ] }, { - "id": 14868, + "id": 14238, "luminance": 0, "opaque": true, "replaceable": false, @@ -157258,7 +150301,7 @@ ] }, { - "id": 14869, + "id": 14239, "luminance": 0, "opaque": true, "replaceable": false, @@ -157269,7 +150312,7 @@ ] }, { - "id": 14870, + "id": 14240, "luminance": 0, "opaque": true, "replaceable": false, @@ -157280,7 +150323,7 @@ ] }, { - "id": 14871, + "id": 14241, "luminance": 0, "opaque": true, "replaceable": false, @@ -157289,7 +150332,7 @@ ] }, { - "id": 14872, + "id": 14242, "luminance": 0, "opaque": true, "replaceable": false, @@ -157298,7 +150341,7 @@ ] }, { - "id": 14873, + "id": 14243, "luminance": 0, "opaque": true, "replaceable": false, @@ -157307,7 +150350,7 @@ ] }, { - "id": 14874, + "id": 14244, "luminance": 0, "opaque": true, "replaceable": false, @@ -157316,7 +150359,7 @@ ] }, { - "id": 14875, + "id": 14245, "luminance": 0, "opaque": true, "replaceable": false, @@ -157325,7 +150368,7 @@ ] }, { - "id": 14876, + "id": 14246, "luminance": 0, "opaque": true, "replaceable": false, @@ -157334,7 +150377,7 @@ ] }, { - "id": 14877, + "id": 14247, "luminance": 0, "opaque": true, "replaceable": false, @@ -157345,7 +150388,7 @@ ] }, { - "id": 14878, + "id": 14248, "luminance": 0, "opaque": true, "replaceable": false, @@ -157357,7 +150400,7 @@ ] }, { - "id": 14879, + "id": 14249, "luminance": 0, "opaque": true, "replaceable": false, @@ -157369,7 +150412,7 @@ ] }, { - "id": 14880, + "id": 14250, "luminance": 0, "opaque": true, "replaceable": false, @@ -157380,7 +150423,7 @@ ] }, { - "id": 14881, + "id": 14251, "luminance": 0, "opaque": true, "replaceable": false, @@ -157392,7 +150435,7 @@ ] }, { - "id": 14882, + "id": 14252, "luminance": 0, "opaque": true, "replaceable": false, @@ -157404,7 +150447,7 @@ ] }, { - "id": 14883, + "id": 14253, "luminance": 0, "opaque": true, "replaceable": false, @@ -157414,7 +150457,7 @@ ] }, { - "id": 14884, + "id": 14254, "luminance": 0, "opaque": true, "replaceable": false, @@ -157424,7 +150467,7 @@ ] }, { - "id": 14885, + "id": 14255, "luminance": 0, "opaque": true, "replaceable": false, @@ -157434,7 +150477,7 @@ ] }, { - "id": 14886, + "id": 14256, "luminance": 0, "opaque": true, "replaceable": false, @@ -157444,7 +150487,7 @@ ] }, { - "id": 14887, + "id": 14257, "luminance": 0, "opaque": true, "replaceable": false, @@ -157454,7 +150497,7 @@ ] }, { - "id": 14888, + "id": 14258, "luminance": 0, "opaque": true, "replaceable": false, @@ -157464,7 +150507,7 @@ ] }, { - "id": 14889, + "id": 14259, "luminance": 0, "opaque": true, "replaceable": false, @@ -157475,7 +150518,7 @@ ] }, { - "id": 14890, + "id": 14260, "luminance": 0, "opaque": true, "replaceable": false, @@ -157487,7 +150530,7 @@ ] }, { - "id": 14891, + "id": 14261, "luminance": 0, "opaque": true, "replaceable": false, @@ -157499,7 +150542,7 @@ ] }, { - "id": 14892, + "id": 14262, "luminance": 0, "opaque": true, "replaceable": false, @@ -157510,7 +150553,7 @@ ] }, { - "id": 14893, + "id": 14263, "luminance": 0, "opaque": true, "replaceable": false, @@ -157522,7 +150565,7 @@ ] }, { - "id": 14894, + "id": 14264, "luminance": 0, "opaque": true, "replaceable": false, @@ -157534,7 +150577,7 @@ ] }, { - "id": 14895, + "id": 14265, "luminance": 0, "opaque": true, "replaceable": false, @@ -157544,7 +150587,7 @@ ] }, { - "id": 14896, + "id": 14266, "luminance": 0, "opaque": true, "replaceable": false, @@ -157554,7 +150597,7 @@ ] }, { - "id": 14897, + "id": 14267, "luminance": 0, "opaque": true, "replaceable": false, @@ -157564,7 +150607,7 @@ ] }, { - "id": 14898, + "id": 14268, "luminance": 0, "opaque": true, "replaceable": false, @@ -157574,7 +150617,7 @@ ] }, { - "id": 14899, + "id": 14269, "luminance": 0, "opaque": true, "replaceable": false, @@ -157584,7 +150627,7 @@ ] }, { - "id": 14900, + "id": 14270, "luminance": 0, "opaque": true, "replaceable": false, @@ -157594,7 +150637,7 @@ ] }, { - "id": 14901, + "id": 14271, "luminance": 0, "opaque": true, "replaceable": false, @@ -157605,7 +150648,7 @@ ] }, { - "id": 14902, + "id": 14272, "luminance": 0, "opaque": true, "replaceable": false, @@ -157617,7 +150660,7 @@ ] }, { - "id": 14903, + "id": 14273, "luminance": 0, "opaque": true, "replaceable": false, @@ -157629,7 +150672,7 @@ ] }, { - "id": 14904, + "id": 14274, "luminance": 0, "opaque": true, "replaceable": false, @@ -157640,7 +150683,7 @@ ] }, { - "id": 14905, + "id": 14275, "luminance": 0, "opaque": true, "replaceable": false, @@ -157652,7 +150695,7 @@ ] }, { - "id": 14906, + "id": 14276, "luminance": 0, "opaque": true, "replaceable": false, @@ -157664,7 +150707,7 @@ ] }, { - "id": 14907, + "id": 14277, "luminance": 0, "opaque": true, "replaceable": false, @@ -157674,7 +150717,7 @@ ] }, { - "id": 14908, + "id": 14278, "luminance": 0, "opaque": true, "replaceable": false, @@ -157684,7 +150727,7 @@ ] }, { - "id": 14909, + "id": 14279, "luminance": 0, "opaque": true, "replaceable": false, @@ -157694,7 +150737,7 @@ ] }, { - "id": 14910, + "id": 14280, "luminance": 0, "opaque": true, "replaceable": false, @@ -157704,7 +150747,7 @@ ] }, { - "id": 14911, + "id": 14281, "luminance": 0, "opaque": true, "replaceable": false, @@ -157714,7 +150757,7 @@ ] }, { - "id": 14912, + "id": 14282, "luminance": 0, "opaque": true, "replaceable": false, @@ -157724,7 +150767,7 @@ ] }, { - "id": 14913, + "id": 14283, "luminance": 0, "opaque": true, "replaceable": false, @@ -157736,7 +150779,7 @@ ] }, { - "id": 14914, + "id": 14284, "luminance": 0, "opaque": true, "replaceable": false, @@ -157749,7 +150792,7 @@ ] }, { - "id": 14915, + "id": 14285, "luminance": 0, "opaque": true, "replaceable": false, @@ -157762,7 +150805,7 @@ ] }, { - "id": 14916, + "id": 14286, "luminance": 0, "opaque": true, "replaceable": false, @@ -157774,7 +150817,7 @@ ] }, { - "id": 14917, + "id": 14287, "luminance": 0, "opaque": true, "replaceable": false, @@ -157787,7 +150830,7 @@ ] }, { - "id": 14918, + "id": 14288, "luminance": 0, "opaque": true, "replaceable": false, @@ -157800,7 +150843,7 @@ ] }, { - "id": 14919, + "id": 14289, "luminance": 0, "opaque": true, "replaceable": false, @@ -157810,7 +150853,7 @@ ] }, { - "id": 14920, + "id": 14290, "luminance": 0, "opaque": true, "replaceable": false, @@ -157821,7 +150864,7 @@ ] }, { - "id": 14921, + "id": 14291, "luminance": 0, "opaque": true, "replaceable": false, @@ -157832,7 +150875,7 @@ ] }, { - "id": 14922, + "id": 14292, "luminance": 0, "opaque": true, "replaceable": false, @@ -157842,7 +150885,7 @@ ] }, { - "id": 14923, + "id": 14293, "luminance": 0, "opaque": true, "replaceable": false, @@ -157853,7 +150896,7 @@ ] }, { - "id": 14924, + "id": 14294, "luminance": 0, "opaque": true, "replaceable": false, @@ -157864,7 +150907,7 @@ ] }, { - "id": 14925, + "id": 14295, "luminance": 0, "opaque": true, "replaceable": false, @@ -157876,7 +150919,7 @@ ] }, { - "id": 14926, + "id": 14296, "luminance": 0, "opaque": true, "replaceable": false, @@ -157889,7 +150932,7 @@ ] }, { - "id": 14927, + "id": 14297, "luminance": 0, "opaque": true, "replaceable": false, @@ -157902,7 +150945,7 @@ ] }, { - "id": 14928, + "id": 14298, "luminance": 0, "opaque": true, "replaceable": false, @@ -157914,7 +150957,7 @@ ] }, { - "id": 14929, + "id": 14299, "luminance": 0, "opaque": true, "replaceable": false, @@ -157927,7 +150970,7 @@ ] }, { - "id": 14930, + "id": 14300, "luminance": 0, "opaque": true, "replaceable": false, @@ -157940,7 +150983,7 @@ ] }, { - "id": 14931, + "id": 14301, "luminance": 0, "opaque": true, "replaceable": false, @@ -157950,7 +150993,7 @@ ] }, { - "id": 14932, + "id": 14302, "luminance": 0, "opaque": true, "replaceable": false, @@ -157961,7 +151004,7 @@ ] }, { - "id": 14933, + "id": 14303, "luminance": 0, "opaque": true, "replaceable": false, @@ -157972,7 +151015,7 @@ ] }, { - "id": 14934, + "id": 14304, "luminance": 0, "opaque": true, "replaceable": false, @@ -157982,7 +151025,7 @@ ] }, { - "id": 14935, + "id": 14305, "luminance": 0, "opaque": true, "replaceable": false, @@ -157993,7 +151036,7 @@ ] }, { - "id": 14936, + "id": 14306, "luminance": 0, "opaque": true, "replaceable": false, @@ -158004,7 +151047,7 @@ ] }, { - "id": 14937, + "id": 14307, "luminance": 0, "opaque": true, "replaceable": false, @@ -158015,7 +151058,7 @@ ] }, { - "id": 14938, + "id": 14308, "luminance": 0, "opaque": true, "replaceable": false, @@ -158027,7 +151070,7 @@ ] }, { - "id": 14939, + "id": 14309, "luminance": 0, "opaque": true, "replaceable": false, @@ -158039,7 +151082,7 @@ ] }, { - "id": 14940, + "id": 14310, "luminance": 0, "opaque": true, "replaceable": false, @@ -158050,7 +151093,7 @@ ] }, { - "id": 14941, + "id": 14311, "luminance": 0, "opaque": true, "replaceable": false, @@ -158062,7 +151105,7 @@ ] }, { - "id": 14942, + "id": 14312, "luminance": 0, "opaque": true, "replaceable": false, @@ -158074,7 +151117,7 @@ ] }, { - "id": 14943, + "id": 14313, "luminance": 0, "opaque": true, "replaceable": false, @@ -158084,7 +151127,7 @@ ] }, { - "id": 14944, + "id": 14314, "luminance": 0, "opaque": true, "replaceable": false, @@ -158094,7 +151137,7 @@ ] }, { - "id": 14945, + "id": 14315, "luminance": 0, "opaque": true, "replaceable": false, @@ -158104,7 +151147,7 @@ ] }, { - "id": 14946, + "id": 14316, "luminance": 0, "opaque": true, "replaceable": false, @@ -158114,7 +151157,7 @@ ] }, { - "id": 14947, + "id": 14317, "luminance": 0, "opaque": true, "replaceable": false, @@ -158124,7 +151167,7 @@ ] }, { - "id": 14948, + "id": 14318, "luminance": 0, "opaque": true, "replaceable": false, @@ -158134,7 +151177,7 @@ ] }, { - "id": 14949, + "id": 14319, "luminance": 0, "opaque": true, "replaceable": false, @@ -158146,7 +151189,7 @@ ] }, { - "id": 14950, + "id": 14320, "luminance": 0, "opaque": true, "replaceable": false, @@ -158159,7 +151202,7 @@ ] }, { - "id": 14951, + "id": 14321, "luminance": 0, "opaque": true, "replaceable": false, @@ -158172,7 +151215,7 @@ ] }, { - "id": 14952, + "id": 14322, "luminance": 0, "opaque": true, "replaceable": false, @@ -158184,7 +151227,7 @@ ] }, { - "id": 14953, + "id": 14323, "luminance": 0, "opaque": true, "replaceable": false, @@ -158197,7 +151240,7 @@ ] }, { - "id": 14954, + "id": 14324, "luminance": 0, "opaque": true, "replaceable": false, @@ -158210,7 +151253,7 @@ ] }, { - "id": 14955, + "id": 14325, "luminance": 0, "opaque": true, "replaceable": false, @@ -158220,7 +151263,7 @@ ] }, { - "id": 14956, + "id": 14326, "luminance": 0, "opaque": true, "replaceable": false, @@ -158231,7 +151274,7 @@ ] }, { - "id": 14957, + "id": 14327, "luminance": 0, "opaque": true, "replaceable": false, @@ -158242,7 +151285,7 @@ ] }, { - "id": 14958, + "id": 14328, "luminance": 0, "opaque": true, "replaceable": false, @@ -158252,7 +151295,7 @@ ] }, { - "id": 14959, + "id": 14329, "luminance": 0, "opaque": true, "replaceable": false, @@ -158263,7 +151306,7 @@ ] }, { - "id": 14960, + "id": 14330, "luminance": 0, "opaque": true, "replaceable": false, @@ -158274,7 +151317,7 @@ ] }, { - "id": 14961, + "id": 14331, "luminance": 0, "opaque": true, "replaceable": false, @@ -158286,7 +151329,7 @@ ] }, { - "id": 14962, + "id": 14332, "luminance": 0, "opaque": true, "replaceable": false, @@ -158299,7 +151342,7 @@ ] }, { - "id": 14963, + "id": 14333, "luminance": 0, "opaque": true, "replaceable": false, @@ -158312,7 +151355,7 @@ ] }, { - "id": 14964, + "id": 14334, "luminance": 0, "opaque": true, "replaceable": false, @@ -158324,7 +151367,7 @@ ] }, { - "id": 14965, + "id": 14335, "luminance": 0, "opaque": true, "replaceable": false, @@ -158337,7 +151380,7 @@ ] }, { - "id": 14966, + "id": 14336, "luminance": 0, "opaque": true, "replaceable": false, @@ -158350,7 +151393,7 @@ ] }, { - "id": 14967, + "id": 14337, "luminance": 0, "opaque": true, "replaceable": false, @@ -158360,7 +151403,7 @@ ] }, { - "id": 14968, + "id": 14338, "luminance": 0, "opaque": true, "replaceable": false, @@ -158371,7 +151414,7 @@ ] }, { - "id": 14969, + "id": 14339, "luminance": 0, "opaque": true, "replaceable": false, @@ -158382,7 +151425,7 @@ ] }, { - "id": 14970, + "id": 14340, "luminance": 0, "opaque": true, "replaceable": false, @@ -158392,7 +151435,7 @@ ] }, { - "id": 14971, + "id": 14341, "luminance": 0, "opaque": true, "replaceable": false, @@ -158403,7 +151446,7 @@ ] }, { - "id": 14972, + "id": 14342, "luminance": 0, "opaque": true, "replaceable": false, @@ -158416,9 +151459,9 @@ ] }, { - "id": 758, - "name": "mossy_stone_brick_wall", - "translation_key": "block.minecraft.mossy_stone_brick_wall", + "id": 760, + "name": "prismarine_wall", + "translation_key": "block.minecraft.prismarine_wall", "item_id": 378, "properties": [ { @@ -158468,10 +151511,10 @@ ] } ], - "default_state_id": 14976, + "default_state_id": 14346, "states": [ { - "id": 14973, + "id": 14343, "luminance": 0, "opaque": true, "replaceable": false, @@ -158480,7 +151523,7 @@ ] }, { - "id": 14974, + "id": 14344, "luminance": 0, "opaque": true, "replaceable": false, @@ -158491,7 +151534,7 @@ ] }, { - "id": 14975, + "id": 14345, "luminance": 0, "opaque": true, "replaceable": false, @@ -158502,7 +151545,7 @@ ] }, { - "id": 14976, + "id": 14346, "luminance": 0, "opaque": true, "replaceable": false, @@ -158511,7 +151554,7 @@ ] }, { - "id": 14977, + "id": 14347, "luminance": 0, "opaque": true, "replaceable": false, @@ -158522,7 +151565,7 @@ ] }, { - "id": 14978, + "id": 14348, "luminance": 0, "opaque": true, "replaceable": false, @@ -158533,14 +151576,14 @@ ] }, { - "id": 14979, + "id": 14349, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 14980, + "id": 14350, "luminance": 0, "opaque": true, "replaceable": false, @@ -158549,7 +151592,7 @@ ] }, { - "id": 14981, + "id": 14351, "luminance": 0, "opaque": true, "replaceable": false, @@ -158558,14 +151601,14 @@ ] }, { - "id": 14982, + "id": 14352, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 14983, + "id": 14353, "luminance": 0, "opaque": true, "replaceable": false, @@ -158574,7 +151617,7 @@ ] }, { - "id": 14984, + "id": 14354, "luminance": 0, "opaque": true, "replaceable": false, @@ -158583,7 +151626,7 @@ ] }, { - "id": 14985, + "id": 14355, "luminance": 0, "opaque": true, "replaceable": false, @@ -158593,7 +151636,7 @@ ] }, { - "id": 14986, + "id": 14356, "luminance": 0, "opaque": true, "replaceable": false, @@ -158605,7 +151648,7 @@ ] }, { - "id": 14987, + "id": 14357, "luminance": 0, "opaque": true, "replaceable": false, @@ -158617,7 +151660,7 @@ ] }, { - "id": 14988, + "id": 14358, "luminance": 0, "opaque": true, "replaceable": false, @@ -158627,7 +151670,7 @@ ] }, { - "id": 14989, + "id": 14359, "luminance": 0, "opaque": true, "replaceable": false, @@ -158639,7 +151682,7 @@ ] }, { - "id": 14990, + "id": 14360, "luminance": 0, "opaque": true, "replaceable": false, @@ -158651,7 +151694,7 @@ ] }, { - "id": 14991, + "id": 14361, "luminance": 0, "opaque": true, "replaceable": false, @@ -158660,7 +151703,7 @@ ] }, { - "id": 14992, + "id": 14362, "luminance": 0, "opaque": true, "replaceable": false, @@ -158670,7 +151713,7 @@ ] }, { - "id": 14993, + "id": 14363, "luminance": 0, "opaque": true, "replaceable": false, @@ -158680,7 +151723,7 @@ ] }, { - "id": 14994, + "id": 14364, "luminance": 0, "opaque": true, "replaceable": false, @@ -158689,7 +151732,7 @@ ] }, { - "id": 14995, + "id": 14365, "luminance": 0, "opaque": true, "replaceable": false, @@ -158699,7 +151742,7 @@ ] }, { - "id": 14996, + "id": 14366, "luminance": 0, "opaque": true, "replaceable": false, @@ -158709,7 +151752,7 @@ ] }, { - "id": 14997, + "id": 14367, "luminance": 0, "opaque": true, "replaceable": false, @@ -158719,7 +151762,7 @@ ] }, { - "id": 14998, + "id": 14368, "luminance": 0, "opaque": true, "replaceable": false, @@ -158731,7 +151774,7 @@ ] }, { - "id": 14999, + "id": 14369, "luminance": 0, "opaque": true, "replaceable": false, @@ -158743,7 +151786,7 @@ ] }, { - "id": 15000, + "id": 14370, "luminance": 0, "opaque": true, "replaceable": false, @@ -158753,7 +151796,7 @@ ] }, { - "id": 15001, + "id": 14371, "luminance": 0, "opaque": true, "replaceable": false, @@ -158765,7 +151808,7 @@ ] }, { - "id": 15002, + "id": 14372, "luminance": 0, "opaque": true, "replaceable": false, @@ -158777,7 +151820,7 @@ ] }, { - "id": 15003, + "id": 14373, "luminance": 0, "opaque": true, "replaceable": false, @@ -158786,7 +151829,7 @@ ] }, { - "id": 15004, + "id": 14374, "luminance": 0, "opaque": true, "replaceable": false, @@ -158796,7 +151839,7 @@ ] }, { - "id": 15005, + "id": 14375, "luminance": 0, "opaque": true, "replaceable": false, @@ -158806,7 +151849,7 @@ ] }, { - "id": 15006, + "id": 14376, "luminance": 0, "opaque": true, "replaceable": false, @@ -158815,7 +151858,7 @@ ] }, { - "id": 15007, + "id": 14377, "luminance": 0, "opaque": true, "replaceable": false, @@ -158825,7 +151868,7 @@ ] }, { - "id": 15008, + "id": 14378, "luminance": 0, "opaque": true, "replaceable": false, @@ -158835,7 +151878,7 @@ ] }, { - "id": 15009, + "id": 14379, "luminance": 0, "opaque": true, "replaceable": false, @@ -158845,7 +151888,7 @@ ] }, { - "id": 15010, + "id": 14380, "luminance": 0, "opaque": true, "replaceable": false, @@ -158857,7 +151900,7 @@ ] }, { - "id": 15011, + "id": 14381, "luminance": 0, "opaque": true, "replaceable": false, @@ -158869,7 +151912,7 @@ ] }, { - "id": 15012, + "id": 14382, "luminance": 0, "opaque": true, "replaceable": false, @@ -158879,7 +151922,7 @@ ] }, { - "id": 15013, + "id": 14383, "luminance": 0, "opaque": true, "replaceable": false, @@ -158891,7 +151934,7 @@ ] }, { - "id": 15014, + "id": 14384, "luminance": 0, "opaque": true, "replaceable": false, @@ -158903,7 +151946,7 @@ ] }, { - "id": 15015, + "id": 14385, "luminance": 0, "opaque": true, "replaceable": false, @@ -158912,7 +151955,7 @@ ] }, { - "id": 15016, + "id": 14386, "luminance": 0, "opaque": true, "replaceable": false, @@ -158922,7 +151965,7 @@ ] }, { - "id": 15017, + "id": 14387, "luminance": 0, "opaque": true, "replaceable": false, @@ -158932,7 +151975,7 @@ ] }, { - "id": 15018, + "id": 14388, "luminance": 0, "opaque": true, "replaceable": false, @@ -158941,7 +151984,7 @@ ] }, { - "id": 15019, + "id": 14389, "luminance": 0, "opaque": true, "replaceable": false, @@ -158951,7 +151994,7 @@ ] }, { - "id": 15020, + "id": 14390, "luminance": 0, "opaque": true, "replaceable": false, @@ -158961,7 +152004,7 @@ ] }, { - "id": 15021, + "id": 14391, "luminance": 0, "opaque": true, "replaceable": false, @@ -158972,7 +152015,7 @@ ] }, { - "id": 15022, + "id": 14392, "luminance": 0, "opaque": true, "replaceable": false, @@ -158985,7 +152028,7 @@ ] }, { - "id": 15023, + "id": 14393, "luminance": 0, "opaque": true, "replaceable": false, @@ -158998,7 +152041,7 @@ ] }, { - "id": 15024, + "id": 14394, "luminance": 0, "opaque": true, "replaceable": false, @@ -159009,7 +152052,7 @@ ] }, { - "id": 15025, + "id": 14395, "luminance": 0, "opaque": true, "replaceable": false, @@ -159022,7 +152065,7 @@ ] }, { - "id": 15026, + "id": 14396, "luminance": 0, "opaque": true, "replaceable": false, @@ -159035,7 +152078,7 @@ ] }, { - "id": 15027, + "id": 14397, "luminance": 0, "opaque": true, "replaceable": false, @@ -159044,7 +152087,7 @@ ] }, { - "id": 15028, + "id": 14398, "luminance": 0, "opaque": true, "replaceable": false, @@ -159055,7 +152098,7 @@ ] }, { - "id": 15029, + "id": 14399, "luminance": 0, "opaque": true, "replaceable": false, @@ -159066,7 +152109,7 @@ ] }, { - "id": 15030, + "id": 14400, "luminance": 0, "opaque": true, "replaceable": false, @@ -159075,7 +152118,7 @@ ] }, { - "id": 15031, + "id": 14401, "luminance": 0, "opaque": true, "replaceable": false, @@ -159086,7 +152129,7 @@ ] }, { - "id": 15032, + "id": 14402, "luminance": 0, "opaque": true, "replaceable": false, @@ -159097,7 +152140,7 @@ ] }, { - "id": 15033, + "id": 14403, "luminance": 0, "opaque": true, "replaceable": false, @@ -159108,7 +152151,7 @@ ] }, { - "id": 15034, + "id": 14404, "luminance": 0, "opaque": true, "replaceable": false, @@ -159121,7 +152164,7 @@ ] }, { - "id": 15035, + "id": 14405, "luminance": 0, "opaque": true, "replaceable": false, @@ -159134,7 +152177,7 @@ ] }, { - "id": 15036, + "id": 14406, "luminance": 0, "opaque": true, "replaceable": false, @@ -159145,7 +152188,7 @@ ] }, { - "id": 15037, + "id": 14407, "luminance": 0, "opaque": true, "replaceable": false, @@ -159158,7 +152201,7 @@ ] }, { - "id": 15038, + "id": 14408, "luminance": 0, "opaque": true, "replaceable": false, @@ -159171,7 +152214,7 @@ ] }, { - "id": 15039, + "id": 14409, "luminance": 0, "opaque": true, "replaceable": false, @@ -159180,7 +152223,7 @@ ] }, { - "id": 15040, + "id": 14410, "luminance": 0, "opaque": true, "replaceable": false, @@ -159191,7 +152234,7 @@ ] }, { - "id": 15041, + "id": 14411, "luminance": 0, "opaque": true, "replaceable": false, @@ -159202,7 +152245,7 @@ ] }, { - "id": 15042, + "id": 14412, "luminance": 0, "opaque": true, "replaceable": false, @@ -159211,7 +152254,7 @@ ] }, { - "id": 15043, + "id": 14413, "luminance": 0, "opaque": true, "replaceable": false, @@ -159222,7 +152265,7 @@ ] }, { - "id": 15044, + "id": 14414, "luminance": 0, "opaque": true, "replaceable": false, @@ -159233,7 +152276,7 @@ ] }, { - "id": 15045, + "id": 14415, "luminance": 0, "opaque": true, "replaceable": false, @@ -159243,7 +152286,7 @@ ] }, { - "id": 15046, + "id": 14416, "luminance": 0, "opaque": true, "replaceable": false, @@ -159255,7 +152298,7 @@ ] }, { - "id": 15047, + "id": 14417, "luminance": 0, "opaque": true, "replaceable": false, @@ -159267,7 +152310,7 @@ ] }, { - "id": 15048, + "id": 14418, "luminance": 0, "opaque": true, "replaceable": false, @@ -159277,7 +152320,7 @@ ] }, { - "id": 15049, + "id": 14419, "luminance": 0, "opaque": true, "replaceable": false, @@ -159289,7 +152332,7 @@ ] }, { - "id": 15050, + "id": 14420, "luminance": 0, "opaque": true, "replaceable": false, @@ -159301,7 +152344,7 @@ ] }, { - "id": 15051, + "id": 14421, "luminance": 0, "opaque": true, "replaceable": false, @@ -159310,7 +152353,7 @@ ] }, { - "id": 15052, + "id": 14422, "luminance": 0, "opaque": true, "replaceable": false, @@ -159320,7 +152363,7 @@ ] }, { - "id": 15053, + "id": 14423, "luminance": 0, "opaque": true, "replaceable": false, @@ -159330,7 +152373,7 @@ ] }, { - "id": 15054, + "id": 14424, "luminance": 0, "opaque": true, "replaceable": false, @@ -159339,7 +152382,7 @@ ] }, { - "id": 15055, + "id": 14425, "luminance": 0, "opaque": true, "replaceable": false, @@ -159349,7 +152392,7 @@ ] }, { - "id": 15056, + "id": 14426, "luminance": 0, "opaque": true, "replaceable": false, @@ -159359,7 +152402,7 @@ ] }, { - "id": 15057, + "id": 14427, "luminance": 0, "opaque": true, "replaceable": false, @@ -159370,7 +152413,7 @@ ] }, { - "id": 15058, + "id": 14428, "luminance": 0, "opaque": true, "replaceable": false, @@ -159383,7 +152426,7 @@ ] }, { - "id": 15059, + "id": 14429, "luminance": 0, "opaque": true, "replaceable": false, @@ -159396,7 +152439,7 @@ ] }, { - "id": 15060, + "id": 14430, "luminance": 0, "opaque": true, "replaceable": false, @@ -159407,7 +152450,7 @@ ] }, { - "id": 15061, + "id": 14431, "luminance": 0, "opaque": true, "replaceable": false, @@ -159420,7 +152463,7 @@ ] }, { - "id": 15062, + "id": 14432, "luminance": 0, "opaque": true, "replaceable": false, @@ -159433,7 +152476,7 @@ ] }, { - "id": 15063, + "id": 14433, "luminance": 0, "opaque": true, "replaceable": false, @@ -159442,7 +152485,7 @@ ] }, { - "id": 15064, + "id": 14434, "luminance": 0, "opaque": true, "replaceable": false, @@ -159453,7 +152496,7 @@ ] }, { - "id": 15065, + "id": 14435, "luminance": 0, "opaque": true, "replaceable": false, @@ -159464,7 +152507,7 @@ ] }, { - "id": 15066, + "id": 14436, "luminance": 0, "opaque": true, "replaceable": false, @@ -159473,7 +152516,7 @@ ] }, { - "id": 15067, + "id": 14437, "luminance": 0, "opaque": true, "replaceable": false, @@ -159484,7 +152527,7 @@ ] }, { - "id": 15068, + "id": 14438, "luminance": 0, "opaque": true, "replaceable": false, @@ -159495,7 +152538,7 @@ ] }, { - "id": 15069, + "id": 14439, "luminance": 0, "opaque": true, "replaceable": false, @@ -159506,7 +152549,7 @@ ] }, { - "id": 15070, + "id": 14440, "luminance": 0, "opaque": true, "replaceable": false, @@ -159519,7 +152562,7 @@ ] }, { - "id": 15071, + "id": 14441, "luminance": 0, "opaque": true, "replaceable": false, @@ -159532,7 +152575,7 @@ ] }, { - "id": 15072, + "id": 14442, "luminance": 0, "opaque": true, "replaceable": false, @@ -159543,7 +152586,7 @@ ] }, { - "id": 15073, + "id": 14443, "luminance": 0, "opaque": true, "replaceable": false, @@ -159556,7 +152599,7 @@ ] }, { - "id": 15074, + "id": 14444, "luminance": 0, "opaque": true, "replaceable": false, @@ -159569,7 +152612,7 @@ ] }, { - "id": 15075, + "id": 14445, "luminance": 0, "opaque": true, "replaceable": false, @@ -159578,7 +152621,7 @@ ] }, { - "id": 15076, + "id": 14446, "luminance": 0, "opaque": true, "replaceable": false, @@ -159589,7 +152632,7 @@ ] }, { - "id": 15077, + "id": 14447, "luminance": 0, "opaque": true, "replaceable": false, @@ -159600,7 +152643,7 @@ ] }, { - "id": 15078, + "id": 14448, "luminance": 0, "opaque": true, "replaceable": false, @@ -159609,7 +152652,7 @@ ] }, { - "id": 15079, + "id": 14449, "luminance": 0, "opaque": true, "replaceable": false, @@ -159620,7 +152663,7 @@ ] }, { - "id": 15080, + "id": 14450, "luminance": 0, "opaque": true, "replaceable": false, @@ -159631,7 +152674,7 @@ ] }, { - "id": 15081, + "id": 14451, "luminance": 0, "opaque": true, "replaceable": false, @@ -159641,7 +152684,7 @@ ] }, { - "id": 15082, + "id": 14452, "luminance": 0, "opaque": true, "replaceable": false, @@ -159652,7 +152695,7 @@ ] }, { - "id": 15083, + "id": 14453, "luminance": 0, "opaque": true, "replaceable": false, @@ -159663,7 +152706,7 @@ ] }, { - "id": 15084, + "id": 14454, "luminance": 0, "opaque": true, "replaceable": false, @@ -159673,7 +152716,7 @@ ] }, { - "id": 15085, + "id": 14455, "luminance": 0, "opaque": true, "replaceable": false, @@ -159684,7 +152727,7 @@ ] }, { - "id": 15086, + "id": 14456, "luminance": 0, "opaque": true, "replaceable": false, @@ -159695,7 +152738,7 @@ ] }, { - "id": 15087, + "id": 14457, "luminance": 0, "opaque": true, "replaceable": false, @@ -159704,7 +152747,7 @@ ] }, { - "id": 15088, + "id": 14458, "luminance": 0, "opaque": true, "replaceable": false, @@ -159713,7 +152756,7 @@ ] }, { - "id": 15089, + "id": 14459, "luminance": 0, "opaque": true, "replaceable": false, @@ -159722,7 +152765,7 @@ ] }, { - "id": 15090, + "id": 14460, "luminance": 0, "opaque": true, "replaceable": false, @@ -159731,7 +152774,7 @@ ] }, { - "id": 15091, + "id": 14461, "luminance": 0, "opaque": true, "replaceable": false, @@ -159740,7 +152783,7 @@ ] }, { - "id": 15092, + "id": 14462, "luminance": 0, "opaque": true, "replaceable": false, @@ -159749,7 +152792,7 @@ ] }, { - "id": 15093, + "id": 14463, "luminance": 0, "opaque": true, "replaceable": false, @@ -159760,7 +152803,7 @@ ] }, { - "id": 15094, + "id": 14464, "luminance": 0, "opaque": true, "replaceable": false, @@ -159772,7 +152815,7 @@ ] }, { - "id": 15095, + "id": 14465, "luminance": 0, "opaque": true, "replaceable": false, @@ -159784,7 +152827,7 @@ ] }, { - "id": 15096, + "id": 14466, "luminance": 0, "opaque": true, "replaceable": false, @@ -159795,7 +152838,7 @@ ] }, { - "id": 15097, + "id": 14467, "luminance": 0, "opaque": true, "replaceable": false, @@ -159807,7 +152850,7 @@ ] }, { - "id": 15098, + "id": 14468, "luminance": 0, "opaque": true, "replaceable": false, @@ -159819,7 +152862,7 @@ ] }, { - "id": 15099, + "id": 14469, "luminance": 0, "opaque": true, "replaceable": false, @@ -159829,7 +152872,7 @@ ] }, { - "id": 15100, + "id": 14470, "luminance": 0, "opaque": true, "replaceable": false, @@ -159839,7 +152882,7 @@ ] }, { - "id": 15101, + "id": 14471, "luminance": 0, "opaque": true, "replaceable": false, @@ -159849,7 +152892,7 @@ ] }, { - "id": 15102, + "id": 14472, "luminance": 0, "opaque": true, "replaceable": false, @@ -159859,7 +152902,7 @@ ] }, { - "id": 15103, + "id": 14473, "luminance": 0, "opaque": true, "replaceable": false, @@ -159869,7 +152912,7 @@ ] }, { - "id": 15104, + "id": 14474, "luminance": 0, "opaque": true, "replaceable": false, @@ -159879,7 +152922,7 @@ ] }, { - "id": 15105, + "id": 14475, "luminance": 0, "opaque": true, "replaceable": false, @@ -159890,7 +152933,7 @@ ] }, { - "id": 15106, + "id": 14476, "luminance": 0, "opaque": true, "replaceable": false, @@ -159902,7 +152945,7 @@ ] }, { - "id": 15107, + "id": 14477, "luminance": 0, "opaque": true, "replaceable": false, @@ -159914,7 +152957,7 @@ ] }, { - "id": 15108, + "id": 14478, "luminance": 0, "opaque": true, "replaceable": false, @@ -159925,7 +152968,7 @@ ] }, { - "id": 15109, + "id": 14479, "luminance": 0, "opaque": true, "replaceable": false, @@ -159937,7 +152980,7 @@ ] }, { - "id": 15110, + "id": 14480, "luminance": 0, "opaque": true, "replaceable": false, @@ -159949,7 +152992,7 @@ ] }, { - "id": 15111, + "id": 14481, "luminance": 0, "opaque": true, "replaceable": false, @@ -159959,7 +153002,7 @@ ] }, { - "id": 15112, + "id": 14482, "luminance": 0, "opaque": true, "replaceable": false, @@ -159969,7 +153012,7 @@ ] }, { - "id": 15113, + "id": 14483, "luminance": 0, "opaque": true, "replaceable": false, @@ -159979,7 +153022,7 @@ ] }, { - "id": 15114, + "id": 14484, "luminance": 0, "opaque": true, "replaceable": false, @@ -159989,7 +153032,7 @@ ] }, { - "id": 15115, + "id": 14485, "luminance": 0, "opaque": true, "replaceable": false, @@ -159999,7 +153042,7 @@ ] }, { - "id": 15116, + "id": 14486, "luminance": 0, "opaque": true, "replaceable": false, @@ -160009,7 +153052,7 @@ ] }, { - "id": 15117, + "id": 14487, "luminance": 0, "opaque": true, "replaceable": false, @@ -160020,7 +153063,7 @@ ] }, { - "id": 15118, + "id": 14488, "luminance": 0, "opaque": true, "replaceable": false, @@ -160032,7 +153075,7 @@ ] }, { - "id": 15119, + "id": 14489, "luminance": 0, "opaque": true, "replaceable": false, @@ -160044,7 +153087,7 @@ ] }, { - "id": 15120, + "id": 14490, "luminance": 0, "opaque": true, "replaceable": false, @@ -160055,7 +153098,7 @@ ] }, { - "id": 15121, + "id": 14491, "luminance": 0, "opaque": true, "replaceable": false, @@ -160067,7 +153110,7 @@ ] }, { - "id": 15122, + "id": 14492, "luminance": 0, "opaque": true, "replaceable": false, @@ -160079,7 +153122,7 @@ ] }, { - "id": 15123, + "id": 14493, "luminance": 0, "opaque": true, "replaceable": false, @@ -160089,7 +153132,7 @@ ] }, { - "id": 15124, + "id": 14494, "luminance": 0, "opaque": true, "replaceable": false, @@ -160099,7 +153142,7 @@ ] }, { - "id": 15125, + "id": 14495, "luminance": 0, "opaque": true, "replaceable": false, @@ -160109,7 +153152,7 @@ ] }, { - "id": 15126, + "id": 14496, "luminance": 0, "opaque": true, "replaceable": false, @@ -160119,7 +153162,7 @@ ] }, { - "id": 15127, + "id": 14497, "luminance": 0, "opaque": true, "replaceable": false, @@ -160129,7 +153172,7 @@ ] }, { - "id": 15128, + "id": 14498, "luminance": 0, "opaque": true, "replaceable": false, @@ -160139,7 +153182,7 @@ ] }, { - "id": 15129, + "id": 14499, "luminance": 0, "opaque": true, "replaceable": false, @@ -160151,7 +153194,7 @@ ] }, { - "id": 15130, + "id": 14500, "luminance": 0, "opaque": true, "replaceable": false, @@ -160164,7 +153207,7 @@ ] }, { - "id": 15131, + "id": 14501, "luminance": 0, "opaque": true, "replaceable": false, @@ -160177,7 +153220,7 @@ ] }, { - "id": 15132, + "id": 14502, "luminance": 0, "opaque": true, "replaceable": false, @@ -160189,7 +153232,7 @@ ] }, { - "id": 15133, + "id": 14503, "luminance": 0, "opaque": true, "replaceable": false, @@ -160202,7 +153245,7 @@ ] }, { - "id": 15134, + "id": 14504, "luminance": 0, "opaque": true, "replaceable": false, @@ -160215,7 +153258,7 @@ ] }, { - "id": 15135, + "id": 14505, "luminance": 0, "opaque": true, "replaceable": false, @@ -160225,7 +153268,7 @@ ] }, { - "id": 15136, + "id": 14506, "luminance": 0, "opaque": true, "replaceable": false, @@ -160236,7 +153279,7 @@ ] }, { - "id": 15137, + "id": 14507, "luminance": 0, "opaque": true, "replaceable": false, @@ -160247,7 +153290,7 @@ ] }, { - "id": 15138, + "id": 14508, "luminance": 0, "opaque": true, "replaceable": false, @@ -160257,7 +153300,7 @@ ] }, { - "id": 15139, + "id": 14509, "luminance": 0, "opaque": true, "replaceable": false, @@ -160268,7 +153311,7 @@ ] }, { - "id": 15140, + "id": 14510, "luminance": 0, "opaque": true, "replaceable": false, @@ -160279,7 +153322,7 @@ ] }, { - "id": 15141, + "id": 14511, "luminance": 0, "opaque": true, "replaceable": false, @@ -160291,7 +153334,7 @@ ] }, { - "id": 15142, + "id": 14512, "luminance": 0, "opaque": true, "replaceable": false, @@ -160304,7 +153347,7 @@ ] }, { - "id": 15143, + "id": 14513, "luminance": 0, "opaque": true, "replaceable": false, @@ -160317,7 +153360,7 @@ ] }, { - "id": 15144, + "id": 14514, "luminance": 0, "opaque": true, "replaceable": false, @@ -160329,7 +153372,7 @@ ] }, { - "id": 15145, + "id": 14515, "luminance": 0, "opaque": true, "replaceable": false, @@ -160342,7 +153385,7 @@ ] }, { - "id": 15146, + "id": 14516, "luminance": 0, "opaque": true, "replaceable": false, @@ -160355,7 +153398,7 @@ ] }, { - "id": 15147, + "id": 14517, "luminance": 0, "opaque": true, "replaceable": false, @@ -160365,7 +153408,7 @@ ] }, { - "id": 15148, + "id": 14518, "luminance": 0, "opaque": true, "replaceable": false, @@ -160376,7 +153419,7 @@ ] }, { - "id": 15149, + "id": 14519, "luminance": 0, "opaque": true, "replaceable": false, @@ -160387,7 +153430,7 @@ ] }, { - "id": 15150, + "id": 14520, "luminance": 0, "opaque": true, "replaceable": false, @@ -160397,7 +153440,7 @@ ] }, { - "id": 15151, + "id": 14521, "luminance": 0, "opaque": true, "replaceable": false, @@ -160408,7 +153451,7 @@ ] }, { - "id": 15152, + "id": 14522, "luminance": 0, "opaque": true, "replaceable": false, @@ -160419,7 +153462,7 @@ ] }, { - "id": 15153, + "id": 14523, "luminance": 0, "opaque": true, "replaceable": false, @@ -160430,7 +153473,7 @@ ] }, { - "id": 15154, + "id": 14524, "luminance": 0, "opaque": true, "replaceable": false, @@ -160442,7 +153485,7 @@ ] }, { - "id": 15155, + "id": 14525, "luminance": 0, "opaque": true, "replaceable": false, @@ -160454,7 +153497,7 @@ ] }, { - "id": 15156, + "id": 14526, "luminance": 0, "opaque": true, "replaceable": false, @@ -160465,7 +153508,7 @@ ] }, { - "id": 15157, + "id": 14527, "luminance": 0, "opaque": true, "replaceable": false, @@ -160477,7 +153520,7 @@ ] }, { - "id": 15158, + "id": 14528, "luminance": 0, "opaque": true, "replaceable": false, @@ -160489,7 +153532,7 @@ ] }, { - "id": 15159, + "id": 14529, "luminance": 0, "opaque": true, "replaceable": false, @@ -160499,7 +153542,7 @@ ] }, { - "id": 15160, + "id": 14530, "luminance": 0, "opaque": true, "replaceable": false, @@ -160509,7 +153552,7 @@ ] }, { - "id": 15161, + "id": 14531, "luminance": 0, "opaque": true, "replaceable": false, @@ -160519,7 +153562,7 @@ ] }, { - "id": 15162, + "id": 14532, "luminance": 0, "opaque": true, "replaceable": false, @@ -160529,7 +153572,7 @@ ] }, { - "id": 15163, + "id": 14533, "luminance": 0, "opaque": true, "replaceable": false, @@ -160539,7 +153582,7 @@ ] }, { - "id": 15164, + "id": 14534, "luminance": 0, "opaque": true, "replaceable": false, @@ -160549,7 +153592,7 @@ ] }, { - "id": 15165, + "id": 14535, "luminance": 0, "opaque": true, "replaceable": false, @@ -160561,7 +153604,7 @@ ] }, { - "id": 15166, + "id": 14536, "luminance": 0, "opaque": true, "replaceable": false, @@ -160574,7 +153617,7 @@ ] }, { - "id": 15167, + "id": 14537, "luminance": 0, "opaque": true, "replaceable": false, @@ -160587,7 +153630,7 @@ ] }, { - "id": 15168, + "id": 14538, "luminance": 0, "opaque": true, "replaceable": false, @@ -160599,7 +153642,7 @@ ] }, { - "id": 15169, + "id": 14539, "luminance": 0, "opaque": true, "replaceable": false, @@ -160612,7 +153655,7 @@ ] }, { - "id": 15170, + "id": 14540, "luminance": 0, "opaque": true, "replaceable": false, @@ -160625,7 +153668,7 @@ ] }, { - "id": 15171, + "id": 14541, "luminance": 0, "opaque": true, "replaceable": false, @@ -160635,7 +153678,7 @@ ] }, { - "id": 15172, + "id": 14542, "luminance": 0, "opaque": true, "replaceable": false, @@ -160646,7 +153689,7 @@ ] }, { - "id": 15173, + "id": 14543, "luminance": 0, "opaque": true, "replaceable": false, @@ -160657,7 +153700,7 @@ ] }, { - "id": 15174, + "id": 14544, "luminance": 0, "opaque": true, "replaceable": false, @@ -160667,7 +153710,7 @@ ] }, { - "id": 15175, + "id": 14545, "luminance": 0, "opaque": true, "replaceable": false, @@ -160678,7 +153721,7 @@ ] }, { - "id": 15176, + "id": 14546, "luminance": 0, "opaque": true, "replaceable": false, @@ -160689,7 +153732,7 @@ ] }, { - "id": 15177, + "id": 14547, "luminance": 0, "opaque": true, "replaceable": false, @@ -160701,7 +153744,7 @@ ] }, { - "id": 15178, + "id": 14548, "luminance": 0, "opaque": true, "replaceable": false, @@ -160714,7 +153757,7 @@ ] }, { - "id": 15179, + "id": 14549, "luminance": 0, "opaque": true, "replaceable": false, @@ -160727,7 +153770,7 @@ ] }, { - "id": 15180, + "id": 14550, "luminance": 0, "opaque": true, "replaceable": false, @@ -160739,7 +153782,7 @@ ] }, { - "id": 15181, + "id": 14551, "luminance": 0, "opaque": true, "replaceable": false, @@ -160752,7 +153795,7 @@ ] }, { - "id": 15182, + "id": 14552, "luminance": 0, "opaque": true, "replaceable": false, @@ -160765,7 +153808,7 @@ ] }, { - "id": 15183, + "id": 14553, "luminance": 0, "opaque": true, "replaceable": false, @@ -160775,7 +153818,7 @@ ] }, { - "id": 15184, + "id": 14554, "luminance": 0, "opaque": true, "replaceable": false, @@ -160786,7 +153829,7 @@ ] }, { - "id": 15185, + "id": 14555, "luminance": 0, "opaque": true, "replaceable": false, @@ -160797,7 +153840,7 @@ ] }, { - "id": 15186, + "id": 14556, "luminance": 0, "opaque": true, "replaceable": false, @@ -160807,7 +153850,7 @@ ] }, { - "id": 15187, + "id": 14557, "luminance": 0, "opaque": true, "replaceable": false, @@ -160818,7 +153861,7 @@ ] }, { - "id": 15188, + "id": 14558, "luminance": 0, "opaque": true, "replaceable": false, @@ -160829,7 +153872,7 @@ ] }, { - "id": 15189, + "id": 14559, "luminance": 0, "opaque": true, "replaceable": false, @@ -160839,7 +153882,7 @@ ] }, { - "id": 15190, + "id": 14560, "luminance": 0, "opaque": true, "replaceable": false, @@ -160850,7 +153893,7 @@ ] }, { - "id": 15191, + "id": 14561, "luminance": 0, "opaque": true, "replaceable": false, @@ -160861,7 +153904,7 @@ ] }, { - "id": 15192, + "id": 14562, "luminance": 0, "opaque": true, "replaceable": false, @@ -160871,7 +153914,7 @@ ] }, { - "id": 15193, + "id": 14563, "luminance": 0, "opaque": true, "replaceable": false, @@ -160882,7 +153925,7 @@ ] }, { - "id": 15194, + "id": 14564, "luminance": 0, "opaque": true, "replaceable": false, @@ -160893,7 +153936,7 @@ ] }, { - "id": 15195, + "id": 14565, "luminance": 0, "opaque": true, "replaceable": false, @@ -160902,7 +153945,7 @@ ] }, { - "id": 15196, + "id": 14566, "luminance": 0, "opaque": true, "replaceable": false, @@ -160911,7 +153954,7 @@ ] }, { - "id": 15197, + "id": 14567, "luminance": 0, "opaque": true, "replaceable": false, @@ -160920,7 +153963,7 @@ ] }, { - "id": 15198, + "id": 14568, "luminance": 0, "opaque": true, "replaceable": false, @@ -160929,7 +153972,7 @@ ] }, { - "id": 15199, + "id": 14569, "luminance": 0, "opaque": true, "replaceable": false, @@ -160938,7 +153981,7 @@ ] }, { - "id": 15200, + "id": 14570, "luminance": 0, "opaque": true, "replaceable": false, @@ -160947,7 +153990,7 @@ ] }, { - "id": 15201, + "id": 14571, "luminance": 0, "opaque": true, "replaceable": false, @@ -160958,7 +154001,7 @@ ] }, { - "id": 15202, + "id": 14572, "luminance": 0, "opaque": true, "replaceable": false, @@ -160970,7 +154013,7 @@ ] }, { - "id": 15203, + "id": 14573, "luminance": 0, "opaque": true, "replaceable": false, @@ -160982,7 +154025,7 @@ ] }, { - "id": 15204, + "id": 14574, "luminance": 0, "opaque": true, "replaceable": false, @@ -160993,7 +154036,7 @@ ] }, { - "id": 15205, + "id": 14575, "luminance": 0, "opaque": true, "replaceable": false, @@ -161005,7 +154048,7 @@ ] }, { - "id": 15206, + "id": 14576, "luminance": 0, "opaque": true, "replaceable": false, @@ -161017,7 +154060,7 @@ ] }, { - "id": 15207, + "id": 14577, "luminance": 0, "opaque": true, "replaceable": false, @@ -161027,7 +154070,7 @@ ] }, { - "id": 15208, + "id": 14578, "luminance": 0, "opaque": true, "replaceable": false, @@ -161037,7 +154080,7 @@ ] }, { - "id": 15209, + "id": 14579, "luminance": 0, "opaque": true, "replaceable": false, @@ -161047,7 +154090,7 @@ ] }, { - "id": 15210, + "id": 14580, "luminance": 0, "opaque": true, "replaceable": false, @@ -161057,7 +154100,7 @@ ] }, { - "id": 15211, + "id": 14581, "luminance": 0, "opaque": true, "replaceable": false, @@ -161067,7 +154110,7 @@ ] }, { - "id": 15212, + "id": 14582, "luminance": 0, "opaque": true, "replaceable": false, @@ -161077,7 +154120,7 @@ ] }, { - "id": 15213, + "id": 14583, "luminance": 0, "opaque": true, "replaceable": false, @@ -161088,7 +154131,7 @@ ] }, { - "id": 15214, + "id": 14584, "luminance": 0, "opaque": true, "replaceable": false, @@ -161100,7 +154143,7 @@ ] }, { - "id": 15215, + "id": 14585, "luminance": 0, "opaque": true, "replaceable": false, @@ -161112,7 +154155,7 @@ ] }, { - "id": 15216, + "id": 14586, "luminance": 0, "opaque": true, "replaceable": false, @@ -161123,7 +154166,7 @@ ] }, { - "id": 15217, + "id": 14587, "luminance": 0, "opaque": true, "replaceable": false, @@ -161135,7 +154178,7 @@ ] }, { - "id": 15218, + "id": 14588, "luminance": 0, "opaque": true, "replaceable": false, @@ -161147,7 +154190,7 @@ ] }, { - "id": 15219, + "id": 14589, "luminance": 0, "opaque": true, "replaceable": false, @@ -161157,7 +154200,7 @@ ] }, { - "id": 15220, + "id": 14590, "luminance": 0, "opaque": true, "replaceable": false, @@ -161167,7 +154210,7 @@ ] }, { - "id": 15221, + "id": 14591, "luminance": 0, "opaque": true, "replaceable": false, @@ -161177,7 +154220,7 @@ ] }, { - "id": 15222, + "id": 14592, "luminance": 0, "opaque": true, "replaceable": false, @@ -161187,7 +154230,7 @@ ] }, { - "id": 15223, + "id": 14593, "luminance": 0, "opaque": true, "replaceable": false, @@ -161197,7 +154240,7 @@ ] }, { - "id": 15224, + "id": 14594, "luminance": 0, "opaque": true, "replaceable": false, @@ -161207,7 +154250,7 @@ ] }, { - "id": 15225, + "id": 14595, "luminance": 0, "opaque": true, "replaceable": false, @@ -161218,7 +154261,7 @@ ] }, { - "id": 15226, + "id": 14596, "luminance": 0, "opaque": true, "replaceable": false, @@ -161230,7 +154273,7 @@ ] }, { - "id": 15227, + "id": 14597, "luminance": 0, "opaque": true, "replaceable": false, @@ -161242,7 +154285,7 @@ ] }, { - "id": 15228, + "id": 14598, "luminance": 0, "opaque": true, "replaceable": false, @@ -161253,7 +154296,7 @@ ] }, { - "id": 15229, + "id": 14599, "luminance": 0, "opaque": true, "replaceable": false, @@ -161265,7 +154308,7 @@ ] }, { - "id": 15230, + "id": 14600, "luminance": 0, "opaque": true, "replaceable": false, @@ -161277,7 +154320,7 @@ ] }, { - "id": 15231, + "id": 14601, "luminance": 0, "opaque": true, "replaceable": false, @@ -161287,7 +154330,7 @@ ] }, { - "id": 15232, + "id": 14602, "luminance": 0, "opaque": true, "replaceable": false, @@ -161297,7 +154340,7 @@ ] }, { - "id": 15233, + "id": 14603, "luminance": 0, "opaque": true, "replaceable": false, @@ -161307,7 +154350,7 @@ ] }, { - "id": 15234, + "id": 14604, "luminance": 0, "opaque": true, "replaceable": false, @@ -161317,7 +154360,7 @@ ] }, { - "id": 15235, + "id": 14605, "luminance": 0, "opaque": true, "replaceable": false, @@ -161327,7 +154370,7 @@ ] }, { - "id": 15236, + "id": 14606, "luminance": 0, "opaque": true, "replaceable": false, @@ -161337,7 +154380,7 @@ ] }, { - "id": 15237, + "id": 14607, "luminance": 0, "opaque": true, "replaceable": false, @@ -161349,7 +154392,7 @@ ] }, { - "id": 15238, + "id": 14608, "luminance": 0, "opaque": true, "replaceable": false, @@ -161362,7 +154405,7 @@ ] }, { - "id": 15239, + "id": 14609, "luminance": 0, "opaque": true, "replaceable": false, @@ -161375,7 +154418,7 @@ ] }, { - "id": 15240, + "id": 14610, "luminance": 0, "opaque": true, "replaceable": false, @@ -161387,7 +154430,7 @@ ] }, { - "id": 15241, + "id": 14611, "luminance": 0, "opaque": true, "replaceable": false, @@ -161400,7 +154443,7 @@ ] }, { - "id": 15242, + "id": 14612, "luminance": 0, "opaque": true, "replaceable": false, @@ -161413,7 +154456,7 @@ ] }, { - "id": 15243, + "id": 14613, "luminance": 0, "opaque": true, "replaceable": false, @@ -161423,7 +154466,7 @@ ] }, { - "id": 15244, + "id": 14614, "luminance": 0, "opaque": true, "replaceable": false, @@ -161434,7 +154477,7 @@ ] }, { - "id": 15245, + "id": 14615, "luminance": 0, "opaque": true, "replaceable": false, @@ -161445,7 +154488,7 @@ ] }, { - "id": 15246, + "id": 14616, "luminance": 0, "opaque": true, "replaceable": false, @@ -161455,7 +154498,7 @@ ] }, { - "id": 15247, + "id": 14617, "luminance": 0, "opaque": true, "replaceable": false, @@ -161466,7 +154509,7 @@ ] }, { - "id": 15248, + "id": 14618, "luminance": 0, "opaque": true, "replaceable": false, @@ -161477,7 +154520,7 @@ ] }, { - "id": 15249, + "id": 14619, "luminance": 0, "opaque": true, "replaceable": false, @@ -161489,7 +154532,7 @@ ] }, { - "id": 15250, + "id": 14620, "luminance": 0, "opaque": true, "replaceable": false, @@ -161502,7 +154545,7 @@ ] }, { - "id": 15251, + "id": 14621, "luminance": 0, "opaque": true, "replaceable": false, @@ -161515,7 +154558,7 @@ ] }, { - "id": 15252, + "id": 14622, "luminance": 0, "opaque": true, "replaceable": false, @@ -161527,7 +154570,7 @@ ] }, { - "id": 15253, + "id": 14623, "luminance": 0, "opaque": true, "replaceable": false, @@ -161540,7 +154583,7 @@ ] }, { - "id": 15254, + "id": 14624, "luminance": 0, "opaque": true, "replaceable": false, @@ -161553,7 +154596,7 @@ ] }, { - "id": 15255, + "id": 14625, "luminance": 0, "opaque": true, "replaceable": false, @@ -161563,7 +154606,7 @@ ] }, { - "id": 15256, + "id": 14626, "luminance": 0, "opaque": true, "replaceable": false, @@ -161574,7 +154617,7 @@ ] }, { - "id": 15257, + "id": 14627, "luminance": 0, "opaque": true, "replaceable": false, @@ -161585,7 +154628,7 @@ ] }, { - "id": 15258, + "id": 14628, "luminance": 0, "opaque": true, "replaceable": false, @@ -161595,7 +154638,7 @@ ] }, { - "id": 15259, + "id": 14629, "luminance": 0, "opaque": true, "replaceable": false, @@ -161606,7 +154649,7 @@ ] }, { - "id": 15260, + "id": 14630, "luminance": 0, "opaque": true, "replaceable": false, @@ -161617,7 +154660,7 @@ ] }, { - "id": 15261, + "id": 14631, "luminance": 0, "opaque": true, "replaceable": false, @@ -161628,7 +154671,7 @@ ] }, { - "id": 15262, + "id": 14632, "luminance": 0, "opaque": true, "replaceable": false, @@ -161640,7 +154683,7 @@ ] }, { - "id": 15263, + "id": 14633, "luminance": 0, "opaque": true, "replaceable": false, @@ -161652,7 +154695,7 @@ ] }, { - "id": 15264, + "id": 14634, "luminance": 0, "opaque": true, "replaceable": false, @@ -161663,7 +154706,7 @@ ] }, { - "id": 15265, + "id": 14635, "luminance": 0, "opaque": true, "replaceable": false, @@ -161675,7 +154718,7 @@ ] }, { - "id": 15266, + "id": 14636, "luminance": 0, "opaque": true, "replaceable": false, @@ -161687,7 +154730,7 @@ ] }, { - "id": 15267, + "id": 14637, "luminance": 0, "opaque": true, "replaceable": false, @@ -161697,7 +154740,7 @@ ] }, { - "id": 15268, + "id": 14638, "luminance": 0, "opaque": true, "replaceable": false, @@ -161707,7 +154750,7 @@ ] }, { - "id": 15269, + "id": 14639, "luminance": 0, "opaque": true, "replaceable": false, @@ -161717,7 +154760,7 @@ ] }, { - "id": 15270, + "id": 14640, "luminance": 0, "opaque": true, "replaceable": false, @@ -161727,7 +154770,7 @@ ] }, { - "id": 15271, + "id": 14641, "luminance": 0, "opaque": true, "replaceable": false, @@ -161737,7 +154780,7 @@ ] }, { - "id": 15272, + "id": 14642, "luminance": 0, "opaque": true, "replaceable": false, @@ -161747,7 +154790,7 @@ ] }, { - "id": 15273, + "id": 14643, "luminance": 0, "opaque": true, "replaceable": false, @@ -161759,7 +154802,7 @@ ] }, { - "id": 15274, + "id": 14644, "luminance": 0, "opaque": true, "replaceable": false, @@ -161772,7 +154815,7 @@ ] }, { - "id": 15275, + "id": 14645, "luminance": 0, "opaque": true, "replaceable": false, @@ -161785,7 +154828,7 @@ ] }, { - "id": 15276, + "id": 14646, "luminance": 0, "opaque": true, "replaceable": false, @@ -161797,7 +154840,7 @@ ] }, { - "id": 15277, + "id": 14647, "luminance": 0, "opaque": true, "replaceable": false, @@ -161810,7 +154853,7 @@ ] }, { - "id": 15278, + "id": 14648, "luminance": 0, "opaque": true, "replaceable": false, @@ -161823,7 +154866,7 @@ ] }, { - "id": 15279, + "id": 14649, "luminance": 0, "opaque": true, "replaceable": false, @@ -161833,7 +154876,7 @@ ] }, { - "id": 15280, + "id": 14650, "luminance": 0, "opaque": true, "replaceable": false, @@ -161844,7 +154887,7 @@ ] }, { - "id": 15281, + "id": 14651, "luminance": 0, "opaque": true, "replaceable": false, @@ -161855,7 +154898,7 @@ ] }, { - "id": 15282, + "id": 14652, "luminance": 0, "opaque": true, "replaceable": false, @@ -161865,7 +154908,7 @@ ] }, { - "id": 15283, + "id": 14653, "luminance": 0, "opaque": true, "replaceable": false, @@ -161876,7 +154919,7 @@ ] }, { - "id": 15284, + "id": 14654, "luminance": 0, "opaque": true, "replaceable": false, @@ -161887,7 +154930,7 @@ ] }, { - "id": 15285, + "id": 14655, "luminance": 0, "opaque": true, "replaceable": false, @@ -161899,7 +154942,7 @@ ] }, { - "id": 15286, + "id": 14656, "luminance": 0, "opaque": true, "replaceable": false, @@ -161912,7 +154955,7 @@ ] }, { - "id": 15287, + "id": 14657, "luminance": 0, "opaque": true, "replaceable": false, @@ -161925,7 +154968,7 @@ ] }, { - "id": 15288, + "id": 14658, "luminance": 0, "opaque": true, "replaceable": false, @@ -161937,7 +154980,7 @@ ] }, { - "id": 15289, + "id": 14659, "luminance": 0, "opaque": true, "replaceable": false, @@ -161950,7 +154993,7 @@ ] }, { - "id": 15290, + "id": 14660, "luminance": 0, "opaque": true, "replaceable": false, @@ -161963,7 +155006,7 @@ ] }, { - "id": 15291, + "id": 14661, "luminance": 0, "opaque": true, "replaceable": false, @@ -161973,7 +155016,7 @@ ] }, { - "id": 15292, + "id": 14662, "luminance": 0, "opaque": true, "replaceable": false, @@ -161984,7 +155027,7 @@ ] }, { - "id": 15293, + "id": 14663, "luminance": 0, "opaque": true, "replaceable": false, @@ -161995,7 +155038,7 @@ ] }, { - "id": 15294, + "id": 14664, "luminance": 0, "opaque": true, "replaceable": false, @@ -162005,7 +155048,7 @@ ] }, { - "id": 15295, + "id": 14665, "luminance": 0, "opaque": true, "replaceable": false, @@ -162016,7 +155059,7 @@ ] }, { - "id": 15296, + "id": 14666, "luminance": 0, "opaque": true, "replaceable": false, @@ -162029,9 +155072,9 @@ ] }, { - "id": 759, - "name": "granite_wall", - "translation_key": "block.minecraft.granite_wall", + "id": 761, + "name": "red_sandstone_wall", + "translation_key": "block.minecraft.red_sandstone_wall", "item_id": 379, "properties": [ { @@ -162081,10 +155124,10 @@ ] } ], - "default_state_id": 15300, + "default_state_id": 14670, "states": [ { - "id": 15297, + "id": 14667, "luminance": 0, "opaque": true, "replaceable": false, @@ -162093,7 +155136,7 @@ ] }, { - "id": 15298, + "id": 14668, "luminance": 0, "opaque": true, "replaceable": false, @@ -162104,7 +155147,7 @@ ] }, { - "id": 15299, + "id": 14669, "luminance": 0, "opaque": true, "replaceable": false, @@ -162115,7 +155158,7 @@ ] }, { - "id": 15300, + "id": 14670, "luminance": 0, "opaque": true, "replaceable": false, @@ -162124,7 +155167,7 @@ ] }, { - "id": 15301, + "id": 14671, "luminance": 0, "opaque": true, "replaceable": false, @@ -162135,7 +155178,7 @@ ] }, { - "id": 15302, + "id": 14672, "luminance": 0, "opaque": true, "replaceable": false, @@ -162146,14 +155189,14 @@ ] }, { - "id": 15303, + "id": 14673, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 15304, + "id": 14674, "luminance": 0, "opaque": true, "replaceable": false, @@ -162162,7 +155205,7 @@ ] }, { - "id": 15305, + "id": 14675, "luminance": 0, "opaque": true, "replaceable": false, @@ -162171,14 +155214,14 @@ ] }, { - "id": 15306, + "id": 14676, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 15307, + "id": 14677, "luminance": 0, "opaque": true, "replaceable": false, @@ -162187,7 +155230,7 @@ ] }, { - "id": 15308, + "id": 14678, "luminance": 0, "opaque": true, "replaceable": false, @@ -162196,7 +155239,7 @@ ] }, { - "id": 15309, + "id": 14679, "luminance": 0, "opaque": true, "replaceable": false, @@ -162206,7 +155249,7 @@ ] }, { - "id": 15310, + "id": 14680, "luminance": 0, "opaque": true, "replaceable": false, @@ -162218,7 +155261,7 @@ ] }, { - "id": 15311, + "id": 14681, "luminance": 0, "opaque": true, "replaceable": false, @@ -162230,7 +155273,7 @@ ] }, { - "id": 15312, + "id": 14682, "luminance": 0, "opaque": true, "replaceable": false, @@ -162240,7 +155283,7 @@ ] }, { - "id": 15313, + "id": 14683, "luminance": 0, "opaque": true, "replaceable": false, @@ -162252,7 +155295,7 @@ ] }, { - "id": 15314, + "id": 14684, "luminance": 0, "opaque": true, "replaceable": false, @@ -162264,7 +155307,7 @@ ] }, { - "id": 15315, + "id": 14685, "luminance": 0, "opaque": true, "replaceable": false, @@ -162273,7 +155316,7 @@ ] }, { - "id": 15316, + "id": 14686, "luminance": 0, "opaque": true, "replaceable": false, @@ -162283,7 +155326,7 @@ ] }, { - "id": 15317, + "id": 14687, "luminance": 0, "opaque": true, "replaceable": false, @@ -162293,7 +155336,7 @@ ] }, { - "id": 15318, + "id": 14688, "luminance": 0, "opaque": true, "replaceable": false, @@ -162302,7 +155345,7 @@ ] }, { - "id": 15319, + "id": 14689, "luminance": 0, "opaque": true, "replaceable": false, @@ -162312,7 +155355,7 @@ ] }, { - "id": 15320, + "id": 14690, "luminance": 0, "opaque": true, "replaceable": false, @@ -162322,7 +155365,7 @@ ] }, { - "id": 15321, + "id": 14691, "luminance": 0, "opaque": true, "replaceable": false, @@ -162332,7 +155375,7 @@ ] }, { - "id": 15322, + "id": 14692, "luminance": 0, "opaque": true, "replaceable": false, @@ -162344,7 +155387,7 @@ ] }, { - "id": 15323, + "id": 14693, "luminance": 0, "opaque": true, "replaceable": false, @@ -162356,7 +155399,7 @@ ] }, { - "id": 15324, + "id": 14694, "luminance": 0, "opaque": true, "replaceable": false, @@ -162366,7 +155409,7 @@ ] }, { - "id": 15325, + "id": 14695, "luminance": 0, "opaque": true, "replaceable": false, @@ -162378,7 +155421,7 @@ ] }, { - "id": 15326, + "id": 14696, "luminance": 0, "opaque": true, "replaceable": false, @@ -162390,7 +155433,7 @@ ] }, { - "id": 15327, + "id": 14697, "luminance": 0, "opaque": true, "replaceable": false, @@ -162399,7 +155442,7 @@ ] }, { - "id": 15328, + "id": 14698, "luminance": 0, "opaque": true, "replaceable": false, @@ -162409,7 +155452,7 @@ ] }, { - "id": 15329, + "id": 14699, "luminance": 0, "opaque": true, "replaceable": false, @@ -162419,7 +155462,7 @@ ] }, { - "id": 15330, + "id": 14700, "luminance": 0, "opaque": true, "replaceable": false, @@ -162428,7 +155471,7 @@ ] }, { - "id": 15331, + "id": 14701, "luminance": 0, "opaque": true, "replaceable": false, @@ -162438,7 +155481,7 @@ ] }, { - "id": 15332, + "id": 14702, "luminance": 0, "opaque": true, "replaceable": false, @@ -162448,7 +155491,7 @@ ] }, { - "id": 15333, + "id": 14703, "luminance": 0, "opaque": true, "replaceable": false, @@ -162458,7 +155501,7 @@ ] }, { - "id": 15334, + "id": 14704, "luminance": 0, "opaque": true, "replaceable": false, @@ -162470,7 +155513,7 @@ ] }, { - "id": 15335, + "id": 14705, "luminance": 0, "opaque": true, "replaceable": false, @@ -162482,7 +155525,7 @@ ] }, { - "id": 15336, + "id": 14706, "luminance": 0, "opaque": true, "replaceable": false, @@ -162492,7 +155535,7 @@ ] }, { - "id": 15337, + "id": 14707, "luminance": 0, "opaque": true, "replaceable": false, @@ -162504,7 +155547,7 @@ ] }, { - "id": 15338, + "id": 14708, "luminance": 0, "opaque": true, "replaceable": false, @@ -162516,7 +155559,7 @@ ] }, { - "id": 15339, + "id": 14709, "luminance": 0, "opaque": true, "replaceable": false, @@ -162525,7 +155568,7 @@ ] }, { - "id": 15340, + "id": 14710, "luminance": 0, "opaque": true, "replaceable": false, @@ -162535,7 +155578,7 @@ ] }, { - "id": 15341, + "id": 14711, "luminance": 0, "opaque": true, "replaceable": false, @@ -162545,7 +155588,7 @@ ] }, { - "id": 15342, + "id": 14712, "luminance": 0, "opaque": true, "replaceable": false, @@ -162554,7 +155597,7 @@ ] }, { - "id": 15343, + "id": 14713, "luminance": 0, "opaque": true, "replaceable": false, @@ -162564,7 +155607,7 @@ ] }, { - "id": 15344, + "id": 14714, "luminance": 0, "opaque": true, "replaceable": false, @@ -162574,7 +155617,7 @@ ] }, { - "id": 15345, + "id": 14715, "luminance": 0, "opaque": true, "replaceable": false, @@ -162585,7 +155628,7 @@ ] }, { - "id": 15346, + "id": 14716, "luminance": 0, "opaque": true, "replaceable": false, @@ -162598,7 +155641,7 @@ ] }, { - "id": 15347, + "id": 14717, "luminance": 0, "opaque": true, "replaceable": false, @@ -162611,7 +155654,7 @@ ] }, { - "id": 15348, + "id": 14718, "luminance": 0, "opaque": true, "replaceable": false, @@ -162622,7 +155665,7 @@ ] }, { - "id": 15349, + "id": 14719, "luminance": 0, "opaque": true, "replaceable": false, @@ -162635,7 +155678,7 @@ ] }, { - "id": 15350, + "id": 14720, "luminance": 0, "opaque": true, "replaceable": false, @@ -162648,7 +155691,7 @@ ] }, { - "id": 15351, + "id": 14721, "luminance": 0, "opaque": true, "replaceable": false, @@ -162657,7 +155700,7 @@ ] }, { - "id": 15352, + "id": 14722, "luminance": 0, "opaque": true, "replaceable": false, @@ -162668,7 +155711,7 @@ ] }, { - "id": 15353, + "id": 14723, "luminance": 0, "opaque": true, "replaceable": false, @@ -162679,7 +155722,7 @@ ] }, { - "id": 15354, + "id": 14724, "luminance": 0, "opaque": true, "replaceable": false, @@ -162688,7 +155731,7 @@ ] }, { - "id": 15355, + "id": 14725, "luminance": 0, "opaque": true, "replaceable": false, @@ -162699,7 +155742,7 @@ ] }, { - "id": 15356, + "id": 14726, "luminance": 0, "opaque": true, "replaceable": false, @@ -162710,7 +155753,7 @@ ] }, { - "id": 15357, + "id": 14727, "luminance": 0, "opaque": true, "replaceable": false, @@ -162721,7 +155764,7 @@ ] }, { - "id": 15358, + "id": 14728, "luminance": 0, "opaque": true, "replaceable": false, @@ -162734,7 +155777,7 @@ ] }, { - "id": 15359, + "id": 14729, "luminance": 0, "opaque": true, "replaceable": false, @@ -162747,7 +155790,7 @@ ] }, { - "id": 15360, + "id": 14730, "luminance": 0, "opaque": true, "replaceable": false, @@ -162758,7 +155801,7 @@ ] }, { - "id": 15361, + "id": 14731, "luminance": 0, "opaque": true, "replaceable": false, @@ -162771,7 +155814,7 @@ ] }, { - "id": 15362, + "id": 14732, "luminance": 0, "opaque": true, "replaceable": false, @@ -162784,7 +155827,7 @@ ] }, { - "id": 15363, + "id": 14733, "luminance": 0, "opaque": true, "replaceable": false, @@ -162793,7 +155836,7 @@ ] }, { - "id": 15364, + "id": 14734, "luminance": 0, "opaque": true, "replaceable": false, @@ -162804,7 +155847,7 @@ ] }, { - "id": 15365, + "id": 14735, "luminance": 0, "opaque": true, "replaceable": false, @@ -162815,7 +155858,7 @@ ] }, { - "id": 15366, + "id": 14736, "luminance": 0, "opaque": true, "replaceable": false, @@ -162824,7 +155867,7 @@ ] }, { - "id": 15367, + "id": 14737, "luminance": 0, "opaque": true, "replaceable": false, @@ -162835,7 +155878,7 @@ ] }, { - "id": 15368, + "id": 14738, "luminance": 0, "opaque": true, "replaceable": false, @@ -162846,7 +155889,7 @@ ] }, { - "id": 15369, + "id": 14739, "luminance": 0, "opaque": true, "replaceable": false, @@ -162856,7 +155899,7 @@ ] }, { - "id": 15370, + "id": 14740, "luminance": 0, "opaque": true, "replaceable": false, @@ -162868,7 +155911,7 @@ ] }, { - "id": 15371, + "id": 14741, "luminance": 0, "opaque": true, "replaceable": false, @@ -162880,7 +155923,7 @@ ] }, { - "id": 15372, + "id": 14742, "luminance": 0, "opaque": true, "replaceable": false, @@ -162890,7 +155933,7 @@ ] }, { - "id": 15373, + "id": 14743, "luminance": 0, "opaque": true, "replaceable": false, @@ -162902,7 +155945,7 @@ ] }, { - "id": 15374, + "id": 14744, "luminance": 0, "opaque": true, "replaceable": false, @@ -162914,7 +155957,7 @@ ] }, { - "id": 15375, + "id": 14745, "luminance": 0, "opaque": true, "replaceable": false, @@ -162923,7 +155966,7 @@ ] }, { - "id": 15376, + "id": 14746, "luminance": 0, "opaque": true, "replaceable": false, @@ -162933,7 +155976,7 @@ ] }, { - "id": 15377, + "id": 14747, "luminance": 0, "opaque": true, "replaceable": false, @@ -162943,7 +155986,7 @@ ] }, { - "id": 15378, + "id": 14748, "luminance": 0, "opaque": true, "replaceable": false, @@ -162952,7 +155995,7 @@ ] }, { - "id": 15379, + "id": 14749, "luminance": 0, "opaque": true, "replaceable": false, @@ -162962,7 +156005,7 @@ ] }, { - "id": 15380, + "id": 14750, "luminance": 0, "opaque": true, "replaceable": false, @@ -162972,7 +156015,7 @@ ] }, { - "id": 15381, + "id": 14751, "luminance": 0, "opaque": true, "replaceable": false, @@ -162983,7 +156026,7 @@ ] }, { - "id": 15382, + "id": 14752, "luminance": 0, "opaque": true, "replaceable": false, @@ -162996,7 +156039,7 @@ ] }, { - "id": 15383, + "id": 14753, "luminance": 0, "opaque": true, "replaceable": false, @@ -163009,7 +156052,7 @@ ] }, { - "id": 15384, + "id": 14754, "luminance": 0, "opaque": true, "replaceable": false, @@ -163020,7 +156063,7 @@ ] }, { - "id": 15385, + "id": 14755, "luminance": 0, "opaque": true, "replaceable": false, @@ -163033,7 +156076,7 @@ ] }, { - "id": 15386, + "id": 14756, "luminance": 0, "opaque": true, "replaceable": false, @@ -163046,7 +156089,7 @@ ] }, { - "id": 15387, + "id": 14757, "luminance": 0, "opaque": true, "replaceable": false, @@ -163055,7 +156098,7 @@ ] }, { - "id": 15388, + "id": 14758, "luminance": 0, "opaque": true, "replaceable": false, @@ -163066,7 +156109,7 @@ ] }, { - "id": 15389, + "id": 14759, "luminance": 0, "opaque": true, "replaceable": false, @@ -163077,7 +156120,7 @@ ] }, { - "id": 15390, + "id": 14760, "luminance": 0, "opaque": true, "replaceable": false, @@ -163086,7 +156129,7 @@ ] }, { - "id": 15391, + "id": 14761, "luminance": 0, "opaque": true, "replaceable": false, @@ -163097,7 +156140,7 @@ ] }, { - "id": 15392, + "id": 14762, "luminance": 0, "opaque": true, "replaceable": false, @@ -163108,7 +156151,7 @@ ] }, { - "id": 15393, + "id": 14763, "luminance": 0, "opaque": true, "replaceable": false, @@ -163119,7 +156162,7 @@ ] }, { - "id": 15394, + "id": 14764, "luminance": 0, "opaque": true, "replaceable": false, @@ -163132,7 +156175,7 @@ ] }, { - "id": 15395, + "id": 14765, "luminance": 0, "opaque": true, "replaceable": false, @@ -163145,7 +156188,7 @@ ] }, { - "id": 15396, + "id": 14766, "luminance": 0, "opaque": true, "replaceable": false, @@ -163156,7 +156199,7 @@ ] }, { - "id": 15397, + "id": 14767, "luminance": 0, "opaque": true, "replaceable": false, @@ -163169,7 +156212,7 @@ ] }, { - "id": 15398, + "id": 14768, "luminance": 0, "opaque": true, "replaceable": false, @@ -163182,7 +156225,7 @@ ] }, { - "id": 15399, + "id": 14769, "luminance": 0, "opaque": true, "replaceable": false, @@ -163191,7 +156234,7 @@ ] }, { - "id": 15400, + "id": 14770, "luminance": 0, "opaque": true, "replaceable": false, @@ -163202,7 +156245,7 @@ ] }, { - "id": 15401, + "id": 14771, "luminance": 0, "opaque": true, "replaceable": false, @@ -163213,7 +156256,7 @@ ] }, { - "id": 15402, + "id": 14772, "luminance": 0, "opaque": true, "replaceable": false, @@ -163222,7 +156265,7 @@ ] }, { - "id": 15403, + "id": 14773, "luminance": 0, "opaque": true, "replaceable": false, @@ -163233,7 +156276,7 @@ ] }, { - "id": 15404, + "id": 14774, "luminance": 0, "opaque": true, "replaceable": false, @@ -163244,7 +156287,7 @@ ] }, { - "id": 15405, + "id": 14775, "luminance": 0, "opaque": true, "replaceable": false, @@ -163254,7 +156297,7 @@ ] }, { - "id": 15406, + "id": 14776, "luminance": 0, "opaque": true, "replaceable": false, @@ -163265,7 +156308,7 @@ ] }, { - "id": 15407, + "id": 14777, "luminance": 0, "opaque": true, "replaceable": false, @@ -163276,7 +156319,7 @@ ] }, { - "id": 15408, + "id": 14778, "luminance": 0, "opaque": true, "replaceable": false, @@ -163286,7 +156329,7 @@ ] }, { - "id": 15409, + "id": 14779, "luminance": 0, "opaque": true, "replaceable": false, @@ -163297,7 +156340,7 @@ ] }, { - "id": 15410, + "id": 14780, "luminance": 0, "opaque": true, "replaceable": false, @@ -163308,7 +156351,7 @@ ] }, { - "id": 15411, + "id": 14781, "luminance": 0, "opaque": true, "replaceable": false, @@ -163317,7 +156360,7 @@ ] }, { - "id": 15412, + "id": 14782, "luminance": 0, "opaque": true, "replaceable": false, @@ -163326,7 +156369,7 @@ ] }, { - "id": 15413, + "id": 14783, "luminance": 0, "opaque": true, "replaceable": false, @@ -163335,7 +156378,7 @@ ] }, { - "id": 15414, + "id": 14784, "luminance": 0, "opaque": true, "replaceable": false, @@ -163344,7 +156387,7 @@ ] }, { - "id": 15415, + "id": 14785, "luminance": 0, "opaque": true, "replaceable": false, @@ -163353,7 +156396,7 @@ ] }, { - "id": 15416, + "id": 14786, "luminance": 0, "opaque": true, "replaceable": false, @@ -163362,7 +156405,7 @@ ] }, { - "id": 15417, + "id": 14787, "luminance": 0, "opaque": true, "replaceable": false, @@ -163373,7 +156416,7 @@ ] }, { - "id": 15418, + "id": 14788, "luminance": 0, "opaque": true, "replaceable": false, @@ -163385,7 +156428,7 @@ ] }, { - "id": 15419, + "id": 14789, "luminance": 0, "opaque": true, "replaceable": false, @@ -163397,7 +156440,7 @@ ] }, { - "id": 15420, + "id": 14790, "luminance": 0, "opaque": true, "replaceable": false, @@ -163408,7 +156451,7 @@ ] }, { - "id": 15421, + "id": 14791, "luminance": 0, "opaque": true, "replaceable": false, @@ -163420,7 +156463,7 @@ ] }, { - "id": 15422, + "id": 14792, "luminance": 0, "opaque": true, "replaceable": false, @@ -163432,7 +156475,7 @@ ] }, { - "id": 15423, + "id": 14793, "luminance": 0, "opaque": true, "replaceable": false, @@ -163442,7 +156485,7 @@ ] }, { - "id": 15424, + "id": 14794, "luminance": 0, "opaque": true, "replaceable": false, @@ -163452,7 +156495,7 @@ ] }, { - "id": 15425, + "id": 14795, "luminance": 0, "opaque": true, "replaceable": false, @@ -163462,7 +156505,7 @@ ] }, { - "id": 15426, + "id": 14796, "luminance": 0, "opaque": true, "replaceable": false, @@ -163472,7 +156515,7 @@ ] }, { - "id": 15427, + "id": 14797, "luminance": 0, "opaque": true, "replaceable": false, @@ -163482,7 +156525,7 @@ ] }, { - "id": 15428, + "id": 14798, "luminance": 0, "opaque": true, "replaceable": false, @@ -163492,7 +156535,7 @@ ] }, { - "id": 15429, + "id": 14799, "luminance": 0, "opaque": true, "replaceable": false, @@ -163503,7 +156546,7 @@ ] }, { - "id": 15430, + "id": 14800, "luminance": 0, "opaque": true, "replaceable": false, @@ -163515,7 +156558,7 @@ ] }, { - "id": 15431, + "id": 14801, "luminance": 0, "opaque": true, "replaceable": false, @@ -163527,7 +156570,7 @@ ] }, { - "id": 15432, + "id": 14802, "luminance": 0, "opaque": true, "replaceable": false, @@ -163538,7 +156581,7 @@ ] }, { - "id": 15433, + "id": 14803, "luminance": 0, "opaque": true, "replaceable": false, @@ -163550,7 +156593,7 @@ ] }, { - "id": 15434, + "id": 14804, "luminance": 0, "opaque": true, "replaceable": false, @@ -163562,7 +156605,7 @@ ] }, { - "id": 15435, + "id": 14805, "luminance": 0, "opaque": true, "replaceable": false, @@ -163572,7 +156615,7 @@ ] }, { - "id": 15436, + "id": 14806, "luminance": 0, "opaque": true, "replaceable": false, @@ -163582,7 +156625,7 @@ ] }, { - "id": 15437, + "id": 14807, "luminance": 0, "opaque": true, "replaceable": false, @@ -163592,7 +156635,7 @@ ] }, { - "id": 15438, + "id": 14808, "luminance": 0, "opaque": true, "replaceable": false, @@ -163602,7 +156645,7 @@ ] }, { - "id": 15439, + "id": 14809, "luminance": 0, "opaque": true, "replaceable": false, @@ -163612,7 +156655,7 @@ ] }, { - "id": 15440, + "id": 14810, "luminance": 0, "opaque": true, "replaceable": false, @@ -163622,7 +156665,7 @@ ] }, { - "id": 15441, + "id": 14811, "luminance": 0, "opaque": true, "replaceable": false, @@ -163633,7 +156676,7 @@ ] }, { - "id": 15442, + "id": 14812, "luminance": 0, "opaque": true, "replaceable": false, @@ -163645,7 +156688,7 @@ ] }, { - "id": 15443, + "id": 14813, "luminance": 0, "opaque": true, "replaceable": false, @@ -163657,7 +156700,7 @@ ] }, { - "id": 15444, + "id": 14814, "luminance": 0, "opaque": true, "replaceable": false, @@ -163668,7 +156711,7 @@ ] }, { - "id": 15445, + "id": 14815, "luminance": 0, "opaque": true, "replaceable": false, @@ -163680,7 +156723,7 @@ ] }, { - "id": 15446, + "id": 14816, "luminance": 0, "opaque": true, "replaceable": false, @@ -163692,7 +156735,7 @@ ] }, { - "id": 15447, + "id": 14817, "luminance": 0, "opaque": true, "replaceable": false, @@ -163702,7 +156745,7 @@ ] }, { - "id": 15448, + "id": 14818, "luminance": 0, "opaque": true, "replaceable": false, @@ -163712,7 +156755,7 @@ ] }, { - "id": 15449, + "id": 14819, "luminance": 0, "opaque": true, "replaceable": false, @@ -163722,7 +156765,7 @@ ] }, { - "id": 15450, + "id": 14820, "luminance": 0, "opaque": true, "replaceable": false, @@ -163732,7 +156775,7 @@ ] }, { - "id": 15451, + "id": 14821, "luminance": 0, "opaque": true, "replaceable": false, @@ -163742,7 +156785,7 @@ ] }, { - "id": 15452, + "id": 14822, "luminance": 0, "opaque": true, "replaceable": false, @@ -163752,7 +156795,7 @@ ] }, { - "id": 15453, + "id": 14823, "luminance": 0, "opaque": true, "replaceable": false, @@ -163764,7 +156807,7 @@ ] }, { - "id": 15454, + "id": 14824, "luminance": 0, "opaque": true, "replaceable": false, @@ -163777,7 +156820,7 @@ ] }, { - "id": 15455, + "id": 14825, "luminance": 0, "opaque": true, "replaceable": false, @@ -163790,7 +156833,7 @@ ] }, { - "id": 15456, + "id": 14826, "luminance": 0, "opaque": true, "replaceable": false, @@ -163802,7 +156845,7 @@ ] }, { - "id": 15457, + "id": 14827, "luminance": 0, "opaque": true, "replaceable": false, @@ -163815,7 +156858,7 @@ ] }, { - "id": 15458, + "id": 14828, "luminance": 0, "opaque": true, "replaceable": false, @@ -163828,7 +156871,7 @@ ] }, { - "id": 15459, + "id": 14829, "luminance": 0, "opaque": true, "replaceable": false, @@ -163838,7 +156881,7 @@ ] }, { - "id": 15460, + "id": 14830, "luminance": 0, "opaque": true, "replaceable": false, @@ -163849,7 +156892,7 @@ ] }, { - "id": 15461, + "id": 14831, "luminance": 0, "opaque": true, "replaceable": false, @@ -163860,7 +156903,7 @@ ] }, { - "id": 15462, + "id": 14832, "luminance": 0, "opaque": true, "replaceable": false, @@ -163870,7 +156913,7 @@ ] }, { - "id": 15463, + "id": 14833, "luminance": 0, "opaque": true, "replaceable": false, @@ -163881,7 +156924,7 @@ ] }, { - "id": 15464, + "id": 14834, "luminance": 0, "opaque": true, "replaceable": false, @@ -163892,7 +156935,7 @@ ] }, { - "id": 15465, + "id": 14835, "luminance": 0, "opaque": true, "replaceable": false, @@ -163904,7 +156947,7 @@ ] }, { - "id": 15466, + "id": 14836, "luminance": 0, "opaque": true, "replaceable": false, @@ -163917,7 +156960,7 @@ ] }, { - "id": 15467, + "id": 14837, "luminance": 0, "opaque": true, "replaceable": false, @@ -163930,7 +156973,7 @@ ] }, { - "id": 15468, + "id": 14838, "luminance": 0, "opaque": true, "replaceable": false, @@ -163942,7 +156985,7 @@ ] }, { - "id": 15469, + "id": 14839, "luminance": 0, "opaque": true, "replaceable": false, @@ -163955,7 +156998,7 @@ ] }, { - "id": 15470, + "id": 14840, "luminance": 0, "opaque": true, "replaceable": false, @@ -163968,7 +157011,7 @@ ] }, { - "id": 15471, + "id": 14841, "luminance": 0, "opaque": true, "replaceable": false, @@ -163978,7 +157021,7 @@ ] }, { - "id": 15472, + "id": 14842, "luminance": 0, "opaque": true, "replaceable": false, @@ -163989,7 +157032,7 @@ ] }, { - "id": 15473, + "id": 14843, "luminance": 0, "opaque": true, "replaceable": false, @@ -164000,7 +157043,7 @@ ] }, { - "id": 15474, + "id": 14844, "luminance": 0, "opaque": true, "replaceable": false, @@ -164010,7 +157053,7 @@ ] }, { - "id": 15475, + "id": 14845, "luminance": 0, "opaque": true, "replaceable": false, @@ -164021,7 +157064,7 @@ ] }, { - "id": 15476, + "id": 14846, "luminance": 0, "opaque": true, "replaceable": false, @@ -164032,7 +157075,7 @@ ] }, { - "id": 15477, + "id": 14847, "luminance": 0, "opaque": true, "replaceable": false, @@ -164043,7 +157086,7 @@ ] }, { - "id": 15478, + "id": 14848, "luminance": 0, "opaque": true, "replaceable": false, @@ -164055,7 +157098,7 @@ ] }, { - "id": 15479, + "id": 14849, "luminance": 0, "opaque": true, "replaceable": false, @@ -164067,7 +157110,7 @@ ] }, { - "id": 15480, + "id": 14850, "luminance": 0, "opaque": true, "replaceable": false, @@ -164078,7 +157121,7 @@ ] }, { - "id": 15481, + "id": 14851, "luminance": 0, "opaque": true, "replaceable": false, @@ -164090,7 +157133,7 @@ ] }, { - "id": 15482, + "id": 14852, "luminance": 0, "opaque": true, "replaceable": false, @@ -164102,7 +157145,7 @@ ] }, { - "id": 15483, + "id": 14853, "luminance": 0, "opaque": true, "replaceable": false, @@ -164112,7 +157155,7 @@ ] }, { - "id": 15484, + "id": 14854, "luminance": 0, "opaque": true, "replaceable": false, @@ -164122,7 +157165,7 @@ ] }, { - "id": 15485, + "id": 14855, "luminance": 0, "opaque": true, "replaceable": false, @@ -164132,7 +157175,7 @@ ] }, { - "id": 15486, + "id": 14856, "luminance": 0, "opaque": true, "replaceable": false, @@ -164142,7 +157185,7 @@ ] }, { - "id": 15487, + "id": 14857, "luminance": 0, "opaque": true, "replaceable": false, @@ -164152,7 +157195,7 @@ ] }, { - "id": 15488, + "id": 14858, "luminance": 0, "opaque": true, "replaceable": false, @@ -164162,7 +157205,7 @@ ] }, { - "id": 15489, + "id": 14859, "luminance": 0, "opaque": true, "replaceable": false, @@ -164174,7 +157217,7 @@ ] }, { - "id": 15490, + "id": 14860, "luminance": 0, "opaque": true, "replaceable": false, @@ -164187,7 +157230,7 @@ ] }, { - "id": 15491, + "id": 14861, "luminance": 0, "opaque": true, "replaceable": false, @@ -164200,7 +157243,7 @@ ] }, { - "id": 15492, + "id": 14862, "luminance": 0, "opaque": true, "replaceable": false, @@ -164212,7 +157255,7 @@ ] }, { - "id": 15493, + "id": 14863, "luminance": 0, "opaque": true, "replaceable": false, @@ -164225,7 +157268,7 @@ ] }, { - "id": 15494, + "id": 14864, "luminance": 0, "opaque": true, "replaceable": false, @@ -164238,7 +157281,7 @@ ] }, { - "id": 15495, + "id": 14865, "luminance": 0, "opaque": true, "replaceable": false, @@ -164248,7 +157291,7 @@ ] }, { - "id": 15496, + "id": 14866, "luminance": 0, "opaque": true, "replaceable": false, @@ -164259,7 +157302,7 @@ ] }, { - "id": 15497, + "id": 14867, "luminance": 0, "opaque": true, "replaceable": false, @@ -164270,7 +157313,7 @@ ] }, { - "id": 15498, + "id": 14868, "luminance": 0, "opaque": true, "replaceable": false, @@ -164280,7 +157323,7 @@ ] }, { - "id": 15499, + "id": 14869, "luminance": 0, "opaque": true, "replaceable": false, @@ -164291,7 +157334,7 @@ ] }, { - "id": 15500, + "id": 14870, "luminance": 0, "opaque": true, "replaceable": false, @@ -164302,7 +157345,7 @@ ] }, { - "id": 15501, + "id": 14871, "luminance": 0, "opaque": true, "replaceable": false, @@ -164314,7 +157357,7 @@ ] }, { - "id": 15502, + "id": 14872, "luminance": 0, "opaque": true, "replaceable": false, @@ -164327,7 +157370,7 @@ ] }, { - "id": 15503, + "id": 14873, "luminance": 0, "opaque": true, "replaceable": false, @@ -164340,7 +157383,7 @@ ] }, { - "id": 15504, + "id": 14874, "luminance": 0, "opaque": true, "replaceable": false, @@ -164352,7 +157395,7 @@ ] }, { - "id": 15505, + "id": 14875, "luminance": 0, "opaque": true, "replaceable": false, @@ -164365,7 +157408,7 @@ ] }, { - "id": 15506, + "id": 14876, "luminance": 0, "opaque": true, "replaceable": false, @@ -164378,7 +157421,7 @@ ] }, { - "id": 15507, + "id": 14877, "luminance": 0, "opaque": true, "replaceable": false, @@ -164388,7 +157431,7 @@ ] }, { - "id": 15508, + "id": 14878, "luminance": 0, "opaque": true, "replaceable": false, @@ -164399,7 +157442,7 @@ ] }, { - "id": 15509, + "id": 14879, "luminance": 0, "opaque": true, "replaceable": false, @@ -164410,7 +157453,7 @@ ] }, { - "id": 15510, + "id": 14880, "luminance": 0, "opaque": true, "replaceable": false, @@ -164420,7 +157463,7 @@ ] }, { - "id": 15511, + "id": 14881, "luminance": 0, "opaque": true, "replaceable": false, @@ -164431,7 +157474,7 @@ ] }, { - "id": 15512, + "id": 14882, "luminance": 0, "opaque": true, "replaceable": false, @@ -164442,7 +157485,7 @@ ] }, { - "id": 15513, + "id": 14883, "luminance": 0, "opaque": true, "replaceable": false, @@ -164452,7 +157495,7 @@ ] }, { - "id": 15514, + "id": 14884, "luminance": 0, "opaque": true, "replaceable": false, @@ -164463,7 +157506,7 @@ ] }, { - "id": 15515, + "id": 14885, "luminance": 0, "opaque": true, "replaceable": false, @@ -164474,7 +157517,7 @@ ] }, { - "id": 15516, + "id": 14886, "luminance": 0, "opaque": true, "replaceable": false, @@ -164484,7 +157527,7 @@ ] }, { - "id": 15517, + "id": 14887, "luminance": 0, "opaque": true, "replaceable": false, @@ -164495,7 +157538,7 @@ ] }, { - "id": 15518, + "id": 14888, "luminance": 0, "opaque": true, "replaceable": false, @@ -164506,7 +157549,7 @@ ] }, { - "id": 15519, + "id": 14889, "luminance": 0, "opaque": true, "replaceable": false, @@ -164515,7 +157558,7 @@ ] }, { - "id": 15520, + "id": 14890, "luminance": 0, "opaque": true, "replaceable": false, @@ -164524,7 +157567,7 @@ ] }, { - "id": 15521, + "id": 14891, "luminance": 0, "opaque": true, "replaceable": false, @@ -164533,7 +157576,7 @@ ] }, { - "id": 15522, + "id": 14892, "luminance": 0, "opaque": true, "replaceable": false, @@ -164542,7 +157585,7 @@ ] }, { - "id": 15523, + "id": 14893, "luminance": 0, "opaque": true, "replaceable": false, @@ -164551,7 +157594,7 @@ ] }, { - "id": 15524, + "id": 14894, "luminance": 0, "opaque": true, "replaceable": false, @@ -164560,7 +157603,7 @@ ] }, { - "id": 15525, + "id": 14895, "luminance": 0, "opaque": true, "replaceable": false, @@ -164571,7 +157614,7 @@ ] }, { - "id": 15526, + "id": 14896, "luminance": 0, "opaque": true, "replaceable": false, @@ -164583,7 +157626,7 @@ ] }, { - "id": 15527, + "id": 14897, "luminance": 0, "opaque": true, "replaceable": false, @@ -164595,7 +157638,7 @@ ] }, { - "id": 15528, + "id": 14898, "luminance": 0, "opaque": true, "replaceable": false, @@ -164606,7 +157649,7 @@ ] }, { - "id": 15529, + "id": 14899, "luminance": 0, "opaque": true, "replaceable": false, @@ -164618,7 +157661,7 @@ ] }, { - "id": 15530, + "id": 14900, "luminance": 0, "opaque": true, "replaceable": false, @@ -164630,7 +157673,7 @@ ] }, { - "id": 15531, + "id": 14901, "luminance": 0, "opaque": true, "replaceable": false, @@ -164640,7 +157683,7 @@ ] }, { - "id": 15532, + "id": 14902, "luminance": 0, "opaque": true, "replaceable": false, @@ -164650,7 +157693,7 @@ ] }, { - "id": 15533, + "id": 14903, "luminance": 0, "opaque": true, "replaceable": false, @@ -164660,7 +157703,7 @@ ] }, { - "id": 15534, + "id": 14904, "luminance": 0, "opaque": true, "replaceable": false, @@ -164670,7 +157713,7 @@ ] }, { - "id": 15535, + "id": 14905, "luminance": 0, "opaque": true, "replaceable": false, @@ -164680,7 +157723,7 @@ ] }, { - "id": 15536, + "id": 14906, "luminance": 0, "opaque": true, "replaceable": false, @@ -164690,7 +157733,7 @@ ] }, { - "id": 15537, + "id": 14907, "luminance": 0, "opaque": true, "replaceable": false, @@ -164701,7 +157744,7 @@ ] }, { - "id": 15538, + "id": 14908, "luminance": 0, "opaque": true, "replaceable": false, @@ -164713,7 +157756,7 @@ ] }, { - "id": 15539, + "id": 14909, "luminance": 0, "opaque": true, "replaceable": false, @@ -164725,7 +157768,7 @@ ] }, { - "id": 15540, + "id": 14910, "luminance": 0, "opaque": true, "replaceable": false, @@ -164736,7 +157779,7 @@ ] }, { - "id": 15541, + "id": 14911, "luminance": 0, "opaque": true, "replaceable": false, @@ -164748,7 +157791,7 @@ ] }, { - "id": 15542, + "id": 14912, "luminance": 0, "opaque": true, "replaceable": false, @@ -164760,7 +157803,7 @@ ] }, { - "id": 15543, + "id": 14913, "luminance": 0, "opaque": true, "replaceable": false, @@ -164770,7 +157813,7 @@ ] }, { - "id": 15544, + "id": 14914, "luminance": 0, "opaque": true, "replaceable": false, @@ -164780,7 +157823,7 @@ ] }, { - "id": 15545, + "id": 14915, "luminance": 0, "opaque": true, "replaceable": false, @@ -164790,7 +157833,7 @@ ] }, { - "id": 15546, + "id": 14916, "luminance": 0, "opaque": true, "replaceable": false, @@ -164800,7 +157843,7 @@ ] }, { - "id": 15547, + "id": 14917, "luminance": 0, "opaque": true, "replaceable": false, @@ -164810,7 +157853,7 @@ ] }, { - "id": 15548, + "id": 14918, "luminance": 0, "opaque": true, "replaceable": false, @@ -164820,7 +157863,7 @@ ] }, { - "id": 15549, + "id": 14919, "luminance": 0, "opaque": true, "replaceable": false, @@ -164831,7 +157874,7 @@ ] }, { - "id": 15550, + "id": 14920, "luminance": 0, "opaque": true, "replaceable": false, @@ -164843,7 +157886,7 @@ ] }, { - "id": 15551, + "id": 14921, "luminance": 0, "opaque": true, "replaceable": false, @@ -164855,7 +157898,7 @@ ] }, { - "id": 15552, + "id": 14922, "luminance": 0, "opaque": true, "replaceable": false, @@ -164866,7 +157909,7 @@ ] }, { - "id": 15553, + "id": 14923, "luminance": 0, "opaque": true, "replaceable": false, @@ -164878,7 +157921,7 @@ ] }, { - "id": 15554, + "id": 14924, "luminance": 0, "opaque": true, "replaceable": false, @@ -164890,7 +157933,7 @@ ] }, { - "id": 15555, + "id": 14925, "luminance": 0, "opaque": true, "replaceable": false, @@ -164900,7 +157943,7 @@ ] }, { - "id": 15556, + "id": 14926, "luminance": 0, "opaque": true, "replaceable": false, @@ -164910,7 +157953,7 @@ ] }, { - "id": 15557, + "id": 14927, "luminance": 0, "opaque": true, "replaceable": false, @@ -164920,7 +157963,7 @@ ] }, { - "id": 15558, + "id": 14928, "luminance": 0, "opaque": true, "replaceable": false, @@ -164930,7 +157973,7 @@ ] }, { - "id": 15559, + "id": 14929, "luminance": 0, "opaque": true, "replaceable": false, @@ -164940,7 +157983,7 @@ ] }, { - "id": 15560, + "id": 14930, "luminance": 0, "opaque": true, "replaceable": false, @@ -164950,7 +157993,7 @@ ] }, { - "id": 15561, + "id": 14931, "luminance": 0, "opaque": true, "replaceable": false, @@ -164962,7 +158005,7 @@ ] }, { - "id": 15562, + "id": 14932, "luminance": 0, "opaque": true, "replaceable": false, @@ -164975,7 +158018,7 @@ ] }, { - "id": 15563, + "id": 14933, "luminance": 0, "opaque": true, "replaceable": false, @@ -164988,7 +158031,7 @@ ] }, { - "id": 15564, + "id": 14934, "luminance": 0, "opaque": true, "replaceable": false, @@ -165000,7 +158043,7 @@ ] }, { - "id": 15565, + "id": 14935, "luminance": 0, "opaque": true, "replaceable": false, @@ -165013,7 +158056,7 @@ ] }, { - "id": 15566, + "id": 14936, "luminance": 0, "opaque": true, "replaceable": false, @@ -165026,7 +158069,7 @@ ] }, { - "id": 15567, + "id": 14937, "luminance": 0, "opaque": true, "replaceable": false, @@ -165036,7 +158079,7 @@ ] }, { - "id": 15568, + "id": 14938, "luminance": 0, "opaque": true, "replaceable": false, @@ -165047,7 +158090,7 @@ ] }, { - "id": 15569, + "id": 14939, "luminance": 0, "opaque": true, "replaceable": false, @@ -165058,7 +158101,7 @@ ] }, { - "id": 15570, + "id": 14940, "luminance": 0, "opaque": true, "replaceable": false, @@ -165068,7 +158111,7 @@ ] }, { - "id": 15571, + "id": 14941, "luminance": 0, "opaque": true, "replaceable": false, @@ -165079,7 +158122,7 @@ ] }, { - "id": 15572, + "id": 14942, "luminance": 0, "opaque": true, "replaceable": false, @@ -165090,7 +158133,7 @@ ] }, { - "id": 15573, + "id": 14943, "luminance": 0, "opaque": true, "replaceable": false, @@ -165102,7 +158145,7 @@ ] }, { - "id": 15574, + "id": 14944, "luminance": 0, "opaque": true, "replaceable": false, @@ -165115,7 +158158,7 @@ ] }, { - "id": 15575, + "id": 14945, "luminance": 0, "opaque": true, "replaceable": false, @@ -165128,7 +158171,7 @@ ] }, { - "id": 15576, + "id": 14946, "luminance": 0, "opaque": true, "replaceable": false, @@ -165140,7 +158183,7 @@ ] }, { - "id": 15577, + "id": 14947, "luminance": 0, "opaque": true, "replaceable": false, @@ -165153,7 +158196,7 @@ ] }, { - "id": 15578, + "id": 14948, "luminance": 0, "opaque": true, "replaceable": false, @@ -165166,7 +158209,7 @@ ] }, { - "id": 15579, + "id": 14949, "luminance": 0, "opaque": true, "replaceable": false, @@ -165176,7 +158219,7 @@ ] }, { - "id": 15580, + "id": 14950, "luminance": 0, "opaque": true, "replaceable": false, @@ -165187,7 +158230,7 @@ ] }, { - "id": 15581, + "id": 14951, "luminance": 0, "opaque": true, "replaceable": false, @@ -165198,7 +158241,7 @@ ] }, { - "id": 15582, + "id": 14952, "luminance": 0, "opaque": true, "replaceable": false, @@ -165208,7 +158251,7 @@ ] }, { - "id": 15583, + "id": 14953, "luminance": 0, "opaque": true, "replaceable": false, @@ -165219,7 +158262,7 @@ ] }, { - "id": 15584, + "id": 14954, "luminance": 0, "opaque": true, "replaceable": false, @@ -165230,7 +158273,7 @@ ] }, { - "id": 15585, + "id": 14955, "luminance": 0, "opaque": true, "replaceable": false, @@ -165241,7 +158284,7 @@ ] }, { - "id": 15586, + "id": 14956, "luminance": 0, "opaque": true, "replaceable": false, @@ -165253,7 +158296,7 @@ ] }, { - "id": 15587, + "id": 14957, "luminance": 0, "opaque": true, "replaceable": false, @@ -165265,7 +158308,7 @@ ] }, { - "id": 15588, + "id": 14958, "luminance": 0, "opaque": true, "replaceable": false, @@ -165276,7 +158319,7 @@ ] }, { - "id": 15589, + "id": 14959, "luminance": 0, "opaque": true, "replaceable": false, @@ -165288,7 +158331,7 @@ ] }, { - "id": 15590, + "id": 14960, "luminance": 0, "opaque": true, "replaceable": false, @@ -165300,7 +158343,7 @@ ] }, { - "id": 15591, + "id": 14961, "luminance": 0, "opaque": true, "replaceable": false, @@ -165310,7 +158353,7 @@ ] }, { - "id": 15592, + "id": 14962, "luminance": 0, "opaque": true, "replaceable": false, @@ -165320,7 +158363,7 @@ ] }, { - "id": 15593, + "id": 14963, "luminance": 0, "opaque": true, "replaceable": false, @@ -165330,7 +158373,7 @@ ] }, { - "id": 15594, + "id": 14964, "luminance": 0, "opaque": true, "replaceable": false, @@ -165340,7 +158383,7 @@ ] }, { - "id": 15595, + "id": 14965, "luminance": 0, "opaque": true, "replaceable": false, @@ -165350,7 +158393,7 @@ ] }, { - "id": 15596, + "id": 14966, "luminance": 0, "opaque": true, "replaceable": false, @@ -165360,7 +158403,7 @@ ] }, { - "id": 15597, + "id": 14967, "luminance": 0, "opaque": true, "replaceable": false, @@ -165372,7 +158415,7 @@ ] }, { - "id": 15598, + "id": 14968, "luminance": 0, "opaque": true, "replaceable": false, @@ -165385,7 +158428,7 @@ ] }, { - "id": 15599, + "id": 14969, "luminance": 0, "opaque": true, "replaceable": false, @@ -165398,7 +158441,7 @@ ] }, { - "id": 15600, + "id": 14970, "luminance": 0, "opaque": true, "replaceable": false, @@ -165410,7 +158453,7 @@ ] }, { - "id": 15601, + "id": 14971, "luminance": 0, "opaque": true, "replaceable": false, @@ -165423,7 +158466,7 @@ ] }, { - "id": 15602, + "id": 14972, "luminance": 0, "opaque": true, "replaceable": false, @@ -165436,7 +158479,7 @@ ] }, { - "id": 15603, + "id": 14973, "luminance": 0, "opaque": true, "replaceable": false, @@ -165446,7 +158489,7 @@ ] }, { - "id": 15604, + "id": 14974, "luminance": 0, "opaque": true, "replaceable": false, @@ -165457,7 +158500,7 @@ ] }, { - "id": 15605, + "id": 14975, "luminance": 0, "opaque": true, "replaceable": false, @@ -165468,7 +158511,7 @@ ] }, { - "id": 15606, + "id": 14976, "luminance": 0, "opaque": true, "replaceable": false, @@ -165478,7 +158521,7 @@ ] }, { - "id": 15607, + "id": 14977, "luminance": 0, "opaque": true, "replaceable": false, @@ -165489,7 +158532,7 @@ ] }, { - "id": 15608, + "id": 14978, "luminance": 0, "opaque": true, "replaceable": false, @@ -165500,7 +158543,7 @@ ] }, { - "id": 15609, + "id": 14979, "luminance": 0, "opaque": true, "replaceable": false, @@ -165512,7 +158555,7 @@ ] }, { - "id": 15610, + "id": 14980, "luminance": 0, "opaque": true, "replaceable": false, @@ -165525,7 +158568,7 @@ ] }, { - "id": 15611, + "id": 14981, "luminance": 0, "opaque": true, "replaceable": false, @@ -165538,7 +158581,7 @@ ] }, { - "id": 15612, + "id": 14982, "luminance": 0, "opaque": true, "replaceable": false, @@ -165550,7 +158593,7 @@ ] }, { - "id": 15613, + "id": 14983, "luminance": 0, "opaque": true, "replaceable": false, @@ -165563,7 +158606,7 @@ ] }, { - "id": 15614, + "id": 14984, "luminance": 0, "opaque": true, "replaceable": false, @@ -165576,7 +158619,7 @@ ] }, { - "id": 15615, + "id": 14985, "luminance": 0, "opaque": true, "replaceable": false, @@ -165586,7 +158629,7 @@ ] }, { - "id": 15616, + "id": 14986, "luminance": 0, "opaque": true, "replaceable": false, @@ -165597,7 +158640,7 @@ ] }, { - "id": 15617, + "id": 14987, "luminance": 0, "opaque": true, "replaceable": false, @@ -165608,7 +158651,7 @@ ] }, { - "id": 15618, + "id": 14988, "luminance": 0, "opaque": true, "replaceable": false, @@ -165618,7 +158661,7 @@ ] }, { - "id": 15619, + "id": 14989, "luminance": 0, "opaque": true, "replaceable": false, @@ -165629,7 +158672,7 @@ ] }, { - "id": 15620, + "id": 14990, "luminance": 0, "opaque": true, "replaceable": false, @@ -165642,9 +158685,9 @@ ] }, { - "id": 760, - "name": "stone_brick_wall", - "translation_key": "block.minecraft.stone_brick_wall", + "id": 762, + "name": "mossy_stone_brick_wall", + "translation_key": "block.minecraft.mossy_stone_brick_wall", "item_id": 380, "properties": [ { @@ -165694,10 +158737,10 @@ ] } ], - "default_state_id": 15624, + "default_state_id": 14994, "states": [ { - "id": 15621, + "id": 14991, "luminance": 0, "opaque": true, "replaceable": false, @@ -165706,7 +158749,7 @@ ] }, { - "id": 15622, + "id": 14992, "luminance": 0, "opaque": true, "replaceable": false, @@ -165717,7 +158760,7 @@ ] }, { - "id": 15623, + "id": 14993, "luminance": 0, "opaque": true, "replaceable": false, @@ -165728,7 +158771,7 @@ ] }, { - "id": 15624, + "id": 14994, "luminance": 0, "opaque": true, "replaceable": false, @@ -165737,7 +158780,7 @@ ] }, { - "id": 15625, + "id": 14995, "luminance": 0, "opaque": true, "replaceable": false, @@ -165748,7 +158791,7 @@ ] }, { - "id": 15626, + "id": 14996, "luminance": 0, "opaque": true, "replaceable": false, @@ -165759,14 +158802,14 @@ ] }, { - "id": 15627, + "id": 14997, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 15628, + "id": 14998, "luminance": 0, "opaque": true, "replaceable": false, @@ -165775,7 +158818,7 @@ ] }, { - "id": 15629, + "id": 14999, "luminance": 0, "opaque": true, "replaceable": false, @@ -165784,14 +158827,14 @@ ] }, { - "id": 15630, + "id": 15000, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 15631, + "id": 15001, "luminance": 0, "opaque": true, "replaceable": false, @@ -165800,7 +158843,7 @@ ] }, { - "id": 15632, + "id": 15002, "luminance": 0, "opaque": true, "replaceable": false, @@ -165809,7 +158852,7 @@ ] }, { - "id": 15633, + "id": 15003, "luminance": 0, "opaque": true, "replaceable": false, @@ -165819,7 +158862,7 @@ ] }, { - "id": 15634, + "id": 15004, "luminance": 0, "opaque": true, "replaceable": false, @@ -165831,7 +158874,7 @@ ] }, { - "id": 15635, + "id": 15005, "luminance": 0, "opaque": true, "replaceable": false, @@ -165843,7 +158886,7 @@ ] }, { - "id": 15636, + "id": 15006, "luminance": 0, "opaque": true, "replaceable": false, @@ -165853,7 +158896,7 @@ ] }, { - "id": 15637, + "id": 15007, "luminance": 0, "opaque": true, "replaceable": false, @@ -165865,7 +158908,7 @@ ] }, { - "id": 15638, + "id": 15008, "luminance": 0, "opaque": true, "replaceable": false, @@ -165877,7 +158920,7 @@ ] }, { - "id": 15639, + "id": 15009, "luminance": 0, "opaque": true, "replaceable": false, @@ -165886,7 +158929,7 @@ ] }, { - "id": 15640, + "id": 15010, "luminance": 0, "opaque": true, "replaceable": false, @@ -165896,7 +158939,7 @@ ] }, { - "id": 15641, + "id": 15011, "luminance": 0, "opaque": true, "replaceable": false, @@ -165906,7 +158949,7 @@ ] }, { - "id": 15642, + "id": 15012, "luminance": 0, "opaque": true, "replaceable": false, @@ -165915,7 +158958,7 @@ ] }, { - "id": 15643, + "id": 15013, "luminance": 0, "opaque": true, "replaceable": false, @@ -165925,7 +158968,7 @@ ] }, { - "id": 15644, + "id": 15014, "luminance": 0, "opaque": true, "replaceable": false, @@ -165935,7 +158978,7 @@ ] }, { - "id": 15645, + "id": 15015, "luminance": 0, "opaque": true, "replaceable": false, @@ -165945,7 +158988,7 @@ ] }, { - "id": 15646, + "id": 15016, "luminance": 0, "opaque": true, "replaceable": false, @@ -165957,7 +159000,7 @@ ] }, { - "id": 15647, + "id": 15017, "luminance": 0, "opaque": true, "replaceable": false, @@ -165969,7 +159012,7 @@ ] }, { - "id": 15648, + "id": 15018, "luminance": 0, "opaque": true, "replaceable": false, @@ -165979,7 +159022,7 @@ ] }, { - "id": 15649, + "id": 15019, "luminance": 0, "opaque": true, "replaceable": false, @@ -165991,7 +159034,7 @@ ] }, { - "id": 15650, + "id": 15020, "luminance": 0, "opaque": true, "replaceable": false, @@ -166003,7 +159046,7 @@ ] }, { - "id": 15651, + "id": 15021, "luminance": 0, "opaque": true, "replaceable": false, @@ -166012,7 +159055,7 @@ ] }, { - "id": 15652, + "id": 15022, "luminance": 0, "opaque": true, "replaceable": false, @@ -166022,7 +159065,7 @@ ] }, { - "id": 15653, + "id": 15023, "luminance": 0, "opaque": true, "replaceable": false, @@ -166032,7 +159075,7 @@ ] }, { - "id": 15654, + "id": 15024, "luminance": 0, "opaque": true, "replaceable": false, @@ -166041,7 +159084,7 @@ ] }, { - "id": 15655, + "id": 15025, "luminance": 0, "opaque": true, "replaceable": false, @@ -166051,7 +159094,7 @@ ] }, { - "id": 15656, + "id": 15026, "luminance": 0, "opaque": true, "replaceable": false, @@ -166061,7 +159104,7 @@ ] }, { - "id": 15657, + "id": 15027, "luminance": 0, "opaque": true, "replaceable": false, @@ -166071,7 +159114,7 @@ ] }, { - "id": 15658, + "id": 15028, "luminance": 0, "opaque": true, "replaceable": false, @@ -166083,7 +159126,7 @@ ] }, { - "id": 15659, + "id": 15029, "luminance": 0, "opaque": true, "replaceable": false, @@ -166095,7 +159138,7 @@ ] }, { - "id": 15660, + "id": 15030, "luminance": 0, "opaque": true, "replaceable": false, @@ -166105,7 +159148,7 @@ ] }, { - "id": 15661, + "id": 15031, "luminance": 0, "opaque": true, "replaceable": false, @@ -166117,7 +159160,7 @@ ] }, { - "id": 15662, + "id": 15032, "luminance": 0, "opaque": true, "replaceable": false, @@ -166129,7 +159172,7 @@ ] }, { - "id": 15663, + "id": 15033, "luminance": 0, "opaque": true, "replaceable": false, @@ -166138,7 +159181,7 @@ ] }, { - "id": 15664, + "id": 15034, "luminance": 0, "opaque": true, "replaceable": false, @@ -166148,7 +159191,7 @@ ] }, { - "id": 15665, + "id": 15035, "luminance": 0, "opaque": true, "replaceable": false, @@ -166158,7 +159201,7 @@ ] }, { - "id": 15666, + "id": 15036, "luminance": 0, "opaque": true, "replaceable": false, @@ -166167,7 +159210,7 @@ ] }, { - "id": 15667, + "id": 15037, "luminance": 0, "opaque": true, "replaceable": false, @@ -166177,7 +159220,7 @@ ] }, { - "id": 15668, + "id": 15038, "luminance": 0, "opaque": true, "replaceable": false, @@ -166187,7 +159230,7 @@ ] }, { - "id": 15669, + "id": 15039, "luminance": 0, "opaque": true, "replaceable": false, @@ -166198,7 +159241,7 @@ ] }, { - "id": 15670, + "id": 15040, "luminance": 0, "opaque": true, "replaceable": false, @@ -166211,7 +159254,7 @@ ] }, { - "id": 15671, + "id": 15041, "luminance": 0, "opaque": true, "replaceable": false, @@ -166224,7 +159267,7 @@ ] }, { - "id": 15672, + "id": 15042, "luminance": 0, "opaque": true, "replaceable": false, @@ -166235,7 +159278,7 @@ ] }, { - "id": 15673, + "id": 15043, "luminance": 0, "opaque": true, "replaceable": false, @@ -166248,7 +159291,7 @@ ] }, { - "id": 15674, + "id": 15044, "luminance": 0, "opaque": true, "replaceable": false, @@ -166261,7 +159304,7 @@ ] }, { - "id": 15675, + "id": 15045, "luminance": 0, "opaque": true, "replaceable": false, @@ -166270,7 +159313,7 @@ ] }, { - "id": 15676, + "id": 15046, "luminance": 0, "opaque": true, "replaceable": false, @@ -166281,7 +159324,7 @@ ] }, { - "id": 15677, + "id": 15047, "luminance": 0, "opaque": true, "replaceable": false, @@ -166292,7 +159335,7 @@ ] }, { - "id": 15678, + "id": 15048, "luminance": 0, "opaque": true, "replaceable": false, @@ -166301,7 +159344,7 @@ ] }, { - "id": 15679, + "id": 15049, "luminance": 0, "opaque": true, "replaceable": false, @@ -166312,7 +159355,7 @@ ] }, { - "id": 15680, + "id": 15050, "luminance": 0, "opaque": true, "replaceable": false, @@ -166323,7 +159366,7 @@ ] }, { - "id": 15681, + "id": 15051, "luminance": 0, "opaque": true, "replaceable": false, @@ -166334,7 +159377,7 @@ ] }, { - "id": 15682, + "id": 15052, "luminance": 0, "opaque": true, "replaceable": false, @@ -166347,7 +159390,7 @@ ] }, { - "id": 15683, + "id": 15053, "luminance": 0, "opaque": true, "replaceable": false, @@ -166360,7 +159403,7 @@ ] }, { - "id": 15684, + "id": 15054, "luminance": 0, "opaque": true, "replaceable": false, @@ -166371,7 +159414,7 @@ ] }, { - "id": 15685, + "id": 15055, "luminance": 0, "opaque": true, "replaceable": false, @@ -166384,7 +159427,7 @@ ] }, { - "id": 15686, + "id": 15056, "luminance": 0, "opaque": true, "replaceable": false, @@ -166397,7 +159440,7 @@ ] }, { - "id": 15687, + "id": 15057, "luminance": 0, "opaque": true, "replaceable": false, @@ -166406,7 +159449,7 @@ ] }, { - "id": 15688, + "id": 15058, "luminance": 0, "opaque": true, "replaceable": false, @@ -166417,7 +159460,7 @@ ] }, { - "id": 15689, + "id": 15059, "luminance": 0, "opaque": true, "replaceable": false, @@ -166428,7 +159471,7 @@ ] }, { - "id": 15690, + "id": 15060, "luminance": 0, "opaque": true, "replaceable": false, @@ -166437,7 +159480,7 @@ ] }, { - "id": 15691, + "id": 15061, "luminance": 0, "opaque": true, "replaceable": false, @@ -166448,7 +159491,7 @@ ] }, { - "id": 15692, + "id": 15062, "luminance": 0, "opaque": true, "replaceable": false, @@ -166459,7 +159502,7 @@ ] }, { - "id": 15693, + "id": 15063, "luminance": 0, "opaque": true, "replaceable": false, @@ -166469,7 +159512,7 @@ ] }, { - "id": 15694, + "id": 15064, "luminance": 0, "opaque": true, "replaceable": false, @@ -166481,7 +159524,7 @@ ] }, { - "id": 15695, + "id": 15065, "luminance": 0, "opaque": true, "replaceable": false, @@ -166493,7 +159536,7 @@ ] }, { - "id": 15696, + "id": 15066, "luminance": 0, "opaque": true, "replaceable": false, @@ -166503,7 +159546,7 @@ ] }, { - "id": 15697, + "id": 15067, "luminance": 0, "opaque": true, "replaceable": false, @@ -166515,7 +159558,7 @@ ] }, { - "id": 15698, + "id": 15068, "luminance": 0, "opaque": true, "replaceable": false, @@ -166527,7 +159570,7 @@ ] }, { - "id": 15699, + "id": 15069, "luminance": 0, "opaque": true, "replaceable": false, @@ -166536,7 +159579,7 @@ ] }, { - "id": 15700, + "id": 15070, "luminance": 0, "opaque": true, "replaceable": false, @@ -166546,7 +159589,7 @@ ] }, { - "id": 15701, + "id": 15071, "luminance": 0, "opaque": true, "replaceable": false, @@ -166556,7 +159599,7 @@ ] }, { - "id": 15702, + "id": 15072, "luminance": 0, "opaque": true, "replaceable": false, @@ -166565,7 +159608,7 @@ ] }, { - "id": 15703, + "id": 15073, "luminance": 0, "opaque": true, "replaceable": false, @@ -166575,7 +159618,7 @@ ] }, { - "id": 15704, + "id": 15074, "luminance": 0, "opaque": true, "replaceable": false, @@ -166585,7 +159628,7 @@ ] }, { - "id": 15705, + "id": 15075, "luminance": 0, "opaque": true, "replaceable": false, @@ -166596,7 +159639,7 @@ ] }, { - "id": 15706, + "id": 15076, "luminance": 0, "opaque": true, "replaceable": false, @@ -166609,7 +159652,7 @@ ] }, { - "id": 15707, + "id": 15077, "luminance": 0, "opaque": true, "replaceable": false, @@ -166622,7 +159665,7 @@ ] }, { - "id": 15708, + "id": 15078, "luminance": 0, "opaque": true, "replaceable": false, @@ -166633,7 +159676,7 @@ ] }, { - "id": 15709, + "id": 15079, "luminance": 0, "opaque": true, "replaceable": false, @@ -166646,7 +159689,7 @@ ] }, { - "id": 15710, + "id": 15080, "luminance": 0, "opaque": true, "replaceable": false, @@ -166659,7 +159702,7 @@ ] }, { - "id": 15711, + "id": 15081, "luminance": 0, "opaque": true, "replaceable": false, @@ -166668,7 +159711,7 @@ ] }, { - "id": 15712, + "id": 15082, "luminance": 0, "opaque": true, "replaceable": false, @@ -166679,7 +159722,7 @@ ] }, { - "id": 15713, + "id": 15083, "luminance": 0, "opaque": true, "replaceable": false, @@ -166690,7 +159733,7 @@ ] }, { - "id": 15714, + "id": 15084, "luminance": 0, "opaque": true, "replaceable": false, @@ -166699,7 +159742,7 @@ ] }, { - "id": 15715, + "id": 15085, "luminance": 0, "opaque": true, "replaceable": false, @@ -166710,7 +159753,7 @@ ] }, { - "id": 15716, + "id": 15086, "luminance": 0, "opaque": true, "replaceable": false, @@ -166721,7 +159764,7 @@ ] }, { - "id": 15717, + "id": 15087, "luminance": 0, "opaque": true, "replaceable": false, @@ -166732,7 +159775,7 @@ ] }, { - "id": 15718, + "id": 15088, "luminance": 0, "opaque": true, "replaceable": false, @@ -166745,7 +159788,7 @@ ] }, { - "id": 15719, + "id": 15089, "luminance": 0, "opaque": true, "replaceable": false, @@ -166758,7 +159801,7 @@ ] }, { - "id": 15720, + "id": 15090, "luminance": 0, "opaque": true, "replaceable": false, @@ -166769,7 +159812,7 @@ ] }, { - "id": 15721, + "id": 15091, "luminance": 0, "opaque": true, "replaceable": false, @@ -166782,7 +159825,7 @@ ] }, { - "id": 15722, + "id": 15092, "luminance": 0, "opaque": true, "replaceable": false, @@ -166795,7 +159838,7 @@ ] }, { - "id": 15723, + "id": 15093, "luminance": 0, "opaque": true, "replaceable": false, @@ -166804,7 +159847,7 @@ ] }, { - "id": 15724, + "id": 15094, "luminance": 0, "opaque": true, "replaceable": false, @@ -166815,7 +159858,7 @@ ] }, { - "id": 15725, + "id": 15095, "luminance": 0, "opaque": true, "replaceable": false, @@ -166826,7 +159869,7 @@ ] }, { - "id": 15726, + "id": 15096, "luminance": 0, "opaque": true, "replaceable": false, @@ -166835,7 +159878,7 @@ ] }, { - "id": 15727, + "id": 15097, "luminance": 0, "opaque": true, "replaceable": false, @@ -166846,7 +159889,7 @@ ] }, { - "id": 15728, + "id": 15098, "luminance": 0, "opaque": true, "replaceable": false, @@ -166857,7 +159900,7 @@ ] }, { - "id": 15729, + "id": 15099, "luminance": 0, "opaque": true, "replaceable": false, @@ -166867,7 +159910,7 @@ ] }, { - "id": 15730, + "id": 15100, "luminance": 0, "opaque": true, "replaceable": false, @@ -166878,7 +159921,7 @@ ] }, { - "id": 15731, + "id": 15101, "luminance": 0, "opaque": true, "replaceable": false, @@ -166889,7 +159932,7 @@ ] }, { - "id": 15732, + "id": 15102, "luminance": 0, "opaque": true, "replaceable": false, @@ -166899,7 +159942,7 @@ ] }, { - "id": 15733, + "id": 15103, "luminance": 0, "opaque": true, "replaceable": false, @@ -166910,7 +159953,7 @@ ] }, { - "id": 15734, + "id": 15104, "luminance": 0, "opaque": true, "replaceable": false, @@ -166921,7 +159964,7 @@ ] }, { - "id": 15735, + "id": 15105, "luminance": 0, "opaque": true, "replaceable": false, @@ -166930,7 +159973,7 @@ ] }, { - "id": 15736, + "id": 15106, "luminance": 0, "opaque": true, "replaceable": false, @@ -166939,7 +159982,7 @@ ] }, { - "id": 15737, + "id": 15107, "luminance": 0, "opaque": true, "replaceable": false, @@ -166948,7 +159991,7 @@ ] }, { - "id": 15738, + "id": 15108, "luminance": 0, "opaque": true, "replaceable": false, @@ -166957,7 +160000,7 @@ ] }, { - "id": 15739, + "id": 15109, "luminance": 0, "opaque": true, "replaceable": false, @@ -166966,7 +160009,7 @@ ] }, { - "id": 15740, + "id": 15110, "luminance": 0, "opaque": true, "replaceable": false, @@ -166975,7 +160018,7 @@ ] }, { - "id": 15741, + "id": 15111, "luminance": 0, "opaque": true, "replaceable": false, @@ -166986,7 +160029,7 @@ ] }, { - "id": 15742, + "id": 15112, "luminance": 0, "opaque": true, "replaceable": false, @@ -166998,7 +160041,7 @@ ] }, { - "id": 15743, + "id": 15113, "luminance": 0, "opaque": true, "replaceable": false, @@ -167010,7 +160053,7 @@ ] }, { - "id": 15744, + "id": 15114, "luminance": 0, "opaque": true, "replaceable": false, @@ -167021,7 +160064,7 @@ ] }, { - "id": 15745, + "id": 15115, "luminance": 0, "opaque": true, "replaceable": false, @@ -167033,7 +160076,7 @@ ] }, { - "id": 15746, + "id": 15116, "luminance": 0, "opaque": true, "replaceable": false, @@ -167045,7 +160088,7 @@ ] }, { - "id": 15747, + "id": 15117, "luminance": 0, "opaque": true, "replaceable": false, @@ -167055,7 +160098,7 @@ ] }, { - "id": 15748, + "id": 15118, "luminance": 0, "opaque": true, "replaceable": false, @@ -167065,7 +160108,7 @@ ] }, { - "id": 15749, + "id": 15119, "luminance": 0, "opaque": true, "replaceable": false, @@ -167075,7 +160118,7 @@ ] }, { - "id": 15750, + "id": 15120, "luminance": 0, "opaque": true, "replaceable": false, @@ -167085,7 +160128,7 @@ ] }, { - "id": 15751, + "id": 15121, "luminance": 0, "opaque": true, "replaceable": false, @@ -167095,7 +160138,7 @@ ] }, { - "id": 15752, + "id": 15122, "luminance": 0, "opaque": true, "replaceable": false, @@ -167105,7 +160148,7 @@ ] }, { - "id": 15753, + "id": 15123, "luminance": 0, "opaque": true, "replaceable": false, @@ -167116,7 +160159,7 @@ ] }, { - "id": 15754, + "id": 15124, "luminance": 0, "opaque": true, "replaceable": false, @@ -167128,7 +160171,7 @@ ] }, { - "id": 15755, + "id": 15125, "luminance": 0, "opaque": true, "replaceable": false, @@ -167140,7 +160183,7 @@ ] }, { - "id": 15756, + "id": 15126, "luminance": 0, "opaque": true, "replaceable": false, @@ -167151,7 +160194,7 @@ ] }, { - "id": 15757, + "id": 15127, "luminance": 0, "opaque": true, "replaceable": false, @@ -167163,7 +160206,7 @@ ] }, { - "id": 15758, + "id": 15128, "luminance": 0, "opaque": true, "replaceable": false, @@ -167175,7 +160218,7 @@ ] }, { - "id": 15759, + "id": 15129, "luminance": 0, "opaque": true, "replaceable": false, @@ -167185,7 +160228,7 @@ ] }, { - "id": 15760, + "id": 15130, "luminance": 0, "opaque": true, "replaceable": false, @@ -167195,7 +160238,7 @@ ] }, { - "id": 15761, + "id": 15131, "luminance": 0, "opaque": true, "replaceable": false, @@ -167205,7 +160248,7 @@ ] }, { - "id": 15762, + "id": 15132, "luminance": 0, "opaque": true, "replaceable": false, @@ -167215,7 +160258,7 @@ ] }, { - "id": 15763, + "id": 15133, "luminance": 0, "opaque": true, "replaceable": false, @@ -167225,7 +160268,7 @@ ] }, { - "id": 15764, + "id": 15134, "luminance": 0, "opaque": true, "replaceable": false, @@ -167235,7 +160278,7 @@ ] }, { - "id": 15765, + "id": 15135, "luminance": 0, "opaque": true, "replaceable": false, @@ -167246,7 +160289,7 @@ ] }, { - "id": 15766, + "id": 15136, "luminance": 0, "opaque": true, "replaceable": false, @@ -167258,7 +160301,7 @@ ] }, { - "id": 15767, + "id": 15137, "luminance": 0, "opaque": true, "replaceable": false, @@ -167270,7 +160313,7 @@ ] }, { - "id": 15768, + "id": 15138, "luminance": 0, "opaque": true, "replaceable": false, @@ -167281,7 +160324,7 @@ ] }, { - "id": 15769, + "id": 15139, "luminance": 0, "opaque": true, "replaceable": false, @@ -167293,7 +160336,7 @@ ] }, { - "id": 15770, + "id": 15140, "luminance": 0, "opaque": true, "replaceable": false, @@ -167305,7 +160348,7 @@ ] }, { - "id": 15771, + "id": 15141, "luminance": 0, "opaque": true, "replaceable": false, @@ -167315,7 +160358,7 @@ ] }, { - "id": 15772, + "id": 15142, "luminance": 0, "opaque": true, "replaceable": false, @@ -167325,7 +160368,7 @@ ] }, { - "id": 15773, + "id": 15143, "luminance": 0, "opaque": true, "replaceable": false, @@ -167335,7 +160378,7 @@ ] }, { - "id": 15774, + "id": 15144, "luminance": 0, "opaque": true, "replaceable": false, @@ -167345,7 +160388,7 @@ ] }, { - "id": 15775, + "id": 15145, "luminance": 0, "opaque": true, "replaceable": false, @@ -167355,7 +160398,7 @@ ] }, { - "id": 15776, + "id": 15146, "luminance": 0, "opaque": true, "replaceable": false, @@ -167365,7 +160408,7 @@ ] }, { - "id": 15777, + "id": 15147, "luminance": 0, "opaque": true, "replaceable": false, @@ -167377,7 +160420,7 @@ ] }, { - "id": 15778, + "id": 15148, "luminance": 0, "opaque": true, "replaceable": false, @@ -167390,7 +160433,7 @@ ] }, { - "id": 15779, + "id": 15149, "luminance": 0, "opaque": true, "replaceable": false, @@ -167403,7 +160446,7 @@ ] }, { - "id": 15780, + "id": 15150, "luminance": 0, "opaque": true, "replaceable": false, @@ -167415,7 +160458,7 @@ ] }, { - "id": 15781, + "id": 15151, "luminance": 0, "opaque": true, "replaceable": false, @@ -167428,7 +160471,7 @@ ] }, { - "id": 15782, + "id": 15152, "luminance": 0, "opaque": true, "replaceable": false, @@ -167441,7 +160484,7 @@ ] }, { - "id": 15783, + "id": 15153, "luminance": 0, "opaque": true, "replaceable": false, @@ -167451,7 +160494,7 @@ ] }, { - "id": 15784, + "id": 15154, "luminance": 0, "opaque": true, "replaceable": false, @@ -167462,7 +160505,7 @@ ] }, { - "id": 15785, + "id": 15155, "luminance": 0, "opaque": true, "replaceable": false, @@ -167473,7 +160516,7 @@ ] }, { - "id": 15786, + "id": 15156, "luminance": 0, "opaque": true, "replaceable": false, @@ -167483,7 +160526,7 @@ ] }, { - "id": 15787, + "id": 15157, "luminance": 0, "opaque": true, "replaceable": false, @@ -167494,7 +160537,7 @@ ] }, { - "id": 15788, + "id": 15158, "luminance": 0, "opaque": true, "replaceable": false, @@ -167505,7 +160548,7 @@ ] }, { - "id": 15789, + "id": 15159, "luminance": 0, "opaque": true, "replaceable": false, @@ -167517,7 +160560,7 @@ ] }, { - "id": 15790, + "id": 15160, "luminance": 0, "opaque": true, "replaceable": false, @@ -167530,7 +160573,7 @@ ] }, { - "id": 15791, + "id": 15161, "luminance": 0, "opaque": true, "replaceable": false, @@ -167543,7 +160586,7 @@ ] }, { - "id": 15792, + "id": 15162, "luminance": 0, "opaque": true, "replaceable": false, @@ -167555,7 +160598,7 @@ ] }, { - "id": 15793, + "id": 15163, "luminance": 0, "opaque": true, "replaceable": false, @@ -167568,7 +160611,7 @@ ] }, { - "id": 15794, + "id": 15164, "luminance": 0, "opaque": true, "replaceable": false, @@ -167581,7 +160624,7 @@ ] }, { - "id": 15795, + "id": 15165, "luminance": 0, "opaque": true, "replaceable": false, @@ -167591,7 +160634,7 @@ ] }, { - "id": 15796, + "id": 15166, "luminance": 0, "opaque": true, "replaceable": false, @@ -167602,7 +160645,7 @@ ] }, { - "id": 15797, + "id": 15167, "luminance": 0, "opaque": true, "replaceable": false, @@ -167613,7 +160656,7 @@ ] }, { - "id": 15798, + "id": 15168, "luminance": 0, "opaque": true, "replaceable": false, @@ -167623,7 +160666,7 @@ ] }, { - "id": 15799, + "id": 15169, "luminance": 0, "opaque": true, "replaceable": false, @@ -167634,7 +160677,7 @@ ] }, { - "id": 15800, + "id": 15170, "luminance": 0, "opaque": true, "replaceable": false, @@ -167645,7 +160688,7 @@ ] }, { - "id": 15801, + "id": 15171, "luminance": 0, "opaque": true, "replaceable": false, @@ -167656,7 +160699,7 @@ ] }, { - "id": 15802, + "id": 15172, "luminance": 0, "opaque": true, "replaceable": false, @@ -167668,7 +160711,7 @@ ] }, { - "id": 15803, + "id": 15173, "luminance": 0, "opaque": true, "replaceable": false, @@ -167680,7 +160723,7 @@ ] }, { - "id": 15804, + "id": 15174, "luminance": 0, "opaque": true, "replaceable": false, @@ -167691,7 +160734,7 @@ ] }, { - "id": 15805, + "id": 15175, "luminance": 0, "opaque": true, "replaceable": false, @@ -167703,7 +160746,7 @@ ] }, { - "id": 15806, + "id": 15176, "luminance": 0, "opaque": true, "replaceable": false, @@ -167715,7 +160758,7 @@ ] }, { - "id": 15807, + "id": 15177, "luminance": 0, "opaque": true, "replaceable": false, @@ -167725,7 +160768,7 @@ ] }, { - "id": 15808, + "id": 15178, "luminance": 0, "opaque": true, "replaceable": false, @@ -167735,7 +160778,7 @@ ] }, { - "id": 15809, + "id": 15179, "luminance": 0, "opaque": true, "replaceable": false, @@ -167745,7 +160788,7 @@ ] }, { - "id": 15810, + "id": 15180, "luminance": 0, "opaque": true, "replaceable": false, @@ -167755,7 +160798,7 @@ ] }, { - "id": 15811, + "id": 15181, "luminance": 0, "opaque": true, "replaceable": false, @@ -167765,7 +160808,7 @@ ] }, { - "id": 15812, + "id": 15182, "luminance": 0, "opaque": true, "replaceable": false, @@ -167775,7 +160818,7 @@ ] }, { - "id": 15813, + "id": 15183, "luminance": 0, "opaque": true, "replaceable": false, @@ -167787,7 +160830,7 @@ ] }, { - "id": 15814, + "id": 15184, "luminance": 0, "opaque": true, "replaceable": false, @@ -167800,7 +160843,7 @@ ] }, { - "id": 15815, + "id": 15185, "luminance": 0, "opaque": true, "replaceable": false, @@ -167813,7 +160856,7 @@ ] }, { - "id": 15816, + "id": 15186, "luminance": 0, "opaque": true, "replaceable": false, @@ -167825,7 +160868,7 @@ ] }, { - "id": 15817, + "id": 15187, "luminance": 0, "opaque": true, "replaceable": false, @@ -167838,7 +160881,7 @@ ] }, { - "id": 15818, + "id": 15188, "luminance": 0, "opaque": true, "replaceable": false, @@ -167851,7 +160894,7 @@ ] }, { - "id": 15819, + "id": 15189, "luminance": 0, "opaque": true, "replaceable": false, @@ -167861,7 +160904,7 @@ ] }, { - "id": 15820, + "id": 15190, "luminance": 0, "opaque": true, "replaceable": false, @@ -167872,7 +160915,7 @@ ] }, { - "id": 15821, + "id": 15191, "luminance": 0, "opaque": true, "replaceable": false, @@ -167883,7 +160926,7 @@ ] }, { - "id": 15822, + "id": 15192, "luminance": 0, "opaque": true, "replaceable": false, @@ -167893,7 +160936,7 @@ ] }, { - "id": 15823, + "id": 15193, "luminance": 0, "opaque": true, "replaceable": false, @@ -167904,7 +160947,7 @@ ] }, { - "id": 15824, + "id": 15194, "luminance": 0, "opaque": true, "replaceable": false, @@ -167915,7 +160958,7 @@ ] }, { - "id": 15825, + "id": 15195, "luminance": 0, "opaque": true, "replaceable": false, @@ -167927,7 +160970,7 @@ ] }, { - "id": 15826, + "id": 15196, "luminance": 0, "opaque": true, "replaceable": false, @@ -167940,7 +160983,7 @@ ] }, { - "id": 15827, + "id": 15197, "luminance": 0, "opaque": true, "replaceable": false, @@ -167953,7 +160996,7 @@ ] }, { - "id": 15828, + "id": 15198, "luminance": 0, "opaque": true, "replaceable": false, @@ -167965,7 +161008,7 @@ ] }, { - "id": 15829, + "id": 15199, "luminance": 0, "opaque": true, "replaceable": false, @@ -167978,7 +161021,7 @@ ] }, { - "id": 15830, + "id": 15200, "luminance": 0, "opaque": true, "replaceable": false, @@ -167991,7 +161034,7 @@ ] }, { - "id": 15831, + "id": 15201, "luminance": 0, "opaque": true, "replaceable": false, @@ -168001,7 +161044,7 @@ ] }, { - "id": 15832, + "id": 15202, "luminance": 0, "opaque": true, "replaceable": false, @@ -168012,7 +161055,7 @@ ] }, { - "id": 15833, + "id": 15203, "luminance": 0, "opaque": true, "replaceable": false, @@ -168023,7 +161066,7 @@ ] }, { - "id": 15834, + "id": 15204, "luminance": 0, "opaque": true, "replaceable": false, @@ -168033,7 +161076,7 @@ ] }, { - "id": 15835, + "id": 15205, "luminance": 0, "opaque": true, "replaceable": false, @@ -168044,7 +161087,7 @@ ] }, { - "id": 15836, + "id": 15206, "luminance": 0, "opaque": true, "replaceable": false, @@ -168055,7 +161098,7 @@ ] }, { - "id": 15837, + "id": 15207, "luminance": 0, "opaque": true, "replaceable": false, @@ -168065,7 +161108,7 @@ ] }, { - "id": 15838, + "id": 15208, "luminance": 0, "opaque": true, "replaceable": false, @@ -168076,7 +161119,7 @@ ] }, { - "id": 15839, + "id": 15209, "luminance": 0, "opaque": true, "replaceable": false, @@ -168087,7 +161130,7 @@ ] }, { - "id": 15840, + "id": 15210, "luminance": 0, "opaque": true, "replaceable": false, @@ -168097,7 +161140,7 @@ ] }, { - "id": 15841, + "id": 15211, "luminance": 0, "opaque": true, "replaceable": false, @@ -168108,7 +161151,7 @@ ] }, { - "id": 15842, + "id": 15212, "luminance": 0, "opaque": true, "replaceable": false, @@ -168119,7 +161162,7 @@ ] }, { - "id": 15843, + "id": 15213, "luminance": 0, "opaque": true, "replaceable": false, @@ -168128,7 +161171,7 @@ ] }, { - "id": 15844, + "id": 15214, "luminance": 0, "opaque": true, "replaceable": false, @@ -168137,7 +161180,7 @@ ] }, { - "id": 15845, + "id": 15215, "luminance": 0, "opaque": true, "replaceable": false, @@ -168146,7 +161189,7 @@ ] }, { - "id": 15846, + "id": 15216, "luminance": 0, "opaque": true, "replaceable": false, @@ -168155,7 +161198,7 @@ ] }, { - "id": 15847, + "id": 15217, "luminance": 0, "opaque": true, "replaceable": false, @@ -168164,7 +161207,7 @@ ] }, { - "id": 15848, + "id": 15218, "luminance": 0, "opaque": true, "replaceable": false, @@ -168173,7 +161216,7 @@ ] }, { - "id": 15849, + "id": 15219, "luminance": 0, "opaque": true, "replaceable": false, @@ -168184,7 +161227,7 @@ ] }, { - "id": 15850, + "id": 15220, "luminance": 0, "opaque": true, "replaceable": false, @@ -168196,7 +161239,7 @@ ] }, { - "id": 15851, + "id": 15221, "luminance": 0, "opaque": true, "replaceable": false, @@ -168208,7 +161251,7 @@ ] }, { - "id": 15852, + "id": 15222, "luminance": 0, "opaque": true, "replaceable": false, @@ -168219,7 +161262,7 @@ ] }, { - "id": 15853, + "id": 15223, "luminance": 0, "opaque": true, "replaceable": false, @@ -168231,7 +161274,7 @@ ] }, { - "id": 15854, + "id": 15224, "luminance": 0, "opaque": true, "replaceable": false, @@ -168243,7 +161286,7 @@ ] }, { - "id": 15855, + "id": 15225, "luminance": 0, "opaque": true, "replaceable": false, @@ -168253,7 +161296,7 @@ ] }, { - "id": 15856, + "id": 15226, "luminance": 0, "opaque": true, "replaceable": false, @@ -168263,7 +161306,7 @@ ] }, { - "id": 15857, + "id": 15227, "luminance": 0, "opaque": true, "replaceable": false, @@ -168273,7 +161316,7 @@ ] }, { - "id": 15858, + "id": 15228, "luminance": 0, "opaque": true, "replaceable": false, @@ -168283,7 +161326,7 @@ ] }, { - "id": 15859, + "id": 15229, "luminance": 0, "opaque": true, "replaceable": false, @@ -168293,7 +161336,7 @@ ] }, { - "id": 15860, + "id": 15230, "luminance": 0, "opaque": true, "replaceable": false, @@ -168303,7 +161346,7 @@ ] }, { - "id": 15861, + "id": 15231, "luminance": 0, "opaque": true, "replaceable": false, @@ -168314,7 +161357,7 @@ ] }, { - "id": 15862, + "id": 15232, "luminance": 0, "opaque": true, "replaceable": false, @@ -168326,7 +161369,7 @@ ] }, { - "id": 15863, + "id": 15233, "luminance": 0, "opaque": true, "replaceable": false, @@ -168338,7 +161381,7 @@ ] }, { - "id": 15864, + "id": 15234, "luminance": 0, "opaque": true, "replaceable": false, @@ -168349,7 +161392,7 @@ ] }, { - "id": 15865, + "id": 15235, "luminance": 0, "opaque": true, "replaceable": false, @@ -168361,7 +161404,7 @@ ] }, { - "id": 15866, + "id": 15236, "luminance": 0, "opaque": true, "replaceable": false, @@ -168373,7 +161416,7 @@ ] }, { - "id": 15867, + "id": 15237, "luminance": 0, "opaque": true, "replaceable": false, @@ -168383,7 +161426,7 @@ ] }, { - "id": 15868, + "id": 15238, "luminance": 0, "opaque": true, "replaceable": false, @@ -168393,7 +161436,7 @@ ] }, { - "id": 15869, + "id": 15239, "luminance": 0, "opaque": true, "replaceable": false, @@ -168403,7 +161446,7 @@ ] }, { - "id": 15870, + "id": 15240, "luminance": 0, "opaque": true, "replaceable": false, @@ -168413,7 +161456,7 @@ ] }, { - "id": 15871, + "id": 15241, "luminance": 0, "opaque": true, "replaceable": false, @@ -168423,7 +161466,7 @@ ] }, { - "id": 15872, + "id": 15242, "luminance": 0, "opaque": true, "replaceable": false, @@ -168433,7 +161476,7 @@ ] }, { - "id": 15873, + "id": 15243, "luminance": 0, "opaque": true, "replaceable": false, @@ -168444,7 +161487,7 @@ ] }, { - "id": 15874, + "id": 15244, "luminance": 0, "opaque": true, "replaceable": false, @@ -168456,7 +161499,7 @@ ] }, { - "id": 15875, + "id": 15245, "luminance": 0, "opaque": true, "replaceable": false, @@ -168468,7 +161511,7 @@ ] }, { - "id": 15876, + "id": 15246, "luminance": 0, "opaque": true, "replaceable": false, @@ -168479,7 +161522,7 @@ ] }, { - "id": 15877, + "id": 15247, "luminance": 0, "opaque": true, "replaceable": false, @@ -168491,7 +161534,7 @@ ] }, { - "id": 15878, + "id": 15248, "luminance": 0, "opaque": true, "replaceable": false, @@ -168503,7 +161546,7 @@ ] }, { - "id": 15879, + "id": 15249, "luminance": 0, "opaque": true, "replaceable": false, @@ -168513,7 +161556,7 @@ ] }, { - "id": 15880, + "id": 15250, "luminance": 0, "opaque": true, "replaceable": false, @@ -168523,7 +161566,7 @@ ] }, { - "id": 15881, + "id": 15251, "luminance": 0, "opaque": true, "replaceable": false, @@ -168533,7 +161576,7 @@ ] }, { - "id": 15882, + "id": 15252, "luminance": 0, "opaque": true, "replaceable": false, @@ -168543,7 +161586,7 @@ ] }, { - "id": 15883, + "id": 15253, "luminance": 0, "opaque": true, "replaceable": false, @@ -168553,7 +161596,7 @@ ] }, { - "id": 15884, + "id": 15254, "luminance": 0, "opaque": true, "replaceable": false, @@ -168563,7 +161606,7 @@ ] }, { - "id": 15885, + "id": 15255, "luminance": 0, "opaque": true, "replaceable": false, @@ -168575,7 +161618,7 @@ ] }, { - "id": 15886, + "id": 15256, "luminance": 0, "opaque": true, "replaceable": false, @@ -168588,7 +161631,7 @@ ] }, { - "id": 15887, + "id": 15257, "luminance": 0, "opaque": true, "replaceable": false, @@ -168601,7 +161644,7 @@ ] }, { - "id": 15888, + "id": 15258, "luminance": 0, "opaque": true, "replaceable": false, @@ -168613,7 +161656,7 @@ ] }, { - "id": 15889, + "id": 15259, "luminance": 0, "opaque": true, "replaceable": false, @@ -168626,7 +161669,7 @@ ] }, { - "id": 15890, + "id": 15260, "luminance": 0, "opaque": true, "replaceable": false, @@ -168639,7 +161682,7 @@ ] }, { - "id": 15891, + "id": 15261, "luminance": 0, "opaque": true, "replaceable": false, @@ -168649,7 +161692,7 @@ ] }, { - "id": 15892, + "id": 15262, "luminance": 0, "opaque": true, "replaceable": false, @@ -168660,7 +161703,7 @@ ] }, { - "id": 15893, + "id": 15263, "luminance": 0, "opaque": true, "replaceable": false, @@ -168671,7 +161714,7 @@ ] }, { - "id": 15894, + "id": 15264, "luminance": 0, "opaque": true, "replaceable": false, @@ -168681,7 +161724,7 @@ ] }, { - "id": 15895, + "id": 15265, "luminance": 0, "opaque": true, "replaceable": false, @@ -168692,7 +161735,7 @@ ] }, { - "id": 15896, + "id": 15266, "luminance": 0, "opaque": true, "replaceable": false, @@ -168703,7 +161746,7 @@ ] }, { - "id": 15897, + "id": 15267, "luminance": 0, "opaque": true, "replaceable": false, @@ -168715,7 +161758,7 @@ ] }, { - "id": 15898, + "id": 15268, "luminance": 0, "opaque": true, "replaceable": false, @@ -168728,7 +161771,7 @@ ] }, { - "id": 15899, + "id": 15269, "luminance": 0, "opaque": true, "replaceable": false, @@ -168741,7 +161784,7 @@ ] }, { - "id": 15900, + "id": 15270, "luminance": 0, "opaque": true, "replaceable": false, @@ -168753,7 +161796,7 @@ ] }, { - "id": 15901, + "id": 15271, "luminance": 0, "opaque": true, "replaceable": false, @@ -168766,7 +161809,7 @@ ] }, { - "id": 15902, + "id": 15272, "luminance": 0, "opaque": true, "replaceable": false, @@ -168779,7 +161822,7 @@ ] }, { - "id": 15903, + "id": 15273, "luminance": 0, "opaque": true, "replaceable": false, @@ -168789,7 +161832,7 @@ ] }, { - "id": 15904, + "id": 15274, "luminance": 0, "opaque": true, "replaceable": false, @@ -168800,7 +161843,7 @@ ] }, { - "id": 15905, + "id": 15275, "luminance": 0, "opaque": true, "replaceable": false, @@ -168811,7 +161854,7 @@ ] }, { - "id": 15906, + "id": 15276, "luminance": 0, "opaque": true, "replaceable": false, @@ -168821,7 +161864,7 @@ ] }, { - "id": 15907, + "id": 15277, "luminance": 0, "opaque": true, "replaceable": false, @@ -168832,7 +161875,7 @@ ] }, { - "id": 15908, + "id": 15278, "luminance": 0, "opaque": true, "replaceable": false, @@ -168843,7 +161886,7 @@ ] }, { - "id": 15909, + "id": 15279, "luminance": 0, "opaque": true, "replaceable": false, @@ -168854,7 +161897,7 @@ ] }, { - "id": 15910, + "id": 15280, "luminance": 0, "opaque": true, "replaceable": false, @@ -168866,7 +161909,7 @@ ] }, { - "id": 15911, + "id": 15281, "luminance": 0, "opaque": true, "replaceable": false, @@ -168878,7 +161921,7 @@ ] }, { - "id": 15912, + "id": 15282, "luminance": 0, "opaque": true, "replaceable": false, @@ -168889,7 +161932,7 @@ ] }, { - "id": 15913, + "id": 15283, "luminance": 0, "opaque": true, "replaceable": false, @@ -168901,7 +161944,7 @@ ] }, { - "id": 15914, + "id": 15284, "luminance": 0, "opaque": true, "replaceable": false, @@ -168913,7 +161956,7 @@ ] }, { - "id": 15915, + "id": 15285, "luminance": 0, "opaque": true, "replaceable": false, @@ -168923,7 +161966,7 @@ ] }, { - "id": 15916, + "id": 15286, "luminance": 0, "opaque": true, "replaceable": false, @@ -168933,7 +161976,7 @@ ] }, { - "id": 15917, + "id": 15287, "luminance": 0, "opaque": true, "replaceable": false, @@ -168943,7 +161986,7 @@ ] }, { - "id": 15918, + "id": 15288, "luminance": 0, "opaque": true, "replaceable": false, @@ -168953,7 +161996,7 @@ ] }, { - "id": 15919, + "id": 15289, "luminance": 0, "opaque": true, "replaceable": false, @@ -168963,7 +162006,7 @@ ] }, { - "id": 15920, + "id": 15290, "luminance": 0, "opaque": true, "replaceable": false, @@ -168973,7 +162016,7 @@ ] }, { - "id": 15921, + "id": 15291, "luminance": 0, "opaque": true, "replaceable": false, @@ -168985,7 +162028,7 @@ ] }, { - "id": 15922, + "id": 15292, "luminance": 0, "opaque": true, "replaceable": false, @@ -168998,7 +162041,7 @@ ] }, { - "id": 15923, + "id": 15293, "luminance": 0, "opaque": true, "replaceable": false, @@ -169011,7 +162054,7 @@ ] }, { - "id": 15924, + "id": 15294, "luminance": 0, "opaque": true, "replaceable": false, @@ -169023,7 +162066,7 @@ ] }, { - "id": 15925, + "id": 15295, "luminance": 0, "opaque": true, "replaceable": false, @@ -169036,7 +162079,7 @@ ] }, { - "id": 15926, + "id": 15296, "luminance": 0, "opaque": true, "replaceable": false, @@ -169049,7 +162092,7 @@ ] }, { - "id": 15927, + "id": 15297, "luminance": 0, "opaque": true, "replaceable": false, @@ -169059,7 +162102,7 @@ ] }, { - "id": 15928, + "id": 15298, "luminance": 0, "opaque": true, "replaceable": false, @@ -169070,7 +162113,7 @@ ] }, { - "id": 15929, + "id": 15299, "luminance": 0, "opaque": true, "replaceable": false, @@ -169081,7 +162124,7 @@ ] }, { - "id": 15930, + "id": 15300, "luminance": 0, "opaque": true, "replaceable": false, @@ -169091,7 +162134,7 @@ ] }, { - "id": 15931, + "id": 15301, "luminance": 0, "opaque": true, "replaceable": false, @@ -169102,7 +162145,7 @@ ] }, { - "id": 15932, + "id": 15302, "luminance": 0, "opaque": true, "replaceable": false, @@ -169113,7 +162156,7 @@ ] }, { - "id": 15933, + "id": 15303, "luminance": 0, "opaque": true, "replaceable": false, @@ -169125,7 +162168,7 @@ ] }, { - "id": 15934, + "id": 15304, "luminance": 0, "opaque": true, "replaceable": false, @@ -169138,7 +162181,7 @@ ] }, { - "id": 15935, + "id": 15305, "luminance": 0, "opaque": true, "replaceable": false, @@ -169151,7 +162194,7 @@ ] }, { - "id": 15936, + "id": 15306, "luminance": 0, "opaque": true, "replaceable": false, @@ -169163,7 +162206,7 @@ ] }, { - "id": 15937, + "id": 15307, "luminance": 0, "opaque": true, "replaceable": false, @@ -169176,7 +162219,7 @@ ] }, { - "id": 15938, + "id": 15308, "luminance": 0, "opaque": true, "replaceable": false, @@ -169189,7 +162232,7 @@ ] }, { - "id": 15939, + "id": 15309, "luminance": 0, "opaque": true, "replaceable": false, @@ -169199,7 +162242,7 @@ ] }, { - "id": 15940, + "id": 15310, "luminance": 0, "opaque": true, "replaceable": false, @@ -169210,7 +162253,7 @@ ] }, { - "id": 15941, + "id": 15311, "luminance": 0, "opaque": true, "replaceable": false, @@ -169221,7 +162264,7 @@ ] }, { - "id": 15942, + "id": 15312, "luminance": 0, "opaque": true, "replaceable": false, @@ -169231,7 +162274,7 @@ ] }, { - "id": 15943, + "id": 15313, "luminance": 0, "opaque": true, "replaceable": false, @@ -169242,7 +162285,7 @@ ] }, { - "id": 15944, + "id": 15314, "luminance": 0, "opaque": true, "replaceable": false, @@ -169255,9 +162298,9 @@ ] }, { - "id": 761, - "name": "mud_brick_wall", - "translation_key": "block.minecraft.mud_brick_wall", + "id": 763, + "name": "granite_wall", + "translation_key": "block.minecraft.granite_wall", "item_id": 381, "properties": [ { @@ -169307,10 +162350,10 @@ ] } ], - "default_state_id": 15948, + "default_state_id": 15318, "states": [ { - "id": 15945, + "id": 15315, "luminance": 0, "opaque": true, "replaceable": false, @@ -169319,7 +162362,7 @@ ] }, { - "id": 15946, + "id": 15316, "luminance": 0, "opaque": true, "replaceable": false, @@ -169330,7 +162373,7 @@ ] }, { - "id": 15947, + "id": 15317, "luminance": 0, "opaque": true, "replaceable": false, @@ -169341,7 +162384,7 @@ ] }, { - "id": 15948, + "id": 15318, "luminance": 0, "opaque": true, "replaceable": false, @@ -169350,7 +162393,7 @@ ] }, { - "id": 15949, + "id": 15319, "luminance": 0, "opaque": true, "replaceable": false, @@ -169361,7 +162404,7 @@ ] }, { - "id": 15950, + "id": 15320, "luminance": 0, "opaque": true, "replaceable": false, @@ -169372,14 +162415,14 @@ ] }, { - "id": 15951, + "id": 15321, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 15952, + "id": 15322, "luminance": 0, "opaque": true, "replaceable": false, @@ -169388,7 +162431,7 @@ ] }, { - "id": 15953, + "id": 15323, "luminance": 0, "opaque": true, "replaceable": false, @@ -169397,14 +162440,14 @@ ] }, { - "id": 15954, + "id": 15324, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 15955, + "id": 15325, "luminance": 0, "opaque": true, "replaceable": false, @@ -169413,7 +162456,7 @@ ] }, { - "id": 15956, + "id": 15326, "luminance": 0, "opaque": true, "replaceable": false, @@ -169422,7 +162465,7 @@ ] }, { - "id": 15957, + "id": 15327, "luminance": 0, "opaque": true, "replaceable": false, @@ -169432,7 +162475,7 @@ ] }, { - "id": 15958, + "id": 15328, "luminance": 0, "opaque": true, "replaceable": false, @@ -169444,7 +162487,7 @@ ] }, { - "id": 15959, + "id": 15329, "luminance": 0, "opaque": true, "replaceable": false, @@ -169456,7 +162499,7 @@ ] }, { - "id": 15960, + "id": 15330, "luminance": 0, "opaque": true, "replaceable": false, @@ -169466,7 +162509,7 @@ ] }, { - "id": 15961, + "id": 15331, "luminance": 0, "opaque": true, "replaceable": false, @@ -169478,7 +162521,7 @@ ] }, { - "id": 15962, + "id": 15332, "luminance": 0, "opaque": true, "replaceable": false, @@ -169490,7 +162533,7 @@ ] }, { - "id": 15963, + "id": 15333, "luminance": 0, "opaque": true, "replaceable": false, @@ -169499,7 +162542,7 @@ ] }, { - "id": 15964, + "id": 15334, "luminance": 0, "opaque": true, "replaceable": false, @@ -169509,7 +162552,7 @@ ] }, { - "id": 15965, + "id": 15335, "luminance": 0, "opaque": true, "replaceable": false, @@ -169519,7 +162562,7 @@ ] }, { - "id": 15966, + "id": 15336, "luminance": 0, "opaque": true, "replaceable": false, @@ -169528,7 +162571,7 @@ ] }, { - "id": 15967, + "id": 15337, "luminance": 0, "opaque": true, "replaceable": false, @@ -169538,7 +162581,7 @@ ] }, { - "id": 15968, + "id": 15338, "luminance": 0, "opaque": true, "replaceable": false, @@ -169548,7 +162591,7 @@ ] }, { - "id": 15969, + "id": 15339, "luminance": 0, "opaque": true, "replaceable": false, @@ -169558,7 +162601,7 @@ ] }, { - "id": 15970, + "id": 15340, "luminance": 0, "opaque": true, "replaceable": false, @@ -169570,7 +162613,7 @@ ] }, { - "id": 15971, + "id": 15341, "luminance": 0, "opaque": true, "replaceable": false, @@ -169582,7 +162625,7 @@ ] }, { - "id": 15972, + "id": 15342, "luminance": 0, "opaque": true, "replaceable": false, @@ -169592,7 +162635,7 @@ ] }, { - "id": 15973, + "id": 15343, "luminance": 0, "opaque": true, "replaceable": false, @@ -169604,7 +162647,7 @@ ] }, { - "id": 15974, + "id": 15344, "luminance": 0, "opaque": true, "replaceable": false, @@ -169616,7 +162659,7 @@ ] }, { - "id": 15975, + "id": 15345, "luminance": 0, "opaque": true, "replaceable": false, @@ -169625,7 +162668,7 @@ ] }, { - "id": 15976, + "id": 15346, "luminance": 0, "opaque": true, "replaceable": false, @@ -169635,7 +162678,7 @@ ] }, { - "id": 15977, + "id": 15347, "luminance": 0, "opaque": true, "replaceable": false, @@ -169645,7 +162688,7 @@ ] }, { - "id": 15978, + "id": 15348, "luminance": 0, "opaque": true, "replaceable": false, @@ -169654,7 +162697,7 @@ ] }, { - "id": 15979, + "id": 15349, "luminance": 0, "opaque": true, "replaceable": false, @@ -169664,7 +162707,7 @@ ] }, { - "id": 15980, + "id": 15350, "luminance": 0, "opaque": true, "replaceable": false, @@ -169674,7 +162717,7 @@ ] }, { - "id": 15981, + "id": 15351, "luminance": 0, "opaque": true, "replaceable": false, @@ -169684,7 +162727,7 @@ ] }, { - "id": 15982, + "id": 15352, "luminance": 0, "opaque": true, "replaceable": false, @@ -169696,7 +162739,7 @@ ] }, { - "id": 15983, + "id": 15353, "luminance": 0, "opaque": true, "replaceable": false, @@ -169708,7 +162751,7 @@ ] }, { - "id": 15984, + "id": 15354, "luminance": 0, "opaque": true, "replaceable": false, @@ -169718,7 +162761,7 @@ ] }, { - "id": 15985, + "id": 15355, "luminance": 0, "opaque": true, "replaceable": false, @@ -169730,7 +162773,7 @@ ] }, { - "id": 15986, + "id": 15356, "luminance": 0, "opaque": true, "replaceable": false, @@ -169742,7 +162785,7 @@ ] }, { - "id": 15987, + "id": 15357, "luminance": 0, "opaque": true, "replaceable": false, @@ -169751,7 +162794,7 @@ ] }, { - "id": 15988, + "id": 15358, "luminance": 0, "opaque": true, "replaceable": false, @@ -169761,7 +162804,7 @@ ] }, { - "id": 15989, + "id": 15359, "luminance": 0, "opaque": true, "replaceable": false, @@ -169771,7 +162814,7 @@ ] }, { - "id": 15990, + "id": 15360, "luminance": 0, "opaque": true, "replaceable": false, @@ -169780,7 +162823,7 @@ ] }, { - "id": 15991, + "id": 15361, "luminance": 0, "opaque": true, "replaceable": false, @@ -169790,7 +162833,7 @@ ] }, { - "id": 15992, + "id": 15362, "luminance": 0, "opaque": true, "replaceable": false, @@ -169800,7 +162843,7 @@ ] }, { - "id": 15993, + "id": 15363, "luminance": 0, "opaque": true, "replaceable": false, @@ -169811,7 +162854,7 @@ ] }, { - "id": 15994, + "id": 15364, "luminance": 0, "opaque": true, "replaceable": false, @@ -169824,7 +162867,7 @@ ] }, { - "id": 15995, + "id": 15365, "luminance": 0, "opaque": true, "replaceable": false, @@ -169837,7 +162880,7 @@ ] }, { - "id": 15996, + "id": 15366, "luminance": 0, "opaque": true, "replaceable": false, @@ -169848,7 +162891,7 @@ ] }, { - "id": 15997, + "id": 15367, "luminance": 0, "opaque": true, "replaceable": false, @@ -169861,7 +162904,7 @@ ] }, { - "id": 15998, + "id": 15368, "luminance": 0, "opaque": true, "replaceable": false, @@ -169874,7 +162917,7 @@ ] }, { - "id": 15999, + "id": 15369, "luminance": 0, "opaque": true, "replaceable": false, @@ -169883,7 +162926,7 @@ ] }, { - "id": 16000, + "id": 15370, "luminance": 0, "opaque": true, "replaceable": false, @@ -169894,7 +162937,7 @@ ] }, { - "id": 16001, + "id": 15371, "luminance": 0, "opaque": true, "replaceable": false, @@ -169905,7 +162948,7 @@ ] }, { - "id": 16002, + "id": 15372, "luminance": 0, "opaque": true, "replaceable": false, @@ -169914,7 +162957,7 @@ ] }, { - "id": 16003, + "id": 15373, "luminance": 0, "opaque": true, "replaceable": false, @@ -169925,7 +162968,7 @@ ] }, { - "id": 16004, + "id": 15374, "luminance": 0, "opaque": true, "replaceable": false, @@ -169936,7 +162979,7 @@ ] }, { - "id": 16005, + "id": 15375, "luminance": 0, "opaque": true, "replaceable": false, @@ -169947,7 +162990,7 @@ ] }, { - "id": 16006, + "id": 15376, "luminance": 0, "opaque": true, "replaceable": false, @@ -169960,7 +163003,7 @@ ] }, { - "id": 16007, + "id": 15377, "luminance": 0, "opaque": true, "replaceable": false, @@ -169973,7 +163016,7 @@ ] }, { - "id": 16008, + "id": 15378, "luminance": 0, "opaque": true, "replaceable": false, @@ -169984,7 +163027,7 @@ ] }, { - "id": 16009, + "id": 15379, "luminance": 0, "opaque": true, "replaceable": false, @@ -169997,7 +163040,7 @@ ] }, { - "id": 16010, + "id": 15380, "luminance": 0, "opaque": true, "replaceable": false, @@ -170010,7 +163053,7 @@ ] }, { - "id": 16011, + "id": 15381, "luminance": 0, "opaque": true, "replaceable": false, @@ -170019,7 +163062,7 @@ ] }, { - "id": 16012, + "id": 15382, "luminance": 0, "opaque": true, "replaceable": false, @@ -170030,7 +163073,7 @@ ] }, { - "id": 16013, + "id": 15383, "luminance": 0, "opaque": true, "replaceable": false, @@ -170041,7 +163084,7 @@ ] }, { - "id": 16014, + "id": 15384, "luminance": 0, "opaque": true, "replaceable": false, @@ -170050,7 +163093,7 @@ ] }, { - "id": 16015, + "id": 15385, "luminance": 0, "opaque": true, "replaceable": false, @@ -170061,7 +163104,7 @@ ] }, { - "id": 16016, + "id": 15386, "luminance": 0, "opaque": true, "replaceable": false, @@ -170072,7 +163115,7 @@ ] }, { - "id": 16017, + "id": 15387, "luminance": 0, "opaque": true, "replaceable": false, @@ -170082,7 +163125,7 @@ ] }, { - "id": 16018, + "id": 15388, "luminance": 0, "opaque": true, "replaceable": false, @@ -170094,7 +163137,7 @@ ] }, { - "id": 16019, + "id": 15389, "luminance": 0, "opaque": true, "replaceable": false, @@ -170106,7 +163149,7 @@ ] }, { - "id": 16020, + "id": 15390, "luminance": 0, "opaque": true, "replaceable": false, @@ -170116,7 +163159,7 @@ ] }, { - "id": 16021, + "id": 15391, "luminance": 0, "opaque": true, "replaceable": false, @@ -170128,7 +163171,7 @@ ] }, { - "id": 16022, + "id": 15392, "luminance": 0, "opaque": true, "replaceable": false, @@ -170140,7 +163183,7 @@ ] }, { - "id": 16023, + "id": 15393, "luminance": 0, "opaque": true, "replaceable": false, @@ -170149,7 +163192,7 @@ ] }, { - "id": 16024, + "id": 15394, "luminance": 0, "opaque": true, "replaceable": false, @@ -170159,7 +163202,7 @@ ] }, { - "id": 16025, + "id": 15395, "luminance": 0, "opaque": true, "replaceable": false, @@ -170169,7 +163212,7 @@ ] }, { - "id": 16026, + "id": 15396, "luminance": 0, "opaque": true, "replaceable": false, @@ -170178,7 +163221,7 @@ ] }, { - "id": 16027, + "id": 15397, "luminance": 0, "opaque": true, "replaceable": false, @@ -170188,7 +163231,7 @@ ] }, { - "id": 16028, + "id": 15398, "luminance": 0, "opaque": true, "replaceable": false, @@ -170198,7 +163241,7 @@ ] }, { - "id": 16029, + "id": 15399, "luminance": 0, "opaque": true, "replaceable": false, @@ -170209,7 +163252,7 @@ ] }, { - "id": 16030, + "id": 15400, "luminance": 0, "opaque": true, "replaceable": false, @@ -170222,7 +163265,7 @@ ] }, { - "id": 16031, + "id": 15401, "luminance": 0, "opaque": true, "replaceable": false, @@ -170235,7 +163278,7 @@ ] }, { - "id": 16032, + "id": 15402, "luminance": 0, "opaque": true, "replaceable": false, @@ -170246,7 +163289,7 @@ ] }, { - "id": 16033, + "id": 15403, "luminance": 0, "opaque": true, "replaceable": false, @@ -170259,7 +163302,7 @@ ] }, { - "id": 16034, + "id": 15404, "luminance": 0, "opaque": true, "replaceable": false, @@ -170272,7 +163315,7 @@ ] }, { - "id": 16035, + "id": 15405, "luminance": 0, "opaque": true, "replaceable": false, @@ -170281,7 +163324,7 @@ ] }, { - "id": 16036, + "id": 15406, "luminance": 0, "opaque": true, "replaceable": false, @@ -170292,7 +163335,7 @@ ] }, { - "id": 16037, + "id": 15407, "luminance": 0, "opaque": true, "replaceable": false, @@ -170303,7 +163346,7 @@ ] }, { - "id": 16038, + "id": 15408, "luminance": 0, "opaque": true, "replaceable": false, @@ -170312,7 +163355,7 @@ ] }, { - "id": 16039, + "id": 15409, "luminance": 0, "opaque": true, "replaceable": false, @@ -170323,7 +163366,7 @@ ] }, { - "id": 16040, + "id": 15410, "luminance": 0, "opaque": true, "replaceable": false, @@ -170334,7 +163377,7 @@ ] }, { - "id": 16041, + "id": 15411, "luminance": 0, "opaque": true, "replaceable": false, @@ -170345,7 +163388,7 @@ ] }, { - "id": 16042, + "id": 15412, "luminance": 0, "opaque": true, "replaceable": false, @@ -170358,7 +163401,7 @@ ] }, { - "id": 16043, + "id": 15413, "luminance": 0, "opaque": true, "replaceable": false, @@ -170371,7 +163414,7 @@ ] }, { - "id": 16044, + "id": 15414, "luminance": 0, "opaque": true, "replaceable": false, @@ -170382,7 +163425,7 @@ ] }, { - "id": 16045, + "id": 15415, "luminance": 0, "opaque": true, "replaceable": false, @@ -170395,7 +163438,7 @@ ] }, { - "id": 16046, + "id": 15416, "luminance": 0, "opaque": true, "replaceable": false, @@ -170408,7 +163451,7 @@ ] }, { - "id": 16047, + "id": 15417, "luminance": 0, "opaque": true, "replaceable": false, @@ -170417,7 +163460,7 @@ ] }, { - "id": 16048, + "id": 15418, "luminance": 0, "opaque": true, "replaceable": false, @@ -170428,7 +163471,7 @@ ] }, { - "id": 16049, + "id": 15419, "luminance": 0, "opaque": true, "replaceable": false, @@ -170439,7 +163482,7 @@ ] }, { - "id": 16050, + "id": 15420, "luminance": 0, "opaque": true, "replaceable": false, @@ -170448,7 +163491,7 @@ ] }, { - "id": 16051, + "id": 15421, "luminance": 0, "opaque": true, "replaceable": false, @@ -170459,7 +163502,7 @@ ] }, { - "id": 16052, + "id": 15422, "luminance": 0, "opaque": true, "replaceable": false, @@ -170470,7 +163513,7 @@ ] }, { - "id": 16053, + "id": 15423, "luminance": 0, "opaque": true, "replaceable": false, @@ -170480,7 +163523,7 @@ ] }, { - "id": 16054, + "id": 15424, "luminance": 0, "opaque": true, "replaceable": false, @@ -170491,7 +163534,7 @@ ] }, { - "id": 16055, + "id": 15425, "luminance": 0, "opaque": true, "replaceable": false, @@ -170502,7 +163545,7 @@ ] }, { - "id": 16056, + "id": 15426, "luminance": 0, "opaque": true, "replaceable": false, @@ -170512,7 +163555,7 @@ ] }, { - "id": 16057, + "id": 15427, "luminance": 0, "opaque": true, "replaceable": false, @@ -170523,7 +163566,7 @@ ] }, { - "id": 16058, + "id": 15428, "luminance": 0, "opaque": true, "replaceable": false, @@ -170534,7 +163577,7 @@ ] }, { - "id": 16059, + "id": 15429, "luminance": 0, "opaque": true, "replaceable": false, @@ -170543,7 +163586,7 @@ ] }, { - "id": 16060, + "id": 15430, "luminance": 0, "opaque": true, "replaceable": false, @@ -170552,7 +163595,7 @@ ] }, { - "id": 16061, + "id": 15431, "luminance": 0, "opaque": true, "replaceable": false, @@ -170561,7 +163604,7 @@ ] }, { - "id": 16062, + "id": 15432, "luminance": 0, "opaque": true, "replaceable": false, @@ -170570,7 +163613,7 @@ ] }, { - "id": 16063, + "id": 15433, "luminance": 0, "opaque": true, "replaceable": false, @@ -170579,7 +163622,7 @@ ] }, { - "id": 16064, + "id": 15434, "luminance": 0, "opaque": true, "replaceable": false, @@ -170588,7 +163631,7 @@ ] }, { - "id": 16065, + "id": 15435, "luminance": 0, "opaque": true, "replaceable": false, @@ -170599,7 +163642,7 @@ ] }, { - "id": 16066, + "id": 15436, "luminance": 0, "opaque": true, "replaceable": false, @@ -170611,7 +163654,7 @@ ] }, { - "id": 16067, + "id": 15437, "luminance": 0, "opaque": true, "replaceable": false, @@ -170623,7 +163666,7 @@ ] }, { - "id": 16068, + "id": 15438, "luminance": 0, "opaque": true, "replaceable": false, @@ -170634,7 +163677,7 @@ ] }, { - "id": 16069, + "id": 15439, "luminance": 0, "opaque": true, "replaceable": false, @@ -170646,7 +163689,7 @@ ] }, { - "id": 16070, + "id": 15440, "luminance": 0, "opaque": true, "replaceable": false, @@ -170658,7 +163701,7 @@ ] }, { - "id": 16071, + "id": 15441, "luminance": 0, "opaque": true, "replaceable": false, @@ -170668,7 +163711,7 @@ ] }, { - "id": 16072, + "id": 15442, "luminance": 0, "opaque": true, "replaceable": false, @@ -170678,7 +163721,7 @@ ] }, { - "id": 16073, + "id": 15443, "luminance": 0, "opaque": true, "replaceable": false, @@ -170688,7 +163731,7 @@ ] }, { - "id": 16074, + "id": 15444, "luminance": 0, "opaque": true, "replaceable": false, @@ -170698,7 +163741,7 @@ ] }, { - "id": 16075, + "id": 15445, "luminance": 0, "opaque": true, "replaceable": false, @@ -170708,7 +163751,7 @@ ] }, { - "id": 16076, + "id": 15446, "luminance": 0, "opaque": true, "replaceable": false, @@ -170718,7 +163761,7 @@ ] }, { - "id": 16077, + "id": 15447, "luminance": 0, "opaque": true, "replaceable": false, @@ -170729,7 +163772,7 @@ ] }, { - "id": 16078, + "id": 15448, "luminance": 0, "opaque": true, "replaceable": false, @@ -170741,7 +163784,7 @@ ] }, { - "id": 16079, + "id": 15449, "luminance": 0, "opaque": true, "replaceable": false, @@ -170753,7 +163796,7 @@ ] }, { - "id": 16080, + "id": 15450, "luminance": 0, "opaque": true, "replaceable": false, @@ -170764,7 +163807,7 @@ ] }, { - "id": 16081, + "id": 15451, "luminance": 0, "opaque": true, "replaceable": false, @@ -170776,7 +163819,7 @@ ] }, { - "id": 16082, + "id": 15452, "luminance": 0, "opaque": true, "replaceable": false, @@ -170788,7 +163831,7 @@ ] }, { - "id": 16083, + "id": 15453, "luminance": 0, "opaque": true, "replaceable": false, @@ -170798,7 +163841,7 @@ ] }, { - "id": 16084, + "id": 15454, "luminance": 0, "opaque": true, "replaceable": false, @@ -170808,7 +163851,7 @@ ] }, { - "id": 16085, + "id": 15455, "luminance": 0, "opaque": true, "replaceable": false, @@ -170818,7 +163861,7 @@ ] }, { - "id": 16086, + "id": 15456, "luminance": 0, "opaque": true, "replaceable": false, @@ -170828,7 +163871,7 @@ ] }, { - "id": 16087, + "id": 15457, "luminance": 0, "opaque": true, "replaceable": false, @@ -170838,7 +163881,7 @@ ] }, { - "id": 16088, + "id": 15458, "luminance": 0, "opaque": true, "replaceable": false, @@ -170848,7 +163891,7 @@ ] }, { - "id": 16089, + "id": 15459, "luminance": 0, "opaque": true, "replaceable": false, @@ -170859,7 +163902,7 @@ ] }, { - "id": 16090, + "id": 15460, "luminance": 0, "opaque": true, "replaceable": false, @@ -170871,7 +163914,7 @@ ] }, { - "id": 16091, + "id": 15461, "luminance": 0, "opaque": true, "replaceable": false, @@ -170883,7 +163926,7 @@ ] }, { - "id": 16092, + "id": 15462, "luminance": 0, "opaque": true, "replaceable": false, @@ -170894,7 +163937,7 @@ ] }, { - "id": 16093, + "id": 15463, "luminance": 0, "opaque": true, "replaceable": false, @@ -170906,7 +163949,7 @@ ] }, { - "id": 16094, + "id": 15464, "luminance": 0, "opaque": true, "replaceable": false, @@ -170918,7 +163961,7 @@ ] }, { - "id": 16095, + "id": 15465, "luminance": 0, "opaque": true, "replaceable": false, @@ -170928,7 +163971,7 @@ ] }, { - "id": 16096, + "id": 15466, "luminance": 0, "opaque": true, "replaceable": false, @@ -170938,7 +163981,7 @@ ] }, { - "id": 16097, + "id": 15467, "luminance": 0, "opaque": true, "replaceable": false, @@ -170948,7 +163991,7 @@ ] }, { - "id": 16098, + "id": 15468, "luminance": 0, "opaque": true, "replaceable": false, @@ -170958,7 +164001,7 @@ ] }, { - "id": 16099, + "id": 15469, "luminance": 0, "opaque": true, "replaceable": false, @@ -170968,7 +164011,7 @@ ] }, { - "id": 16100, + "id": 15470, "luminance": 0, "opaque": true, "replaceable": false, @@ -170978,7 +164021,7 @@ ] }, { - "id": 16101, + "id": 15471, "luminance": 0, "opaque": true, "replaceable": false, @@ -170990,7 +164033,7 @@ ] }, { - "id": 16102, + "id": 15472, "luminance": 0, "opaque": true, "replaceable": false, @@ -171003,7 +164046,7 @@ ] }, { - "id": 16103, + "id": 15473, "luminance": 0, "opaque": true, "replaceable": false, @@ -171016,7 +164059,7 @@ ] }, { - "id": 16104, + "id": 15474, "luminance": 0, "opaque": true, "replaceable": false, @@ -171028,7 +164071,7 @@ ] }, { - "id": 16105, + "id": 15475, "luminance": 0, "opaque": true, "replaceable": false, @@ -171041,7 +164084,7 @@ ] }, { - "id": 16106, + "id": 15476, "luminance": 0, "opaque": true, "replaceable": false, @@ -171054,7 +164097,7 @@ ] }, { - "id": 16107, + "id": 15477, "luminance": 0, "opaque": true, "replaceable": false, @@ -171064,7 +164107,7 @@ ] }, { - "id": 16108, + "id": 15478, "luminance": 0, "opaque": true, "replaceable": false, @@ -171075,7 +164118,7 @@ ] }, { - "id": 16109, + "id": 15479, "luminance": 0, "opaque": true, "replaceable": false, @@ -171086,7 +164129,7 @@ ] }, { - "id": 16110, + "id": 15480, "luminance": 0, "opaque": true, "replaceable": false, @@ -171096,7 +164139,7 @@ ] }, { - "id": 16111, + "id": 15481, "luminance": 0, "opaque": true, "replaceable": false, @@ -171107,7 +164150,7 @@ ] }, { - "id": 16112, + "id": 15482, "luminance": 0, "opaque": true, "replaceable": false, @@ -171118,7 +164161,7 @@ ] }, { - "id": 16113, + "id": 15483, "luminance": 0, "opaque": true, "replaceable": false, @@ -171130,7 +164173,7 @@ ] }, { - "id": 16114, + "id": 15484, "luminance": 0, "opaque": true, "replaceable": false, @@ -171143,7 +164186,7 @@ ] }, { - "id": 16115, + "id": 15485, "luminance": 0, "opaque": true, "replaceable": false, @@ -171156,7 +164199,7 @@ ] }, { - "id": 16116, + "id": 15486, "luminance": 0, "opaque": true, "replaceable": false, @@ -171168,7 +164211,7 @@ ] }, { - "id": 16117, + "id": 15487, "luminance": 0, "opaque": true, "replaceable": false, @@ -171181,7 +164224,7 @@ ] }, { - "id": 16118, + "id": 15488, "luminance": 0, "opaque": true, "replaceable": false, @@ -171194,7 +164237,7 @@ ] }, { - "id": 16119, + "id": 15489, "luminance": 0, "opaque": true, "replaceable": false, @@ -171204,7 +164247,7 @@ ] }, { - "id": 16120, + "id": 15490, "luminance": 0, "opaque": true, "replaceable": false, @@ -171215,7 +164258,7 @@ ] }, { - "id": 16121, + "id": 15491, "luminance": 0, "opaque": true, "replaceable": false, @@ -171226,7 +164269,7 @@ ] }, { - "id": 16122, + "id": 15492, "luminance": 0, "opaque": true, "replaceable": false, @@ -171236,7 +164279,7 @@ ] }, { - "id": 16123, + "id": 15493, "luminance": 0, "opaque": true, "replaceable": false, @@ -171247,7 +164290,7 @@ ] }, { - "id": 16124, + "id": 15494, "luminance": 0, "opaque": true, "replaceable": false, @@ -171258,7 +164301,7 @@ ] }, { - "id": 16125, + "id": 15495, "luminance": 0, "opaque": true, "replaceable": false, @@ -171269,7 +164312,7 @@ ] }, { - "id": 16126, + "id": 15496, "luminance": 0, "opaque": true, "replaceable": false, @@ -171281,7 +164324,7 @@ ] }, { - "id": 16127, + "id": 15497, "luminance": 0, "opaque": true, "replaceable": false, @@ -171293,7 +164336,7 @@ ] }, { - "id": 16128, + "id": 15498, "luminance": 0, "opaque": true, "replaceable": false, @@ -171304,7 +164347,7 @@ ] }, { - "id": 16129, + "id": 15499, "luminance": 0, "opaque": true, "replaceable": false, @@ -171316,7 +164359,7 @@ ] }, { - "id": 16130, + "id": 15500, "luminance": 0, "opaque": true, "replaceable": false, @@ -171328,7 +164371,7 @@ ] }, { - "id": 16131, + "id": 15501, "luminance": 0, "opaque": true, "replaceable": false, @@ -171338,7 +164381,7 @@ ] }, { - "id": 16132, + "id": 15502, "luminance": 0, "opaque": true, "replaceable": false, @@ -171348,7 +164391,7 @@ ] }, { - "id": 16133, + "id": 15503, "luminance": 0, "opaque": true, "replaceable": false, @@ -171358,7 +164401,7 @@ ] }, { - "id": 16134, + "id": 15504, "luminance": 0, "opaque": true, "replaceable": false, @@ -171368,7 +164411,7 @@ ] }, { - "id": 16135, + "id": 15505, "luminance": 0, "opaque": true, "replaceable": false, @@ -171378,7 +164421,7 @@ ] }, { - "id": 16136, + "id": 15506, "luminance": 0, "opaque": true, "replaceable": false, @@ -171388,7 +164431,7 @@ ] }, { - "id": 16137, + "id": 15507, "luminance": 0, "opaque": true, "replaceable": false, @@ -171400,7 +164443,7 @@ ] }, { - "id": 16138, + "id": 15508, "luminance": 0, "opaque": true, "replaceable": false, @@ -171413,7 +164456,7 @@ ] }, { - "id": 16139, + "id": 15509, "luminance": 0, "opaque": true, "replaceable": false, @@ -171426,7 +164469,7 @@ ] }, { - "id": 16140, + "id": 15510, "luminance": 0, "opaque": true, "replaceable": false, @@ -171438,7 +164481,7 @@ ] }, { - "id": 16141, + "id": 15511, "luminance": 0, "opaque": true, "replaceable": false, @@ -171451,7 +164494,7 @@ ] }, { - "id": 16142, + "id": 15512, "luminance": 0, "opaque": true, "replaceable": false, @@ -171464,7 +164507,7 @@ ] }, { - "id": 16143, + "id": 15513, "luminance": 0, "opaque": true, "replaceable": false, @@ -171474,7 +164517,7 @@ ] }, { - "id": 16144, + "id": 15514, "luminance": 0, "opaque": true, "replaceable": false, @@ -171485,7 +164528,7 @@ ] }, { - "id": 16145, + "id": 15515, "luminance": 0, "opaque": true, "replaceable": false, @@ -171496,7 +164539,7 @@ ] }, { - "id": 16146, + "id": 15516, "luminance": 0, "opaque": true, "replaceable": false, @@ -171506,7 +164549,7 @@ ] }, { - "id": 16147, + "id": 15517, "luminance": 0, "opaque": true, "replaceable": false, @@ -171517,7 +164560,7 @@ ] }, { - "id": 16148, + "id": 15518, "luminance": 0, "opaque": true, "replaceable": false, @@ -171528,7 +164571,7 @@ ] }, { - "id": 16149, + "id": 15519, "luminance": 0, "opaque": true, "replaceable": false, @@ -171540,7 +164583,7 @@ ] }, { - "id": 16150, + "id": 15520, "luminance": 0, "opaque": true, "replaceable": false, @@ -171553,7 +164596,7 @@ ] }, { - "id": 16151, + "id": 15521, "luminance": 0, "opaque": true, "replaceable": false, @@ -171566,7 +164609,7 @@ ] }, { - "id": 16152, + "id": 15522, "luminance": 0, "opaque": true, "replaceable": false, @@ -171578,7 +164621,7 @@ ] }, { - "id": 16153, + "id": 15523, "luminance": 0, "opaque": true, "replaceable": false, @@ -171591,7 +164634,7 @@ ] }, { - "id": 16154, + "id": 15524, "luminance": 0, "opaque": true, "replaceable": false, @@ -171604,7 +164647,7 @@ ] }, { - "id": 16155, + "id": 15525, "luminance": 0, "opaque": true, "replaceable": false, @@ -171614,7 +164657,7 @@ ] }, { - "id": 16156, + "id": 15526, "luminance": 0, "opaque": true, "replaceable": false, @@ -171625,7 +164668,7 @@ ] }, { - "id": 16157, + "id": 15527, "luminance": 0, "opaque": true, "replaceable": false, @@ -171636,7 +164679,7 @@ ] }, { - "id": 16158, + "id": 15528, "luminance": 0, "opaque": true, "replaceable": false, @@ -171646,7 +164689,7 @@ ] }, { - "id": 16159, + "id": 15529, "luminance": 0, "opaque": true, "replaceable": false, @@ -171657,7 +164700,7 @@ ] }, { - "id": 16160, + "id": 15530, "luminance": 0, "opaque": true, "replaceable": false, @@ -171668,7 +164711,7 @@ ] }, { - "id": 16161, + "id": 15531, "luminance": 0, "opaque": true, "replaceable": false, @@ -171678,7 +164721,7 @@ ] }, { - "id": 16162, + "id": 15532, "luminance": 0, "opaque": true, "replaceable": false, @@ -171689,7 +164732,7 @@ ] }, { - "id": 16163, + "id": 15533, "luminance": 0, "opaque": true, "replaceable": false, @@ -171700,7 +164743,7 @@ ] }, { - "id": 16164, + "id": 15534, "luminance": 0, "opaque": true, "replaceable": false, @@ -171710,7 +164753,7 @@ ] }, { - "id": 16165, + "id": 15535, "luminance": 0, "opaque": true, "replaceable": false, @@ -171721,7 +164764,7 @@ ] }, { - "id": 16166, + "id": 15536, "luminance": 0, "opaque": true, "replaceable": false, @@ -171732,7 +164775,7 @@ ] }, { - "id": 16167, + "id": 15537, "luminance": 0, "opaque": true, "replaceable": false, @@ -171741,7 +164784,7 @@ ] }, { - "id": 16168, + "id": 15538, "luminance": 0, "opaque": true, "replaceable": false, @@ -171750,7 +164793,7 @@ ] }, { - "id": 16169, + "id": 15539, "luminance": 0, "opaque": true, "replaceable": false, @@ -171759,7 +164802,7 @@ ] }, { - "id": 16170, + "id": 15540, "luminance": 0, "opaque": true, "replaceable": false, @@ -171768,7 +164811,7 @@ ] }, { - "id": 16171, + "id": 15541, "luminance": 0, "opaque": true, "replaceable": false, @@ -171777,7 +164820,7 @@ ] }, { - "id": 16172, + "id": 15542, "luminance": 0, "opaque": true, "replaceable": false, @@ -171786,7 +164829,7 @@ ] }, { - "id": 16173, + "id": 15543, "luminance": 0, "opaque": true, "replaceable": false, @@ -171797,7 +164840,7 @@ ] }, { - "id": 16174, + "id": 15544, "luminance": 0, "opaque": true, "replaceable": false, @@ -171809,7 +164852,7 @@ ] }, { - "id": 16175, + "id": 15545, "luminance": 0, "opaque": true, "replaceable": false, @@ -171821,7 +164864,7 @@ ] }, { - "id": 16176, + "id": 15546, "luminance": 0, "opaque": true, "replaceable": false, @@ -171832,7 +164875,7 @@ ] }, { - "id": 16177, + "id": 15547, "luminance": 0, "opaque": true, "replaceable": false, @@ -171844,7 +164887,7 @@ ] }, { - "id": 16178, + "id": 15548, "luminance": 0, "opaque": true, "replaceable": false, @@ -171856,7 +164899,7 @@ ] }, { - "id": 16179, + "id": 15549, "luminance": 0, "opaque": true, "replaceable": false, @@ -171866,7 +164909,7 @@ ] }, { - "id": 16180, + "id": 15550, "luminance": 0, "opaque": true, "replaceable": false, @@ -171876,7 +164919,7 @@ ] }, { - "id": 16181, + "id": 15551, "luminance": 0, "opaque": true, "replaceable": false, @@ -171886,7 +164929,7 @@ ] }, { - "id": 16182, + "id": 15552, "luminance": 0, "opaque": true, "replaceable": false, @@ -171896,7 +164939,7 @@ ] }, { - "id": 16183, + "id": 15553, "luminance": 0, "opaque": true, "replaceable": false, @@ -171906,7 +164949,7 @@ ] }, { - "id": 16184, + "id": 15554, "luminance": 0, "opaque": true, "replaceable": false, @@ -171916,7 +164959,7 @@ ] }, { - "id": 16185, + "id": 15555, "luminance": 0, "opaque": true, "replaceable": false, @@ -171927,7 +164970,7 @@ ] }, { - "id": 16186, + "id": 15556, "luminance": 0, "opaque": true, "replaceable": false, @@ -171939,7 +164982,7 @@ ] }, { - "id": 16187, + "id": 15557, "luminance": 0, "opaque": true, "replaceable": false, @@ -171951,7 +164994,7 @@ ] }, { - "id": 16188, + "id": 15558, "luminance": 0, "opaque": true, "replaceable": false, @@ -171962,7 +165005,7 @@ ] }, { - "id": 16189, + "id": 15559, "luminance": 0, "opaque": true, "replaceable": false, @@ -171974,7 +165017,7 @@ ] }, { - "id": 16190, + "id": 15560, "luminance": 0, "opaque": true, "replaceable": false, @@ -171986,7 +165029,7 @@ ] }, { - "id": 16191, + "id": 15561, "luminance": 0, "opaque": true, "replaceable": false, @@ -171996,7 +165039,7 @@ ] }, { - "id": 16192, + "id": 15562, "luminance": 0, "opaque": true, "replaceable": false, @@ -172006,7 +165049,7 @@ ] }, { - "id": 16193, + "id": 15563, "luminance": 0, "opaque": true, "replaceable": false, @@ -172016,7 +165059,7 @@ ] }, { - "id": 16194, + "id": 15564, "luminance": 0, "opaque": true, "replaceable": false, @@ -172026,7 +165069,7 @@ ] }, { - "id": 16195, + "id": 15565, "luminance": 0, "opaque": true, "replaceable": false, @@ -172036,7 +165079,7 @@ ] }, { - "id": 16196, + "id": 15566, "luminance": 0, "opaque": true, "replaceable": false, @@ -172046,7 +165089,7 @@ ] }, { - "id": 16197, + "id": 15567, "luminance": 0, "opaque": true, "replaceable": false, @@ -172057,7 +165100,7 @@ ] }, { - "id": 16198, + "id": 15568, "luminance": 0, "opaque": true, "replaceable": false, @@ -172069,7 +165112,7 @@ ] }, { - "id": 16199, + "id": 15569, "luminance": 0, "opaque": true, "replaceable": false, @@ -172081,7 +165124,7 @@ ] }, { - "id": 16200, + "id": 15570, "luminance": 0, "opaque": true, "replaceable": false, @@ -172092,7 +165135,7 @@ ] }, { - "id": 16201, + "id": 15571, "luminance": 0, "opaque": true, "replaceable": false, @@ -172104,7 +165147,7 @@ ] }, { - "id": 16202, + "id": 15572, "luminance": 0, "opaque": true, "replaceable": false, @@ -172116,7 +165159,7 @@ ] }, { - "id": 16203, + "id": 15573, "luminance": 0, "opaque": true, "replaceable": false, @@ -172126,7 +165169,7 @@ ] }, { - "id": 16204, + "id": 15574, "luminance": 0, "opaque": true, "replaceable": false, @@ -172136,7 +165179,7 @@ ] }, { - "id": 16205, + "id": 15575, "luminance": 0, "opaque": true, "replaceable": false, @@ -172146,7 +165189,7 @@ ] }, { - "id": 16206, + "id": 15576, "luminance": 0, "opaque": true, "replaceable": false, @@ -172156,7 +165199,7 @@ ] }, { - "id": 16207, + "id": 15577, "luminance": 0, "opaque": true, "replaceable": false, @@ -172166,7 +165209,7 @@ ] }, { - "id": 16208, + "id": 15578, "luminance": 0, "opaque": true, "replaceable": false, @@ -172176,7 +165219,7 @@ ] }, { - "id": 16209, + "id": 15579, "luminance": 0, "opaque": true, "replaceable": false, @@ -172188,7 +165231,7 @@ ] }, { - "id": 16210, + "id": 15580, "luminance": 0, "opaque": true, "replaceable": false, @@ -172201,7 +165244,7 @@ ] }, { - "id": 16211, + "id": 15581, "luminance": 0, "opaque": true, "replaceable": false, @@ -172214,7 +165257,7 @@ ] }, { - "id": 16212, + "id": 15582, "luminance": 0, "opaque": true, "replaceable": false, @@ -172226,7 +165269,7 @@ ] }, { - "id": 16213, + "id": 15583, "luminance": 0, "opaque": true, "replaceable": false, @@ -172239,7 +165282,7 @@ ] }, { - "id": 16214, + "id": 15584, "luminance": 0, "opaque": true, "replaceable": false, @@ -172252,7 +165295,7 @@ ] }, { - "id": 16215, + "id": 15585, "luminance": 0, "opaque": true, "replaceable": false, @@ -172262,7 +165305,7 @@ ] }, { - "id": 16216, + "id": 15586, "luminance": 0, "opaque": true, "replaceable": false, @@ -172273,7 +165316,7 @@ ] }, { - "id": 16217, + "id": 15587, "luminance": 0, "opaque": true, "replaceable": false, @@ -172284,7 +165327,7 @@ ] }, { - "id": 16218, + "id": 15588, "luminance": 0, "opaque": true, "replaceable": false, @@ -172294,7 +165337,7 @@ ] }, { - "id": 16219, + "id": 15589, "luminance": 0, "opaque": true, "replaceable": false, @@ -172305,7 +165348,7 @@ ] }, { - "id": 16220, + "id": 15590, "luminance": 0, "opaque": true, "replaceable": false, @@ -172316,7 +165359,7 @@ ] }, { - "id": 16221, + "id": 15591, "luminance": 0, "opaque": true, "replaceable": false, @@ -172328,7 +165371,7 @@ ] }, { - "id": 16222, + "id": 15592, "luminance": 0, "opaque": true, "replaceable": false, @@ -172341,7 +165384,7 @@ ] }, { - "id": 16223, + "id": 15593, "luminance": 0, "opaque": true, "replaceable": false, @@ -172354,7 +165397,7 @@ ] }, { - "id": 16224, + "id": 15594, "luminance": 0, "opaque": true, "replaceable": false, @@ -172366,7 +165409,7 @@ ] }, { - "id": 16225, + "id": 15595, "luminance": 0, "opaque": true, "replaceable": false, @@ -172379,7 +165422,7 @@ ] }, { - "id": 16226, + "id": 15596, "luminance": 0, "opaque": true, "replaceable": false, @@ -172392,7 +165435,7 @@ ] }, { - "id": 16227, + "id": 15597, "luminance": 0, "opaque": true, "replaceable": false, @@ -172402,7 +165445,7 @@ ] }, { - "id": 16228, + "id": 15598, "luminance": 0, "opaque": true, "replaceable": false, @@ -172413,7 +165456,7 @@ ] }, { - "id": 16229, + "id": 15599, "luminance": 0, "opaque": true, "replaceable": false, @@ -172424,7 +165467,7 @@ ] }, { - "id": 16230, + "id": 15600, "luminance": 0, "opaque": true, "replaceable": false, @@ -172434,7 +165477,7 @@ ] }, { - "id": 16231, + "id": 15601, "luminance": 0, "opaque": true, "replaceable": false, @@ -172445,7 +165488,7 @@ ] }, { - "id": 16232, + "id": 15602, "luminance": 0, "opaque": true, "replaceable": false, @@ -172456,7 +165499,7 @@ ] }, { - "id": 16233, + "id": 15603, "luminance": 0, "opaque": true, "replaceable": false, @@ -172467,7 +165510,7 @@ ] }, { - "id": 16234, + "id": 15604, "luminance": 0, "opaque": true, "replaceable": false, @@ -172479,7 +165522,7 @@ ] }, { - "id": 16235, + "id": 15605, "luminance": 0, "opaque": true, "replaceable": false, @@ -172491,7 +165534,7 @@ ] }, { - "id": 16236, + "id": 15606, "luminance": 0, "opaque": true, "replaceable": false, @@ -172502,7 +165545,7 @@ ] }, { - "id": 16237, + "id": 15607, "luminance": 0, "opaque": true, "replaceable": false, @@ -172514,7 +165557,7 @@ ] }, { - "id": 16238, + "id": 15608, "luminance": 0, "opaque": true, "replaceable": false, @@ -172526,7 +165569,7 @@ ] }, { - "id": 16239, + "id": 15609, "luminance": 0, "opaque": true, "replaceable": false, @@ -172536,7 +165579,7 @@ ] }, { - "id": 16240, + "id": 15610, "luminance": 0, "opaque": true, "replaceable": false, @@ -172546,7 +165589,7 @@ ] }, { - "id": 16241, + "id": 15611, "luminance": 0, "opaque": true, "replaceable": false, @@ -172556,7 +165599,7 @@ ] }, { - "id": 16242, + "id": 15612, "luminance": 0, "opaque": true, "replaceable": false, @@ -172566,7 +165609,7 @@ ] }, { - "id": 16243, + "id": 15613, "luminance": 0, "opaque": true, "replaceable": false, @@ -172576,7 +165619,7 @@ ] }, { - "id": 16244, + "id": 15614, "luminance": 0, "opaque": true, "replaceable": false, @@ -172586,7 +165629,7 @@ ] }, { - "id": 16245, + "id": 15615, "luminance": 0, "opaque": true, "replaceable": false, @@ -172598,7 +165641,7 @@ ] }, { - "id": 16246, + "id": 15616, "luminance": 0, "opaque": true, "replaceable": false, @@ -172611,7 +165654,7 @@ ] }, { - "id": 16247, + "id": 15617, "luminance": 0, "opaque": true, "replaceable": false, @@ -172624,7 +165667,7 @@ ] }, { - "id": 16248, + "id": 15618, "luminance": 0, "opaque": true, "replaceable": false, @@ -172636,7 +165679,7 @@ ] }, { - "id": 16249, + "id": 15619, "luminance": 0, "opaque": true, "replaceable": false, @@ -172649,7 +165692,7 @@ ] }, { - "id": 16250, + "id": 15620, "luminance": 0, "opaque": true, "replaceable": false, @@ -172662,7 +165705,7 @@ ] }, { - "id": 16251, + "id": 15621, "luminance": 0, "opaque": true, "replaceable": false, @@ -172672,7 +165715,7 @@ ] }, { - "id": 16252, + "id": 15622, "luminance": 0, "opaque": true, "replaceable": false, @@ -172683,7 +165726,7 @@ ] }, { - "id": 16253, + "id": 15623, "luminance": 0, "opaque": true, "replaceable": false, @@ -172694,7 +165737,7 @@ ] }, { - "id": 16254, + "id": 15624, "luminance": 0, "opaque": true, "replaceable": false, @@ -172704,7 +165747,7 @@ ] }, { - "id": 16255, + "id": 15625, "luminance": 0, "opaque": true, "replaceable": false, @@ -172715,7 +165758,7 @@ ] }, { - "id": 16256, + "id": 15626, "luminance": 0, "opaque": true, "replaceable": false, @@ -172726,7 +165769,7 @@ ] }, { - "id": 16257, + "id": 15627, "luminance": 0, "opaque": true, "replaceable": false, @@ -172738,7 +165781,7 @@ ] }, { - "id": 16258, + "id": 15628, "luminance": 0, "opaque": true, "replaceable": false, @@ -172751,7 +165794,7 @@ ] }, { - "id": 16259, + "id": 15629, "luminance": 0, "opaque": true, "replaceable": false, @@ -172764,7 +165807,7 @@ ] }, { - "id": 16260, + "id": 15630, "luminance": 0, "opaque": true, "replaceable": false, @@ -172776,7 +165819,7 @@ ] }, { - "id": 16261, + "id": 15631, "luminance": 0, "opaque": true, "replaceable": false, @@ -172789,7 +165832,7 @@ ] }, { - "id": 16262, + "id": 15632, "luminance": 0, "opaque": true, "replaceable": false, @@ -172802,7 +165845,7 @@ ] }, { - "id": 16263, + "id": 15633, "luminance": 0, "opaque": true, "replaceable": false, @@ -172812,7 +165855,7 @@ ] }, { - "id": 16264, + "id": 15634, "luminance": 0, "opaque": true, "replaceable": false, @@ -172823,7 +165866,7 @@ ] }, { - "id": 16265, + "id": 15635, "luminance": 0, "opaque": true, "replaceable": false, @@ -172834,7 +165877,7 @@ ] }, { - "id": 16266, + "id": 15636, "luminance": 0, "opaque": true, "replaceable": false, @@ -172844,7 +165887,7 @@ ] }, { - "id": 16267, + "id": 15637, "luminance": 0, "opaque": true, "replaceable": false, @@ -172855,7 +165898,7 @@ ] }, { - "id": 16268, + "id": 15638, "luminance": 0, "opaque": true, "replaceable": false, @@ -172868,9 +165911,9 @@ ] }, { - "id": 762, - "name": "nether_brick_wall", - "translation_key": "block.minecraft.nether_brick_wall", + "id": 764, + "name": "stone_brick_wall", + "translation_key": "block.minecraft.stone_brick_wall", "item_id": 382, "properties": [ { @@ -172920,10 +165963,10 @@ ] } ], - "default_state_id": 16272, + "default_state_id": 15642, "states": [ { - "id": 16269, + "id": 15639, "luminance": 0, "opaque": true, "replaceable": false, @@ -172932,7 +165975,7 @@ ] }, { - "id": 16270, + "id": 15640, "luminance": 0, "opaque": true, "replaceable": false, @@ -172943,7 +165986,7 @@ ] }, { - "id": 16271, + "id": 15641, "luminance": 0, "opaque": true, "replaceable": false, @@ -172954,7 +165997,7 @@ ] }, { - "id": 16272, + "id": 15642, "luminance": 0, "opaque": true, "replaceable": false, @@ -172963,7 +166006,7 @@ ] }, { - "id": 16273, + "id": 15643, "luminance": 0, "opaque": true, "replaceable": false, @@ -172974,7 +166017,7 @@ ] }, { - "id": 16274, + "id": 15644, "luminance": 0, "opaque": true, "replaceable": false, @@ -172985,14 +166028,14 @@ ] }, { - "id": 16275, + "id": 15645, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 16276, + "id": 15646, "luminance": 0, "opaque": true, "replaceable": false, @@ -173001,7 +166044,7 @@ ] }, { - "id": 16277, + "id": 15647, "luminance": 0, "opaque": true, "replaceable": false, @@ -173010,14 +166053,14 @@ ] }, { - "id": 16278, + "id": 15648, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 16279, + "id": 15649, "luminance": 0, "opaque": true, "replaceable": false, @@ -173026,7 +166069,7 @@ ] }, { - "id": 16280, + "id": 15650, "luminance": 0, "opaque": true, "replaceable": false, @@ -173035,7 +166078,7 @@ ] }, { - "id": 16281, + "id": 15651, "luminance": 0, "opaque": true, "replaceable": false, @@ -173045,7 +166088,7 @@ ] }, { - "id": 16282, + "id": 15652, "luminance": 0, "opaque": true, "replaceable": false, @@ -173057,7 +166100,7 @@ ] }, { - "id": 16283, + "id": 15653, "luminance": 0, "opaque": true, "replaceable": false, @@ -173069,7 +166112,7 @@ ] }, { - "id": 16284, + "id": 15654, "luminance": 0, "opaque": true, "replaceable": false, @@ -173079,7 +166122,7 @@ ] }, { - "id": 16285, + "id": 15655, "luminance": 0, "opaque": true, "replaceable": false, @@ -173091,7 +166134,7 @@ ] }, { - "id": 16286, + "id": 15656, "luminance": 0, "opaque": true, "replaceable": false, @@ -173103,7 +166146,7 @@ ] }, { - "id": 16287, + "id": 15657, "luminance": 0, "opaque": true, "replaceable": false, @@ -173112,7 +166155,7 @@ ] }, { - "id": 16288, + "id": 15658, "luminance": 0, "opaque": true, "replaceable": false, @@ -173122,7 +166165,7 @@ ] }, { - "id": 16289, + "id": 15659, "luminance": 0, "opaque": true, "replaceable": false, @@ -173132,7 +166175,7 @@ ] }, { - "id": 16290, + "id": 15660, "luminance": 0, "opaque": true, "replaceable": false, @@ -173141,7 +166184,7 @@ ] }, { - "id": 16291, + "id": 15661, "luminance": 0, "opaque": true, "replaceable": false, @@ -173151,7 +166194,7 @@ ] }, { - "id": 16292, + "id": 15662, "luminance": 0, "opaque": true, "replaceable": false, @@ -173161,7 +166204,7 @@ ] }, { - "id": 16293, + "id": 15663, "luminance": 0, "opaque": true, "replaceable": false, @@ -173171,7 +166214,7 @@ ] }, { - "id": 16294, + "id": 15664, "luminance": 0, "opaque": true, "replaceable": false, @@ -173183,7 +166226,7 @@ ] }, { - "id": 16295, + "id": 15665, "luminance": 0, "opaque": true, "replaceable": false, @@ -173195,7 +166238,7 @@ ] }, { - "id": 16296, + "id": 15666, "luminance": 0, "opaque": true, "replaceable": false, @@ -173205,7 +166248,7 @@ ] }, { - "id": 16297, + "id": 15667, "luminance": 0, "opaque": true, "replaceable": false, @@ -173217,7 +166260,7 @@ ] }, { - "id": 16298, + "id": 15668, "luminance": 0, "opaque": true, "replaceable": false, @@ -173229,7 +166272,7 @@ ] }, { - "id": 16299, + "id": 15669, "luminance": 0, "opaque": true, "replaceable": false, @@ -173238,7 +166281,7 @@ ] }, { - "id": 16300, + "id": 15670, "luminance": 0, "opaque": true, "replaceable": false, @@ -173248,7 +166291,7 @@ ] }, { - "id": 16301, + "id": 15671, "luminance": 0, "opaque": true, "replaceable": false, @@ -173258,7 +166301,7 @@ ] }, { - "id": 16302, + "id": 15672, "luminance": 0, "opaque": true, "replaceable": false, @@ -173267,7 +166310,7 @@ ] }, { - "id": 16303, + "id": 15673, "luminance": 0, "opaque": true, "replaceable": false, @@ -173277,7 +166320,7 @@ ] }, { - "id": 16304, + "id": 15674, "luminance": 0, "opaque": true, "replaceable": false, @@ -173287,7 +166330,7 @@ ] }, { - "id": 16305, + "id": 15675, "luminance": 0, "opaque": true, "replaceable": false, @@ -173297,7 +166340,7 @@ ] }, { - "id": 16306, + "id": 15676, "luminance": 0, "opaque": true, "replaceable": false, @@ -173309,7 +166352,7 @@ ] }, { - "id": 16307, + "id": 15677, "luminance": 0, "opaque": true, "replaceable": false, @@ -173321,7 +166364,7 @@ ] }, { - "id": 16308, + "id": 15678, "luminance": 0, "opaque": true, "replaceable": false, @@ -173331,7 +166374,7 @@ ] }, { - "id": 16309, + "id": 15679, "luminance": 0, "opaque": true, "replaceable": false, @@ -173343,7 +166386,7 @@ ] }, { - "id": 16310, + "id": 15680, "luminance": 0, "opaque": true, "replaceable": false, @@ -173355,7 +166398,7 @@ ] }, { - "id": 16311, + "id": 15681, "luminance": 0, "opaque": true, "replaceable": false, @@ -173364,7 +166407,7 @@ ] }, { - "id": 16312, + "id": 15682, "luminance": 0, "opaque": true, "replaceable": false, @@ -173374,7 +166417,7 @@ ] }, { - "id": 16313, + "id": 15683, "luminance": 0, "opaque": true, "replaceable": false, @@ -173384,7 +166427,7 @@ ] }, { - "id": 16314, + "id": 15684, "luminance": 0, "opaque": true, "replaceable": false, @@ -173393,7 +166436,7 @@ ] }, { - "id": 16315, + "id": 15685, "luminance": 0, "opaque": true, "replaceable": false, @@ -173403,7 +166446,7 @@ ] }, { - "id": 16316, + "id": 15686, "luminance": 0, "opaque": true, "replaceable": false, @@ -173413,7 +166456,7 @@ ] }, { - "id": 16317, + "id": 15687, "luminance": 0, "opaque": true, "replaceable": false, @@ -173424,7 +166467,7 @@ ] }, { - "id": 16318, + "id": 15688, "luminance": 0, "opaque": true, "replaceable": false, @@ -173437,7 +166480,7 @@ ] }, { - "id": 16319, + "id": 15689, "luminance": 0, "opaque": true, "replaceable": false, @@ -173450,7 +166493,7 @@ ] }, { - "id": 16320, + "id": 15690, "luminance": 0, "opaque": true, "replaceable": false, @@ -173461,7 +166504,7 @@ ] }, { - "id": 16321, + "id": 15691, "luminance": 0, "opaque": true, "replaceable": false, @@ -173474,7 +166517,7 @@ ] }, { - "id": 16322, + "id": 15692, "luminance": 0, "opaque": true, "replaceable": false, @@ -173487,7 +166530,7 @@ ] }, { - "id": 16323, + "id": 15693, "luminance": 0, "opaque": true, "replaceable": false, @@ -173496,7 +166539,7 @@ ] }, { - "id": 16324, + "id": 15694, "luminance": 0, "opaque": true, "replaceable": false, @@ -173507,7 +166550,7 @@ ] }, { - "id": 16325, + "id": 15695, "luminance": 0, "opaque": true, "replaceable": false, @@ -173518,7 +166561,7 @@ ] }, { - "id": 16326, + "id": 15696, "luminance": 0, "opaque": true, "replaceable": false, @@ -173527,7 +166570,7 @@ ] }, { - "id": 16327, + "id": 15697, "luminance": 0, "opaque": true, "replaceable": false, @@ -173538,7 +166581,7 @@ ] }, { - "id": 16328, + "id": 15698, "luminance": 0, "opaque": true, "replaceable": false, @@ -173549,7 +166592,7 @@ ] }, { - "id": 16329, + "id": 15699, "luminance": 0, "opaque": true, "replaceable": false, @@ -173560,7 +166603,7 @@ ] }, { - "id": 16330, + "id": 15700, "luminance": 0, "opaque": true, "replaceable": false, @@ -173573,7 +166616,7 @@ ] }, { - "id": 16331, + "id": 15701, "luminance": 0, "opaque": true, "replaceable": false, @@ -173586,7 +166629,7 @@ ] }, { - "id": 16332, + "id": 15702, "luminance": 0, "opaque": true, "replaceable": false, @@ -173597,7 +166640,7 @@ ] }, { - "id": 16333, + "id": 15703, "luminance": 0, "opaque": true, "replaceable": false, @@ -173610,7 +166653,7 @@ ] }, { - "id": 16334, + "id": 15704, "luminance": 0, "opaque": true, "replaceable": false, @@ -173623,7 +166666,7 @@ ] }, { - "id": 16335, + "id": 15705, "luminance": 0, "opaque": true, "replaceable": false, @@ -173632,7 +166675,7 @@ ] }, { - "id": 16336, + "id": 15706, "luminance": 0, "opaque": true, "replaceable": false, @@ -173643,7 +166686,7 @@ ] }, { - "id": 16337, + "id": 15707, "luminance": 0, "opaque": true, "replaceable": false, @@ -173654,7 +166697,7 @@ ] }, { - "id": 16338, + "id": 15708, "luminance": 0, "opaque": true, "replaceable": false, @@ -173663,7 +166706,7 @@ ] }, { - "id": 16339, + "id": 15709, "luminance": 0, "opaque": true, "replaceable": false, @@ -173674,7 +166717,7 @@ ] }, { - "id": 16340, + "id": 15710, "luminance": 0, "opaque": true, "replaceable": false, @@ -173685,7 +166728,7 @@ ] }, { - "id": 16341, + "id": 15711, "luminance": 0, "opaque": true, "replaceable": false, @@ -173695,7 +166738,7 @@ ] }, { - "id": 16342, + "id": 15712, "luminance": 0, "opaque": true, "replaceable": false, @@ -173707,7 +166750,7 @@ ] }, { - "id": 16343, + "id": 15713, "luminance": 0, "opaque": true, "replaceable": false, @@ -173719,7 +166762,7 @@ ] }, { - "id": 16344, + "id": 15714, "luminance": 0, "opaque": true, "replaceable": false, @@ -173729,7 +166772,7 @@ ] }, { - "id": 16345, + "id": 15715, "luminance": 0, "opaque": true, "replaceable": false, @@ -173741,7 +166784,7 @@ ] }, { - "id": 16346, + "id": 15716, "luminance": 0, "opaque": true, "replaceable": false, @@ -173753,7 +166796,7 @@ ] }, { - "id": 16347, + "id": 15717, "luminance": 0, "opaque": true, "replaceable": false, @@ -173762,7 +166805,7 @@ ] }, { - "id": 16348, + "id": 15718, "luminance": 0, "opaque": true, "replaceable": false, @@ -173772,7 +166815,7 @@ ] }, { - "id": 16349, + "id": 15719, "luminance": 0, "opaque": true, "replaceable": false, @@ -173782,7 +166825,7 @@ ] }, { - "id": 16350, + "id": 15720, "luminance": 0, "opaque": true, "replaceable": false, @@ -173791,7 +166834,7 @@ ] }, { - "id": 16351, + "id": 15721, "luminance": 0, "opaque": true, "replaceable": false, @@ -173801,7 +166844,7 @@ ] }, { - "id": 16352, + "id": 15722, "luminance": 0, "opaque": true, "replaceable": false, @@ -173811,7 +166854,7 @@ ] }, { - "id": 16353, + "id": 15723, "luminance": 0, "opaque": true, "replaceable": false, @@ -173822,7 +166865,7 @@ ] }, { - "id": 16354, + "id": 15724, "luminance": 0, "opaque": true, "replaceable": false, @@ -173835,7 +166878,7 @@ ] }, { - "id": 16355, + "id": 15725, "luminance": 0, "opaque": true, "replaceable": false, @@ -173848,7 +166891,7 @@ ] }, { - "id": 16356, + "id": 15726, "luminance": 0, "opaque": true, "replaceable": false, @@ -173859,7 +166902,7 @@ ] }, { - "id": 16357, + "id": 15727, "luminance": 0, "opaque": true, "replaceable": false, @@ -173872,7 +166915,7 @@ ] }, { - "id": 16358, + "id": 15728, "luminance": 0, "opaque": true, "replaceable": false, @@ -173885,7 +166928,7 @@ ] }, { - "id": 16359, + "id": 15729, "luminance": 0, "opaque": true, "replaceable": false, @@ -173894,7 +166937,7 @@ ] }, { - "id": 16360, + "id": 15730, "luminance": 0, "opaque": true, "replaceable": false, @@ -173905,7 +166948,7 @@ ] }, { - "id": 16361, + "id": 15731, "luminance": 0, "opaque": true, "replaceable": false, @@ -173916,7 +166959,7 @@ ] }, { - "id": 16362, + "id": 15732, "luminance": 0, "opaque": true, "replaceable": false, @@ -173925,7 +166968,7 @@ ] }, { - "id": 16363, + "id": 15733, "luminance": 0, "opaque": true, "replaceable": false, @@ -173936,7 +166979,7 @@ ] }, { - "id": 16364, + "id": 15734, "luminance": 0, "opaque": true, "replaceable": false, @@ -173947,7 +166990,7 @@ ] }, { - "id": 16365, + "id": 15735, "luminance": 0, "opaque": true, "replaceable": false, @@ -173958,7 +167001,7 @@ ] }, { - "id": 16366, + "id": 15736, "luminance": 0, "opaque": true, "replaceable": false, @@ -173971,7 +167014,7 @@ ] }, { - "id": 16367, + "id": 15737, "luminance": 0, "opaque": true, "replaceable": false, @@ -173984,7 +167027,7 @@ ] }, { - "id": 16368, + "id": 15738, "luminance": 0, "opaque": true, "replaceable": false, @@ -173995,7 +167038,7 @@ ] }, { - "id": 16369, + "id": 15739, "luminance": 0, "opaque": true, "replaceable": false, @@ -174008,7 +167051,7 @@ ] }, { - "id": 16370, + "id": 15740, "luminance": 0, "opaque": true, "replaceable": false, @@ -174021,7 +167064,7 @@ ] }, { - "id": 16371, + "id": 15741, "luminance": 0, "opaque": true, "replaceable": false, @@ -174030,7 +167073,7 @@ ] }, { - "id": 16372, + "id": 15742, "luminance": 0, "opaque": true, "replaceable": false, @@ -174041,7 +167084,7 @@ ] }, { - "id": 16373, + "id": 15743, "luminance": 0, "opaque": true, "replaceable": false, @@ -174052,7 +167095,7 @@ ] }, { - "id": 16374, + "id": 15744, "luminance": 0, "opaque": true, "replaceable": false, @@ -174061,7 +167104,7 @@ ] }, { - "id": 16375, + "id": 15745, "luminance": 0, "opaque": true, "replaceable": false, @@ -174072,7 +167115,7 @@ ] }, { - "id": 16376, + "id": 15746, "luminance": 0, "opaque": true, "replaceable": false, @@ -174083,7 +167126,7 @@ ] }, { - "id": 16377, + "id": 15747, "luminance": 0, "opaque": true, "replaceable": false, @@ -174093,7 +167136,7 @@ ] }, { - "id": 16378, + "id": 15748, "luminance": 0, "opaque": true, "replaceable": false, @@ -174104,7 +167147,7 @@ ] }, { - "id": 16379, + "id": 15749, "luminance": 0, "opaque": true, "replaceable": false, @@ -174115,7 +167158,7 @@ ] }, { - "id": 16380, + "id": 15750, "luminance": 0, "opaque": true, "replaceable": false, @@ -174125,7 +167168,7 @@ ] }, { - "id": 16381, + "id": 15751, "luminance": 0, "opaque": true, "replaceable": false, @@ -174136,7 +167179,7 @@ ] }, { - "id": 16382, + "id": 15752, "luminance": 0, "opaque": true, "replaceable": false, @@ -174147,7 +167190,7 @@ ] }, { - "id": 16383, + "id": 15753, "luminance": 0, "opaque": true, "replaceable": false, @@ -174156,7 +167199,7 @@ ] }, { - "id": 16384, + "id": 15754, "luminance": 0, "opaque": true, "replaceable": false, @@ -174165,7 +167208,7 @@ ] }, { - "id": 16385, + "id": 15755, "luminance": 0, "opaque": true, "replaceable": false, @@ -174174,7 +167217,7 @@ ] }, { - "id": 16386, + "id": 15756, "luminance": 0, "opaque": true, "replaceable": false, @@ -174183,7 +167226,7 @@ ] }, { - "id": 16387, + "id": 15757, "luminance": 0, "opaque": true, "replaceable": false, @@ -174192,7 +167235,7 @@ ] }, { - "id": 16388, + "id": 15758, "luminance": 0, "opaque": true, "replaceable": false, @@ -174201,7 +167244,7 @@ ] }, { - "id": 16389, + "id": 15759, "luminance": 0, "opaque": true, "replaceable": false, @@ -174212,7 +167255,7 @@ ] }, { - "id": 16390, + "id": 15760, "luminance": 0, "opaque": true, "replaceable": false, @@ -174224,7 +167267,7 @@ ] }, { - "id": 16391, + "id": 15761, "luminance": 0, "opaque": true, "replaceable": false, @@ -174236,7 +167279,7 @@ ] }, { - "id": 16392, + "id": 15762, "luminance": 0, "opaque": true, "replaceable": false, @@ -174247,7 +167290,7 @@ ] }, { - "id": 16393, + "id": 15763, "luminance": 0, "opaque": true, "replaceable": false, @@ -174259,7 +167302,7 @@ ] }, { - "id": 16394, + "id": 15764, "luminance": 0, "opaque": true, "replaceable": false, @@ -174271,7 +167314,7 @@ ] }, { - "id": 16395, + "id": 15765, "luminance": 0, "opaque": true, "replaceable": false, @@ -174281,7 +167324,7 @@ ] }, { - "id": 16396, + "id": 15766, "luminance": 0, "opaque": true, "replaceable": false, @@ -174291,7 +167334,7 @@ ] }, { - "id": 16397, + "id": 15767, "luminance": 0, "opaque": true, "replaceable": false, @@ -174301,7 +167344,7 @@ ] }, { - "id": 16398, + "id": 15768, "luminance": 0, "opaque": true, "replaceable": false, @@ -174311,7 +167354,7 @@ ] }, { - "id": 16399, + "id": 15769, "luminance": 0, "opaque": true, "replaceable": false, @@ -174321,7 +167364,7 @@ ] }, { - "id": 16400, + "id": 15770, "luminance": 0, "opaque": true, "replaceable": false, @@ -174331,7 +167374,7 @@ ] }, { - "id": 16401, + "id": 15771, "luminance": 0, "opaque": true, "replaceable": false, @@ -174342,7 +167385,7 @@ ] }, { - "id": 16402, + "id": 15772, "luminance": 0, "opaque": true, "replaceable": false, @@ -174354,7 +167397,7 @@ ] }, { - "id": 16403, + "id": 15773, "luminance": 0, "opaque": true, "replaceable": false, @@ -174366,7 +167409,7 @@ ] }, { - "id": 16404, + "id": 15774, "luminance": 0, "opaque": true, "replaceable": false, @@ -174377,7 +167420,7 @@ ] }, { - "id": 16405, + "id": 15775, "luminance": 0, "opaque": true, "replaceable": false, @@ -174389,7 +167432,7 @@ ] }, { - "id": 16406, + "id": 15776, "luminance": 0, "opaque": true, "replaceable": false, @@ -174401,7 +167444,7 @@ ] }, { - "id": 16407, + "id": 15777, "luminance": 0, "opaque": true, "replaceable": false, @@ -174411,7 +167454,7 @@ ] }, { - "id": 16408, + "id": 15778, "luminance": 0, "opaque": true, "replaceable": false, @@ -174421,7 +167464,7 @@ ] }, { - "id": 16409, + "id": 15779, "luminance": 0, "opaque": true, "replaceable": false, @@ -174431,7 +167474,7 @@ ] }, { - "id": 16410, + "id": 15780, "luminance": 0, "opaque": true, "replaceable": false, @@ -174441,7 +167484,7 @@ ] }, { - "id": 16411, + "id": 15781, "luminance": 0, "opaque": true, "replaceable": false, @@ -174451,7 +167494,7 @@ ] }, { - "id": 16412, + "id": 15782, "luminance": 0, "opaque": true, "replaceable": false, @@ -174461,7 +167504,7 @@ ] }, { - "id": 16413, + "id": 15783, "luminance": 0, "opaque": true, "replaceable": false, @@ -174472,7 +167515,7 @@ ] }, { - "id": 16414, + "id": 15784, "luminance": 0, "opaque": true, "replaceable": false, @@ -174484,7 +167527,7 @@ ] }, { - "id": 16415, + "id": 15785, "luminance": 0, "opaque": true, "replaceable": false, @@ -174496,7 +167539,7 @@ ] }, { - "id": 16416, + "id": 15786, "luminance": 0, "opaque": true, "replaceable": false, @@ -174507,7 +167550,7 @@ ] }, { - "id": 16417, + "id": 15787, "luminance": 0, "opaque": true, "replaceable": false, @@ -174519,7 +167562,7 @@ ] }, { - "id": 16418, + "id": 15788, "luminance": 0, "opaque": true, "replaceable": false, @@ -174531,7 +167574,7 @@ ] }, { - "id": 16419, + "id": 15789, "luminance": 0, "opaque": true, "replaceable": false, @@ -174541,7 +167584,7 @@ ] }, { - "id": 16420, + "id": 15790, "luminance": 0, "opaque": true, "replaceable": false, @@ -174551,7 +167594,7 @@ ] }, { - "id": 16421, + "id": 15791, "luminance": 0, "opaque": true, "replaceable": false, @@ -174561,7 +167604,7 @@ ] }, { - "id": 16422, + "id": 15792, "luminance": 0, "opaque": true, "replaceable": false, @@ -174571,7 +167614,7 @@ ] }, { - "id": 16423, + "id": 15793, "luminance": 0, "opaque": true, "replaceable": false, @@ -174581,7 +167624,7 @@ ] }, { - "id": 16424, + "id": 15794, "luminance": 0, "opaque": true, "replaceable": false, @@ -174591,7 +167634,7 @@ ] }, { - "id": 16425, + "id": 15795, "luminance": 0, "opaque": true, "replaceable": false, @@ -174603,7 +167646,7 @@ ] }, { - "id": 16426, + "id": 15796, "luminance": 0, "opaque": true, "replaceable": false, @@ -174616,7 +167659,7 @@ ] }, { - "id": 16427, + "id": 15797, "luminance": 0, "opaque": true, "replaceable": false, @@ -174629,7 +167672,7 @@ ] }, { - "id": 16428, + "id": 15798, "luminance": 0, "opaque": true, "replaceable": false, @@ -174641,7 +167684,7 @@ ] }, { - "id": 16429, + "id": 15799, "luminance": 0, "opaque": true, "replaceable": false, @@ -174654,7 +167697,7 @@ ] }, { - "id": 16430, + "id": 15800, "luminance": 0, "opaque": true, "replaceable": false, @@ -174667,7 +167710,7 @@ ] }, { - "id": 16431, + "id": 15801, "luminance": 0, "opaque": true, "replaceable": false, @@ -174677,7 +167720,7 @@ ] }, { - "id": 16432, + "id": 15802, "luminance": 0, "opaque": true, "replaceable": false, @@ -174688,7 +167731,7 @@ ] }, { - "id": 16433, + "id": 15803, "luminance": 0, "opaque": true, "replaceable": false, @@ -174699,7 +167742,7 @@ ] }, { - "id": 16434, + "id": 15804, "luminance": 0, "opaque": true, "replaceable": false, @@ -174709,7 +167752,7 @@ ] }, { - "id": 16435, + "id": 15805, "luminance": 0, "opaque": true, "replaceable": false, @@ -174720,7 +167763,7 @@ ] }, { - "id": 16436, + "id": 15806, "luminance": 0, "opaque": true, "replaceable": false, @@ -174731,7 +167774,7 @@ ] }, { - "id": 16437, + "id": 15807, "luminance": 0, "opaque": true, "replaceable": false, @@ -174743,7 +167786,7 @@ ] }, { - "id": 16438, + "id": 15808, "luminance": 0, "opaque": true, "replaceable": false, @@ -174756,7 +167799,7 @@ ] }, { - "id": 16439, + "id": 15809, "luminance": 0, "opaque": true, "replaceable": false, @@ -174769,7 +167812,7 @@ ] }, { - "id": 16440, + "id": 15810, "luminance": 0, "opaque": true, "replaceable": false, @@ -174781,7 +167824,7 @@ ] }, { - "id": 16441, + "id": 15811, "luminance": 0, "opaque": true, "replaceable": false, @@ -174794,7 +167837,7 @@ ] }, { - "id": 16442, + "id": 15812, "luminance": 0, "opaque": true, "replaceable": false, @@ -174807,7 +167850,7 @@ ] }, { - "id": 16443, + "id": 15813, "luminance": 0, "opaque": true, "replaceable": false, @@ -174817,7 +167860,7 @@ ] }, { - "id": 16444, + "id": 15814, "luminance": 0, "opaque": true, "replaceable": false, @@ -174828,7 +167871,7 @@ ] }, { - "id": 16445, + "id": 15815, "luminance": 0, "opaque": true, "replaceable": false, @@ -174839,7 +167882,7 @@ ] }, { - "id": 16446, + "id": 15816, "luminance": 0, "opaque": true, "replaceable": false, @@ -174849,7 +167892,7 @@ ] }, { - "id": 16447, + "id": 15817, "luminance": 0, "opaque": true, "replaceable": false, @@ -174860,7 +167903,7 @@ ] }, { - "id": 16448, + "id": 15818, "luminance": 0, "opaque": true, "replaceable": false, @@ -174871,7 +167914,7 @@ ] }, { - "id": 16449, + "id": 15819, "luminance": 0, "opaque": true, "replaceable": false, @@ -174882,7 +167925,7 @@ ] }, { - "id": 16450, + "id": 15820, "luminance": 0, "opaque": true, "replaceable": false, @@ -174894,7 +167937,7 @@ ] }, { - "id": 16451, + "id": 15821, "luminance": 0, "opaque": true, "replaceable": false, @@ -174906,7 +167949,7 @@ ] }, { - "id": 16452, + "id": 15822, "luminance": 0, "opaque": true, "replaceable": false, @@ -174917,7 +167960,7 @@ ] }, { - "id": 16453, + "id": 15823, "luminance": 0, "opaque": true, "replaceable": false, @@ -174929,7 +167972,7 @@ ] }, { - "id": 16454, + "id": 15824, "luminance": 0, "opaque": true, "replaceable": false, @@ -174941,7 +167984,7 @@ ] }, { - "id": 16455, + "id": 15825, "luminance": 0, "opaque": true, "replaceable": false, @@ -174951,7 +167994,7 @@ ] }, { - "id": 16456, + "id": 15826, "luminance": 0, "opaque": true, "replaceable": false, @@ -174961,7 +168004,7 @@ ] }, { - "id": 16457, + "id": 15827, "luminance": 0, "opaque": true, "replaceable": false, @@ -174971,7 +168014,7 @@ ] }, { - "id": 16458, + "id": 15828, "luminance": 0, "opaque": true, "replaceable": false, @@ -174981,7 +168024,7 @@ ] }, { - "id": 16459, + "id": 15829, "luminance": 0, "opaque": true, "replaceable": false, @@ -174991,7 +168034,7 @@ ] }, { - "id": 16460, + "id": 15830, "luminance": 0, "opaque": true, "replaceable": false, @@ -175001,7 +168044,7 @@ ] }, { - "id": 16461, + "id": 15831, "luminance": 0, "opaque": true, "replaceable": false, @@ -175013,7 +168056,7 @@ ] }, { - "id": 16462, + "id": 15832, "luminance": 0, "opaque": true, "replaceable": false, @@ -175026,7 +168069,7 @@ ] }, { - "id": 16463, + "id": 15833, "luminance": 0, "opaque": true, "replaceable": false, @@ -175039,7 +168082,7 @@ ] }, { - "id": 16464, + "id": 15834, "luminance": 0, "opaque": true, "replaceable": false, @@ -175051,7 +168094,7 @@ ] }, { - "id": 16465, + "id": 15835, "luminance": 0, "opaque": true, "replaceable": false, @@ -175064,7 +168107,7 @@ ] }, { - "id": 16466, + "id": 15836, "luminance": 0, "opaque": true, "replaceable": false, @@ -175077,7 +168120,7 @@ ] }, { - "id": 16467, + "id": 15837, "luminance": 0, "opaque": true, "replaceable": false, @@ -175087,7 +168130,7 @@ ] }, { - "id": 16468, + "id": 15838, "luminance": 0, "opaque": true, "replaceable": false, @@ -175098,7 +168141,7 @@ ] }, { - "id": 16469, + "id": 15839, "luminance": 0, "opaque": true, "replaceable": false, @@ -175109,7 +168152,7 @@ ] }, { - "id": 16470, + "id": 15840, "luminance": 0, "opaque": true, "replaceable": false, @@ -175119,7 +168162,7 @@ ] }, { - "id": 16471, + "id": 15841, "luminance": 0, "opaque": true, "replaceable": false, @@ -175130,7 +168173,7 @@ ] }, { - "id": 16472, + "id": 15842, "luminance": 0, "opaque": true, "replaceable": false, @@ -175141,7 +168184,7 @@ ] }, { - "id": 16473, + "id": 15843, "luminance": 0, "opaque": true, "replaceable": false, @@ -175153,7 +168196,7 @@ ] }, { - "id": 16474, + "id": 15844, "luminance": 0, "opaque": true, "replaceable": false, @@ -175166,7 +168209,7 @@ ] }, { - "id": 16475, + "id": 15845, "luminance": 0, "opaque": true, "replaceable": false, @@ -175179,7 +168222,7 @@ ] }, { - "id": 16476, + "id": 15846, "luminance": 0, "opaque": true, "replaceable": false, @@ -175191,7 +168234,7 @@ ] }, { - "id": 16477, + "id": 15847, "luminance": 0, "opaque": true, "replaceable": false, @@ -175204,7 +168247,7 @@ ] }, { - "id": 16478, + "id": 15848, "luminance": 0, "opaque": true, "replaceable": false, @@ -175217,7 +168260,7 @@ ] }, { - "id": 16479, + "id": 15849, "luminance": 0, "opaque": true, "replaceable": false, @@ -175227,7 +168270,7 @@ ] }, { - "id": 16480, + "id": 15850, "luminance": 0, "opaque": true, "replaceable": false, @@ -175238,7 +168281,7 @@ ] }, { - "id": 16481, + "id": 15851, "luminance": 0, "opaque": true, "replaceable": false, @@ -175249,7 +168292,7 @@ ] }, { - "id": 16482, + "id": 15852, "luminance": 0, "opaque": true, "replaceable": false, @@ -175259,7 +168302,7 @@ ] }, { - "id": 16483, + "id": 15853, "luminance": 0, "opaque": true, "replaceable": false, @@ -175270,7 +168313,7 @@ ] }, { - "id": 16484, + "id": 15854, "luminance": 0, "opaque": true, "replaceable": false, @@ -175281,7 +168324,7 @@ ] }, { - "id": 16485, + "id": 15855, "luminance": 0, "opaque": true, "replaceable": false, @@ -175291,7 +168334,7 @@ ] }, { - "id": 16486, + "id": 15856, "luminance": 0, "opaque": true, "replaceable": false, @@ -175302,7 +168345,7 @@ ] }, { - "id": 16487, + "id": 15857, "luminance": 0, "opaque": true, "replaceable": false, @@ -175313,7 +168356,7 @@ ] }, { - "id": 16488, + "id": 15858, "luminance": 0, "opaque": true, "replaceable": false, @@ -175323,7 +168366,7 @@ ] }, { - "id": 16489, + "id": 15859, "luminance": 0, "opaque": true, "replaceable": false, @@ -175334,7 +168377,7 @@ ] }, { - "id": 16490, + "id": 15860, "luminance": 0, "opaque": true, "replaceable": false, @@ -175345,7 +168388,7 @@ ] }, { - "id": 16491, + "id": 15861, "luminance": 0, "opaque": true, "replaceable": false, @@ -175354,7 +168397,7 @@ ] }, { - "id": 16492, + "id": 15862, "luminance": 0, "opaque": true, "replaceable": false, @@ -175363,7 +168406,7 @@ ] }, { - "id": 16493, + "id": 15863, "luminance": 0, "opaque": true, "replaceable": false, @@ -175372,7 +168415,7 @@ ] }, { - "id": 16494, + "id": 15864, "luminance": 0, "opaque": true, "replaceable": false, @@ -175381,7 +168424,7 @@ ] }, { - "id": 16495, + "id": 15865, "luminance": 0, "opaque": true, "replaceable": false, @@ -175390,7 +168433,7 @@ ] }, { - "id": 16496, + "id": 15866, "luminance": 0, "opaque": true, "replaceable": false, @@ -175399,7 +168442,7 @@ ] }, { - "id": 16497, + "id": 15867, "luminance": 0, "opaque": true, "replaceable": false, @@ -175410,7 +168453,7 @@ ] }, { - "id": 16498, + "id": 15868, "luminance": 0, "opaque": true, "replaceable": false, @@ -175422,7 +168465,7 @@ ] }, { - "id": 16499, + "id": 15869, "luminance": 0, "opaque": true, "replaceable": false, @@ -175434,7 +168477,7 @@ ] }, { - "id": 16500, + "id": 15870, "luminance": 0, "opaque": true, "replaceable": false, @@ -175445,7 +168488,7 @@ ] }, { - "id": 16501, + "id": 15871, "luminance": 0, "opaque": true, "replaceable": false, @@ -175457,7 +168500,7 @@ ] }, { - "id": 16502, + "id": 15872, "luminance": 0, "opaque": true, "replaceable": false, @@ -175469,7 +168512,7 @@ ] }, { - "id": 16503, + "id": 15873, "luminance": 0, "opaque": true, "replaceable": false, @@ -175479,7 +168522,7 @@ ] }, { - "id": 16504, + "id": 15874, "luminance": 0, "opaque": true, "replaceable": false, @@ -175489,7 +168532,7 @@ ] }, { - "id": 16505, + "id": 15875, "luminance": 0, "opaque": true, "replaceable": false, @@ -175499,7 +168542,7 @@ ] }, { - "id": 16506, + "id": 15876, "luminance": 0, "opaque": true, "replaceable": false, @@ -175509,7 +168552,7 @@ ] }, { - "id": 16507, + "id": 15877, "luminance": 0, "opaque": true, "replaceable": false, @@ -175519,7 +168562,7 @@ ] }, { - "id": 16508, + "id": 15878, "luminance": 0, "opaque": true, "replaceable": false, @@ -175529,7 +168572,7 @@ ] }, { - "id": 16509, + "id": 15879, "luminance": 0, "opaque": true, "replaceable": false, @@ -175540,7 +168583,7 @@ ] }, { - "id": 16510, + "id": 15880, "luminance": 0, "opaque": true, "replaceable": false, @@ -175552,7 +168595,7 @@ ] }, { - "id": 16511, + "id": 15881, "luminance": 0, "opaque": true, "replaceable": false, @@ -175564,7 +168607,7 @@ ] }, { - "id": 16512, + "id": 15882, "luminance": 0, "opaque": true, "replaceable": false, @@ -175575,7 +168618,7 @@ ] }, { - "id": 16513, + "id": 15883, "luminance": 0, "opaque": true, "replaceable": false, @@ -175587,7 +168630,7 @@ ] }, { - "id": 16514, + "id": 15884, "luminance": 0, "opaque": true, "replaceable": false, @@ -175599,7 +168642,7 @@ ] }, { - "id": 16515, + "id": 15885, "luminance": 0, "opaque": true, "replaceable": false, @@ -175609,7 +168652,7 @@ ] }, { - "id": 16516, + "id": 15886, "luminance": 0, "opaque": true, "replaceable": false, @@ -175619,7 +168662,7 @@ ] }, { - "id": 16517, + "id": 15887, "luminance": 0, "opaque": true, "replaceable": false, @@ -175629,7 +168672,7 @@ ] }, { - "id": 16518, + "id": 15888, "luminance": 0, "opaque": true, "replaceable": false, @@ -175639,7 +168682,7 @@ ] }, { - "id": 16519, + "id": 15889, "luminance": 0, "opaque": true, "replaceable": false, @@ -175649,7 +168692,7 @@ ] }, { - "id": 16520, + "id": 15890, "luminance": 0, "opaque": true, "replaceable": false, @@ -175659,7 +168702,7 @@ ] }, { - "id": 16521, + "id": 15891, "luminance": 0, "opaque": true, "replaceable": false, @@ -175670,7 +168713,7 @@ ] }, { - "id": 16522, + "id": 15892, "luminance": 0, "opaque": true, "replaceable": false, @@ -175682,7 +168725,7 @@ ] }, { - "id": 16523, + "id": 15893, "luminance": 0, "opaque": true, "replaceable": false, @@ -175694,7 +168737,7 @@ ] }, { - "id": 16524, + "id": 15894, "luminance": 0, "opaque": true, "replaceable": false, @@ -175705,7 +168748,7 @@ ] }, { - "id": 16525, + "id": 15895, "luminance": 0, "opaque": true, "replaceable": false, @@ -175717,7 +168760,7 @@ ] }, { - "id": 16526, + "id": 15896, "luminance": 0, "opaque": true, "replaceable": false, @@ -175729,7 +168772,7 @@ ] }, { - "id": 16527, + "id": 15897, "luminance": 0, "opaque": true, "replaceable": false, @@ -175739,7 +168782,7 @@ ] }, { - "id": 16528, + "id": 15898, "luminance": 0, "opaque": true, "replaceable": false, @@ -175749,7 +168792,7 @@ ] }, { - "id": 16529, + "id": 15899, "luminance": 0, "opaque": true, "replaceable": false, @@ -175759,7 +168802,7 @@ ] }, { - "id": 16530, + "id": 15900, "luminance": 0, "opaque": true, "replaceable": false, @@ -175769,7 +168812,7 @@ ] }, { - "id": 16531, + "id": 15901, "luminance": 0, "opaque": true, "replaceable": false, @@ -175779,7 +168822,7 @@ ] }, { - "id": 16532, + "id": 15902, "luminance": 0, "opaque": true, "replaceable": false, @@ -175789,7 +168832,7 @@ ] }, { - "id": 16533, + "id": 15903, "luminance": 0, "opaque": true, "replaceable": false, @@ -175801,7 +168844,7 @@ ] }, { - "id": 16534, + "id": 15904, "luminance": 0, "opaque": true, "replaceable": false, @@ -175814,7 +168857,7 @@ ] }, { - "id": 16535, + "id": 15905, "luminance": 0, "opaque": true, "replaceable": false, @@ -175827,7 +168870,7 @@ ] }, { - "id": 16536, + "id": 15906, "luminance": 0, "opaque": true, "replaceable": false, @@ -175839,7 +168882,7 @@ ] }, { - "id": 16537, + "id": 15907, "luminance": 0, "opaque": true, "replaceable": false, @@ -175852,7 +168895,7 @@ ] }, { - "id": 16538, + "id": 15908, "luminance": 0, "opaque": true, "replaceable": false, @@ -175865,7 +168908,7 @@ ] }, { - "id": 16539, + "id": 15909, "luminance": 0, "opaque": true, "replaceable": false, @@ -175875,7 +168918,7 @@ ] }, { - "id": 16540, + "id": 15910, "luminance": 0, "opaque": true, "replaceable": false, @@ -175886,7 +168929,7 @@ ] }, { - "id": 16541, + "id": 15911, "luminance": 0, "opaque": true, "replaceable": false, @@ -175897,7 +168940,7 @@ ] }, { - "id": 16542, + "id": 15912, "luminance": 0, "opaque": true, "replaceable": false, @@ -175907,7 +168950,7 @@ ] }, { - "id": 16543, + "id": 15913, "luminance": 0, "opaque": true, "replaceable": false, @@ -175918,7 +168961,7 @@ ] }, { - "id": 16544, + "id": 15914, "luminance": 0, "opaque": true, "replaceable": false, @@ -175929,7 +168972,7 @@ ] }, { - "id": 16545, + "id": 15915, "luminance": 0, "opaque": true, "replaceable": false, @@ -175941,7 +168984,7 @@ ] }, { - "id": 16546, + "id": 15916, "luminance": 0, "opaque": true, "replaceable": false, @@ -175954,7 +168997,7 @@ ] }, { - "id": 16547, + "id": 15917, "luminance": 0, "opaque": true, "replaceable": false, @@ -175967,7 +169010,7 @@ ] }, { - "id": 16548, + "id": 15918, "luminance": 0, "opaque": true, "replaceable": false, @@ -175979,7 +169022,7 @@ ] }, { - "id": 16549, + "id": 15919, "luminance": 0, "opaque": true, "replaceable": false, @@ -175992,7 +169035,7 @@ ] }, { - "id": 16550, + "id": 15920, "luminance": 0, "opaque": true, "replaceable": false, @@ -176005,7 +169048,7 @@ ] }, { - "id": 16551, + "id": 15921, "luminance": 0, "opaque": true, "replaceable": false, @@ -176015,7 +169058,7 @@ ] }, { - "id": 16552, + "id": 15922, "luminance": 0, "opaque": true, "replaceable": false, @@ -176026,7 +169069,7 @@ ] }, { - "id": 16553, + "id": 15923, "luminance": 0, "opaque": true, "replaceable": false, @@ -176037,7 +169080,7 @@ ] }, { - "id": 16554, + "id": 15924, "luminance": 0, "opaque": true, "replaceable": false, @@ -176047,7 +169090,7 @@ ] }, { - "id": 16555, + "id": 15925, "luminance": 0, "opaque": true, "replaceable": false, @@ -176058,7 +169101,7 @@ ] }, { - "id": 16556, + "id": 15926, "luminance": 0, "opaque": true, "replaceable": false, @@ -176069,7 +169112,7 @@ ] }, { - "id": 16557, + "id": 15927, "luminance": 0, "opaque": true, "replaceable": false, @@ -176080,7 +169123,7 @@ ] }, { - "id": 16558, + "id": 15928, "luminance": 0, "opaque": true, "replaceable": false, @@ -176092,7 +169135,7 @@ ] }, { - "id": 16559, + "id": 15929, "luminance": 0, "opaque": true, "replaceable": false, @@ -176104,7 +169147,7 @@ ] }, { - "id": 16560, + "id": 15930, "luminance": 0, "opaque": true, "replaceable": false, @@ -176115,7 +169158,7 @@ ] }, { - "id": 16561, + "id": 15931, "luminance": 0, "opaque": true, "replaceable": false, @@ -176127,7 +169170,7 @@ ] }, { - "id": 16562, + "id": 15932, "luminance": 0, "opaque": true, "replaceable": false, @@ -176139,7 +169182,7 @@ ] }, { - "id": 16563, + "id": 15933, "luminance": 0, "opaque": true, "replaceable": false, @@ -176149,7 +169192,7 @@ ] }, { - "id": 16564, + "id": 15934, "luminance": 0, "opaque": true, "replaceable": false, @@ -176159,7 +169202,7 @@ ] }, { - "id": 16565, + "id": 15935, "luminance": 0, "opaque": true, "replaceable": false, @@ -176169,7 +169212,7 @@ ] }, { - "id": 16566, + "id": 15936, "luminance": 0, "opaque": true, "replaceable": false, @@ -176179,7 +169222,7 @@ ] }, { - "id": 16567, + "id": 15937, "luminance": 0, "opaque": true, "replaceable": false, @@ -176189,7 +169232,7 @@ ] }, { - "id": 16568, + "id": 15938, "luminance": 0, "opaque": true, "replaceable": false, @@ -176199,7 +169242,7 @@ ] }, { - "id": 16569, + "id": 15939, "luminance": 0, "opaque": true, "replaceable": false, @@ -176211,7 +169254,7 @@ ] }, { - "id": 16570, + "id": 15940, "luminance": 0, "opaque": true, "replaceable": false, @@ -176224,7 +169267,7 @@ ] }, { - "id": 16571, + "id": 15941, "luminance": 0, "opaque": true, "replaceable": false, @@ -176237,7 +169280,7 @@ ] }, { - "id": 16572, + "id": 15942, "luminance": 0, "opaque": true, "replaceable": false, @@ -176249,7 +169292,7 @@ ] }, { - "id": 16573, + "id": 15943, "luminance": 0, "opaque": true, "replaceable": false, @@ -176262,7 +169305,7 @@ ] }, { - "id": 16574, + "id": 15944, "luminance": 0, "opaque": true, "replaceable": false, @@ -176275,7 +169318,7 @@ ] }, { - "id": 16575, + "id": 15945, "luminance": 0, "opaque": true, "replaceable": false, @@ -176285,7 +169328,7 @@ ] }, { - "id": 16576, + "id": 15946, "luminance": 0, "opaque": true, "replaceable": false, @@ -176296,7 +169339,7 @@ ] }, { - "id": 16577, + "id": 15947, "luminance": 0, "opaque": true, "replaceable": false, @@ -176307,7 +169350,7 @@ ] }, { - "id": 16578, + "id": 15948, "luminance": 0, "opaque": true, "replaceable": false, @@ -176317,7 +169360,7 @@ ] }, { - "id": 16579, + "id": 15949, "luminance": 0, "opaque": true, "replaceable": false, @@ -176328,7 +169371,7 @@ ] }, { - "id": 16580, + "id": 15950, "luminance": 0, "opaque": true, "replaceable": false, @@ -176339,7 +169382,7 @@ ] }, { - "id": 16581, + "id": 15951, "luminance": 0, "opaque": true, "replaceable": false, @@ -176351,7 +169394,7 @@ ] }, { - "id": 16582, + "id": 15952, "luminance": 0, "opaque": true, "replaceable": false, @@ -176364,7 +169407,7 @@ ] }, { - "id": 16583, + "id": 15953, "luminance": 0, "opaque": true, "replaceable": false, @@ -176377,7 +169420,7 @@ ] }, { - "id": 16584, + "id": 15954, "luminance": 0, "opaque": true, "replaceable": false, @@ -176389,7 +169432,7 @@ ] }, { - "id": 16585, + "id": 15955, "luminance": 0, "opaque": true, "replaceable": false, @@ -176402,7 +169445,7 @@ ] }, { - "id": 16586, + "id": 15956, "luminance": 0, "opaque": true, "replaceable": false, @@ -176415,7 +169458,7 @@ ] }, { - "id": 16587, + "id": 15957, "luminance": 0, "opaque": true, "replaceable": false, @@ -176425,7 +169468,7 @@ ] }, { - "id": 16588, + "id": 15958, "luminance": 0, "opaque": true, "replaceable": false, @@ -176436,7 +169479,7 @@ ] }, { - "id": 16589, + "id": 15959, "luminance": 0, "opaque": true, "replaceable": false, @@ -176447,7 +169490,7 @@ ] }, { - "id": 16590, + "id": 15960, "luminance": 0, "opaque": true, "replaceable": false, @@ -176457,7 +169500,7 @@ ] }, { - "id": 16591, + "id": 15961, "luminance": 0, "opaque": true, "replaceable": false, @@ -176468,7 +169511,7 @@ ] }, { - "id": 16592, + "id": 15962, "luminance": 0, "opaque": true, "replaceable": false, @@ -176481,9 +169524,9 @@ ] }, { - "id": 763, - "name": "andesite_wall", - "translation_key": "block.minecraft.andesite_wall", + "id": 765, + "name": "mud_brick_wall", + "translation_key": "block.minecraft.mud_brick_wall", "item_id": 383, "properties": [ { @@ -176533,10 +169576,10 @@ ] } ], - "default_state_id": 16596, + "default_state_id": 15966, "states": [ { - "id": 16593, + "id": 15963, "luminance": 0, "opaque": true, "replaceable": false, @@ -176545,7 +169588,7 @@ ] }, { - "id": 16594, + "id": 15964, "luminance": 0, "opaque": true, "replaceable": false, @@ -176556,7 +169599,7 @@ ] }, { - "id": 16595, + "id": 15965, "luminance": 0, "opaque": true, "replaceable": false, @@ -176567,7 +169610,7 @@ ] }, { - "id": 16596, + "id": 15966, "luminance": 0, "opaque": true, "replaceable": false, @@ -176576,7 +169619,7 @@ ] }, { - "id": 16597, + "id": 15967, "luminance": 0, "opaque": true, "replaceable": false, @@ -176587,7 +169630,7 @@ ] }, { - "id": 16598, + "id": 15968, "luminance": 0, "opaque": true, "replaceable": false, @@ -176598,14 +169641,14 @@ ] }, { - "id": 16599, + "id": 15969, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 16600, + "id": 15970, "luminance": 0, "opaque": true, "replaceable": false, @@ -176614,7 +169657,7 @@ ] }, { - "id": 16601, + "id": 15971, "luminance": 0, "opaque": true, "replaceable": false, @@ -176623,14 +169666,14 @@ ] }, { - "id": 16602, + "id": 15972, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 16603, + "id": 15973, "luminance": 0, "opaque": true, "replaceable": false, @@ -176639,7 +169682,7 @@ ] }, { - "id": 16604, + "id": 15974, "luminance": 0, "opaque": true, "replaceable": false, @@ -176648,7 +169691,7 @@ ] }, { - "id": 16605, + "id": 15975, "luminance": 0, "opaque": true, "replaceable": false, @@ -176658,7 +169701,7 @@ ] }, { - "id": 16606, + "id": 15976, "luminance": 0, "opaque": true, "replaceable": false, @@ -176670,7 +169713,7 @@ ] }, { - "id": 16607, + "id": 15977, "luminance": 0, "opaque": true, "replaceable": false, @@ -176682,7 +169725,7 @@ ] }, { - "id": 16608, + "id": 15978, "luminance": 0, "opaque": true, "replaceable": false, @@ -176692,7 +169735,7 @@ ] }, { - "id": 16609, + "id": 15979, "luminance": 0, "opaque": true, "replaceable": false, @@ -176704,7 +169747,7 @@ ] }, { - "id": 16610, + "id": 15980, "luminance": 0, "opaque": true, "replaceable": false, @@ -176716,7 +169759,7 @@ ] }, { - "id": 16611, + "id": 15981, "luminance": 0, "opaque": true, "replaceable": false, @@ -176725,7 +169768,7 @@ ] }, { - "id": 16612, + "id": 15982, "luminance": 0, "opaque": true, "replaceable": false, @@ -176735,7 +169778,7 @@ ] }, { - "id": 16613, + "id": 15983, "luminance": 0, "opaque": true, "replaceable": false, @@ -176745,7 +169788,7 @@ ] }, { - "id": 16614, + "id": 15984, "luminance": 0, "opaque": true, "replaceable": false, @@ -176754,7 +169797,7 @@ ] }, { - "id": 16615, + "id": 15985, "luminance": 0, "opaque": true, "replaceable": false, @@ -176764,7 +169807,7 @@ ] }, { - "id": 16616, + "id": 15986, "luminance": 0, "opaque": true, "replaceable": false, @@ -176774,7 +169817,7 @@ ] }, { - "id": 16617, + "id": 15987, "luminance": 0, "opaque": true, "replaceable": false, @@ -176784,7 +169827,7 @@ ] }, { - "id": 16618, + "id": 15988, "luminance": 0, "opaque": true, "replaceable": false, @@ -176796,7 +169839,7 @@ ] }, { - "id": 16619, + "id": 15989, "luminance": 0, "opaque": true, "replaceable": false, @@ -176808,7 +169851,7 @@ ] }, { - "id": 16620, + "id": 15990, "luminance": 0, "opaque": true, "replaceable": false, @@ -176818,7 +169861,7 @@ ] }, { - "id": 16621, + "id": 15991, "luminance": 0, "opaque": true, "replaceable": false, @@ -176830,7 +169873,7 @@ ] }, { - "id": 16622, + "id": 15992, "luminance": 0, "opaque": true, "replaceable": false, @@ -176842,7 +169885,7 @@ ] }, { - "id": 16623, + "id": 15993, "luminance": 0, "opaque": true, "replaceable": false, @@ -176851,7 +169894,7 @@ ] }, { - "id": 16624, + "id": 15994, "luminance": 0, "opaque": true, "replaceable": false, @@ -176861,7 +169904,7 @@ ] }, { - "id": 16625, + "id": 15995, "luminance": 0, "opaque": true, "replaceable": false, @@ -176871,7 +169914,7 @@ ] }, { - "id": 16626, + "id": 15996, "luminance": 0, "opaque": true, "replaceable": false, @@ -176880,7 +169923,7 @@ ] }, { - "id": 16627, + "id": 15997, "luminance": 0, "opaque": true, "replaceable": false, @@ -176890,7 +169933,7 @@ ] }, { - "id": 16628, + "id": 15998, "luminance": 0, "opaque": true, "replaceable": false, @@ -176900,7 +169943,7 @@ ] }, { - "id": 16629, + "id": 15999, "luminance": 0, "opaque": true, "replaceable": false, @@ -176910,7 +169953,7 @@ ] }, { - "id": 16630, + "id": 16000, "luminance": 0, "opaque": true, "replaceable": false, @@ -176922,7 +169965,7 @@ ] }, { - "id": 16631, + "id": 16001, "luminance": 0, "opaque": true, "replaceable": false, @@ -176934,7 +169977,7 @@ ] }, { - "id": 16632, + "id": 16002, "luminance": 0, "opaque": true, "replaceable": false, @@ -176944,7 +169987,7 @@ ] }, { - "id": 16633, + "id": 16003, "luminance": 0, "opaque": true, "replaceable": false, @@ -176956,7 +169999,7 @@ ] }, { - "id": 16634, + "id": 16004, "luminance": 0, "opaque": true, "replaceable": false, @@ -176968,7 +170011,7 @@ ] }, { - "id": 16635, + "id": 16005, "luminance": 0, "opaque": true, "replaceable": false, @@ -176977,7 +170020,7 @@ ] }, { - "id": 16636, + "id": 16006, "luminance": 0, "opaque": true, "replaceable": false, @@ -176987,7 +170030,7 @@ ] }, { - "id": 16637, + "id": 16007, "luminance": 0, "opaque": true, "replaceable": false, @@ -176997,7 +170040,7 @@ ] }, { - "id": 16638, + "id": 16008, "luminance": 0, "opaque": true, "replaceable": false, @@ -177006,7 +170049,7 @@ ] }, { - "id": 16639, + "id": 16009, "luminance": 0, "opaque": true, "replaceable": false, @@ -177016,7 +170059,7 @@ ] }, { - "id": 16640, + "id": 16010, "luminance": 0, "opaque": true, "replaceable": false, @@ -177026,7 +170069,7 @@ ] }, { - "id": 16641, + "id": 16011, "luminance": 0, "opaque": true, "replaceable": false, @@ -177037,7 +170080,7 @@ ] }, { - "id": 16642, + "id": 16012, "luminance": 0, "opaque": true, "replaceable": false, @@ -177050,7 +170093,7 @@ ] }, { - "id": 16643, + "id": 16013, "luminance": 0, "opaque": true, "replaceable": false, @@ -177063,7 +170106,7 @@ ] }, { - "id": 16644, + "id": 16014, "luminance": 0, "opaque": true, "replaceable": false, @@ -177074,7 +170117,7 @@ ] }, { - "id": 16645, + "id": 16015, "luminance": 0, "opaque": true, "replaceable": false, @@ -177087,7 +170130,7 @@ ] }, { - "id": 16646, + "id": 16016, "luminance": 0, "opaque": true, "replaceable": false, @@ -177100,7 +170143,7 @@ ] }, { - "id": 16647, + "id": 16017, "luminance": 0, "opaque": true, "replaceable": false, @@ -177109,7 +170152,7 @@ ] }, { - "id": 16648, + "id": 16018, "luminance": 0, "opaque": true, "replaceable": false, @@ -177120,7 +170163,7 @@ ] }, { - "id": 16649, + "id": 16019, "luminance": 0, "opaque": true, "replaceable": false, @@ -177131,7 +170174,7 @@ ] }, { - "id": 16650, + "id": 16020, "luminance": 0, "opaque": true, "replaceable": false, @@ -177140,7 +170183,7 @@ ] }, { - "id": 16651, + "id": 16021, "luminance": 0, "opaque": true, "replaceable": false, @@ -177151,7 +170194,7 @@ ] }, { - "id": 16652, + "id": 16022, "luminance": 0, "opaque": true, "replaceable": false, @@ -177162,7 +170205,7 @@ ] }, { - "id": 16653, + "id": 16023, "luminance": 0, "opaque": true, "replaceable": false, @@ -177173,7 +170216,7 @@ ] }, { - "id": 16654, + "id": 16024, "luminance": 0, "opaque": true, "replaceable": false, @@ -177186,7 +170229,7 @@ ] }, { - "id": 16655, + "id": 16025, "luminance": 0, "opaque": true, "replaceable": false, @@ -177199,7 +170242,7 @@ ] }, { - "id": 16656, + "id": 16026, "luminance": 0, "opaque": true, "replaceable": false, @@ -177210,7 +170253,7 @@ ] }, { - "id": 16657, + "id": 16027, "luminance": 0, "opaque": true, "replaceable": false, @@ -177223,7 +170266,7 @@ ] }, { - "id": 16658, + "id": 16028, "luminance": 0, "opaque": true, "replaceable": false, @@ -177236,7 +170279,7 @@ ] }, { - "id": 16659, + "id": 16029, "luminance": 0, "opaque": true, "replaceable": false, @@ -177245,7 +170288,7 @@ ] }, { - "id": 16660, + "id": 16030, "luminance": 0, "opaque": true, "replaceable": false, @@ -177256,7 +170299,7 @@ ] }, { - "id": 16661, + "id": 16031, "luminance": 0, "opaque": true, "replaceable": false, @@ -177267,7 +170310,7 @@ ] }, { - "id": 16662, + "id": 16032, "luminance": 0, "opaque": true, "replaceable": false, @@ -177276,7 +170319,7 @@ ] }, { - "id": 16663, + "id": 16033, "luminance": 0, "opaque": true, "replaceable": false, @@ -177287,7 +170330,7 @@ ] }, { - "id": 16664, + "id": 16034, "luminance": 0, "opaque": true, "replaceable": false, @@ -177298,7 +170341,7 @@ ] }, { - "id": 16665, + "id": 16035, "luminance": 0, "opaque": true, "replaceable": false, @@ -177308,7 +170351,7 @@ ] }, { - "id": 16666, + "id": 16036, "luminance": 0, "opaque": true, "replaceable": false, @@ -177320,7 +170363,7 @@ ] }, { - "id": 16667, + "id": 16037, "luminance": 0, "opaque": true, "replaceable": false, @@ -177332,7 +170375,7 @@ ] }, { - "id": 16668, + "id": 16038, "luminance": 0, "opaque": true, "replaceable": false, @@ -177342,7 +170385,7 @@ ] }, { - "id": 16669, + "id": 16039, "luminance": 0, "opaque": true, "replaceable": false, @@ -177354,7 +170397,7 @@ ] }, { - "id": 16670, + "id": 16040, "luminance": 0, "opaque": true, "replaceable": false, @@ -177366,7 +170409,7 @@ ] }, { - "id": 16671, + "id": 16041, "luminance": 0, "opaque": true, "replaceable": false, @@ -177375,7 +170418,7 @@ ] }, { - "id": 16672, + "id": 16042, "luminance": 0, "opaque": true, "replaceable": false, @@ -177385,7 +170428,7 @@ ] }, { - "id": 16673, + "id": 16043, "luminance": 0, "opaque": true, "replaceable": false, @@ -177395,7 +170438,7 @@ ] }, { - "id": 16674, + "id": 16044, "luminance": 0, "opaque": true, "replaceable": false, @@ -177404,7 +170447,7 @@ ] }, { - "id": 16675, + "id": 16045, "luminance": 0, "opaque": true, "replaceable": false, @@ -177414,7 +170457,7 @@ ] }, { - "id": 16676, + "id": 16046, "luminance": 0, "opaque": true, "replaceable": false, @@ -177424,7 +170467,7 @@ ] }, { - "id": 16677, + "id": 16047, "luminance": 0, "opaque": true, "replaceable": false, @@ -177435,7 +170478,7 @@ ] }, { - "id": 16678, + "id": 16048, "luminance": 0, "opaque": true, "replaceable": false, @@ -177448,7 +170491,7 @@ ] }, { - "id": 16679, + "id": 16049, "luminance": 0, "opaque": true, "replaceable": false, @@ -177461,7 +170504,7 @@ ] }, { - "id": 16680, + "id": 16050, "luminance": 0, "opaque": true, "replaceable": false, @@ -177472,7 +170515,7 @@ ] }, { - "id": 16681, + "id": 16051, "luminance": 0, "opaque": true, "replaceable": false, @@ -177485,7 +170528,7 @@ ] }, { - "id": 16682, + "id": 16052, "luminance": 0, "opaque": true, "replaceable": false, @@ -177498,7 +170541,7 @@ ] }, { - "id": 16683, + "id": 16053, "luminance": 0, "opaque": true, "replaceable": false, @@ -177507,7 +170550,7 @@ ] }, { - "id": 16684, + "id": 16054, "luminance": 0, "opaque": true, "replaceable": false, @@ -177518,7 +170561,7 @@ ] }, { - "id": 16685, + "id": 16055, "luminance": 0, "opaque": true, "replaceable": false, @@ -177529,7 +170572,7 @@ ] }, { - "id": 16686, + "id": 16056, "luminance": 0, "opaque": true, "replaceable": false, @@ -177538,7 +170581,7 @@ ] }, { - "id": 16687, + "id": 16057, "luminance": 0, "opaque": true, "replaceable": false, @@ -177549,7 +170592,7 @@ ] }, { - "id": 16688, + "id": 16058, "luminance": 0, "opaque": true, "replaceable": false, @@ -177560,7 +170603,7 @@ ] }, { - "id": 16689, + "id": 16059, "luminance": 0, "opaque": true, "replaceable": false, @@ -177571,7 +170614,7 @@ ] }, { - "id": 16690, + "id": 16060, "luminance": 0, "opaque": true, "replaceable": false, @@ -177584,7 +170627,7 @@ ] }, { - "id": 16691, + "id": 16061, "luminance": 0, "opaque": true, "replaceable": false, @@ -177597,7 +170640,7 @@ ] }, { - "id": 16692, + "id": 16062, "luminance": 0, "opaque": true, "replaceable": false, @@ -177608,7 +170651,7 @@ ] }, { - "id": 16693, + "id": 16063, "luminance": 0, "opaque": true, "replaceable": false, @@ -177621,7 +170664,7 @@ ] }, { - "id": 16694, + "id": 16064, "luminance": 0, "opaque": true, "replaceable": false, @@ -177634,7 +170677,7 @@ ] }, { - "id": 16695, + "id": 16065, "luminance": 0, "opaque": true, "replaceable": false, @@ -177643,7 +170686,7 @@ ] }, { - "id": 16696, + "id": 16066, "luminance": 0, "opaque": true, "replaceable": false, @@ -177654,7 +170697,7 @@ ] }, { - "id": 16697, + "id": 16067, "luminance": 0, "opaque": true, "replaceable": false, @@ -177665,7 +170708,7 @@ ] }, { - "id": 16698, + "id": 16068, "luminance": 0, "opaque": true, "replaceable": false, @@ -177674,7 +170717,7 @@ ] }, { - "id": 16699, + "id": 16069, "luminance": 0, "opaque": true, "replaceable": false, @@ -177685,7 +170728,7 @@ ] }, { - "id": 16700, + "id": 16070, "luminance": 0, "opaque": true, "replaceable": false, @@ -177696,7 +170739,7 @@ ] }, { - "id": 16701, + "id": 16071, "luminance": 0, "opaque": true, "replaceable": false, @@ -177706,7 +170749,7 @@ ] }, { - "id": 16702, + "id": 16072, "luminance": 0, "opaque": true, "replaceable": false, @@ -177717,7 +170760,7 @@ ] }, { - "id": 16703, + "id": 16073, "luminance": 0, "opaque": true, "replaceable": false, @@ -177728,7 +170771,7 @@ ] }, { - "id": 16704, + "id": 16074, "luminance": 0, "opaque": true, "replaceable": false, @@ -177738,7 +170781,7 @@ ] }, { - "id": 16705, + "id": 16075, "luminance": 0, "opaque": true, "replaceable": false, @@ -177749,7 +170792,7 @@ ] }, { - "id": 16706, + "id": 16076, "luminance": 0, "opaque": true, "replaceable": false, @@ -177760,7 +170803,7 @@ ] }, { - "id": 16707, + "id": 16077, "luminance": 0, "opaque": true, "replaceable": false, @@ -177769,7 +170812,7 @@ ] }, { - "id": 16708, + "id": 16078, "luminance": 0, "opaque": true, "replaceable": false, @@ -177778,7 +170821,7 @@ ] }, { - "id": 16709, + "id": 16079, "luminance": 0, "opaque": true, "replaceable": false, @@ -177787,7 +170830,7 @@ ] }, { - "id": 16710, + "id": 16080, "luminance": 0, "opaque": true, "replaceable": false, @@ -177796,7 +170839,7 @@ ] }, { - "id": 16711, + "id": 16081, "luminance": 0, "opaque": true, "replaceable": false, @@ -177805,7 +170848,7 @@ ] }, { - "id": 16712, + "id": 16082, "luminance": 0, "opaque": true, "replaceable": false, @@ -177814,7 +170857,7 @@ ] }, { - "id": 16713, + "id": 16083, "luminance": 0, "opaque": true, "replaceable": false, @@ -177825,7 +170868,7 @@ ] }, { - "id": 16714, + "id": 16084, "luminance": 0, "opaque": true, "replaceable": false, @@ -177837,7 +170880,7 @@ ] }, { - "id": 16715, + "id": 16085, "luminance": 0, "opaque": true, "replaceable": false, @@ -177849,7 +170892,7 @@ ] }, { - "id": 16716, + "id": 16086, "luminance": 0, "opaque": true, "replaceable": false, @@ -177860,7 +170903,7 @@ ] }, { - "id": 16717, + "id": 16087, "luminance": 0, "opaque": true, "replaceable": false, @@ -177872,7 +170915,7 @@ ] }, { - "id": 16718, + "id": 16088, "luminance": 0, "opaque": true, "replaceable": false, @@ -177884,7 +170927,7 @@ ] }, { - "id": 16719, + "id": 16089, "luminance": 0, "opaque": true, "replaceable": false, @@ -177894,7 +170937,7 @@ ] }, { - "id": 16720, + "id": 16090, "luminance": 0, "opaque": true, "replaceable": false, @@ -177904,7 +170947,7 @@ ] }, { - "id": 16721, + "id": 16091, "luminance": 0, "opaque": true, "replaceable": false, @@ -177914,7 +170957,7 @@ ] }, { - "id": 16722, + "id": 16092, "luminance": 0, "opaque": true, "replaceable": false, @@ -177924,7 +170967,7 @@ ] }, { - "id": 16723, + "id": 16093, "luminance": 0, "opaque": true, "replaceable": false, @@ -177934,7 +170977,7 @@ ] }, { - "id": 16724, + "id": 16094, "luminance": 0, "opaque": true, "replaceable": false, @@ -177944,7 +170987,7 @@ ] }, { - "id": 16725, + "id": 16095, "luminance": 0, "opaque": true, "replaceable": false, @@ -177955,7 +170998,7 @@ ] }, { - "id": 16726, + "id": 16096, "luminance": 0, "opaque": true, "replaceable": false, @@ -177967,7 +171010,7 @@ ] }, { - "id": 16727, + "id": 16097, "luminance": 0, "opaque": true, "replaceable": false, @@ -177979,7 +171022,7 @@ ] }, { - "id": 16728, + "id": 16098, "luminance": 0, "opaque": true, "replaceable": false, @@ -177990,7 +171033,7 @@ ] }, { - "id": 16729, + "id": 16099, "luminance": 0, "opaque": true, "replaceable": false, @@ -178002,7 +171045,7 @@ ] }, { - "id": 16730, + "id": 16100, "luminance": 0, "opaque": true, "replaceable": false, @@ -178014,7 +171057,7 @@ ] }, { - "id": 16731, + "id": 16101, "luminance": 0, "opaque": true, "replaceable": false, @@ -178024,7 +171067,7 @@ ] }, { - "id": 16732, + "id": 16102, "luminance": 0, "opaque": true, "replaceable": false, @@ -178034,7 +171077,7 @@ ] }, { - "id": 16733, + "id": 16103, "luminance": 0, "opaque": true, "replaceable": false, @@ -178044,7 +171087,7 @@ ] }, { - "id": 16734, + "id": 16104, "luminance": 0, "opaque": true, "replaceable": false, @@ -178054,7 +171097,7 @@ ] }, { - "id": 16735, + "id": 16105, "luminance": 0, "opaque": true, "replaceable": false, @@ -178064,7 +171107,7 @@ ] }, { - "id": 16736, + "id": 16106, "luminance": 0, "opaque": true, "replaceable": false, @@ -178074,7 +171117,7 @@ ] }, { - "id": 16737, + "id": 16107, "luminance": 0, "opaque": true, "replaceable": false, @@ -178085,7 +171128,7 @@ ] }, { - "id": 16738, + "id": 16108, "luminance": 0, "opaque": true, "replaceable": false, @@ -178097,7 +171140,7 @@ ] }, { - "id": 16739, + "id": 16109, "luminance": 0, "opaque": true, "replaceable": false, @@ -178109,7 +171152,7 @@ ] }, { - "id": 16740, + "id": 16110, "luminance": 0, "opaque": true, "replaceable": false, @@ -178120,7 +171163,7 @@ ] }, { - "id": 16741, + "id": 16111, "luminance": 0, "opaque": true, "replaceable": false, @@ -178132,7 +171175,7 @@ ] }, { - "id": 16742, + "id": 16112, "luminance": 0, "opaque": true, "replaceable": false, @@ -178144,7 +171187,7 @@ ] }, { - "id": 16743, + "id": 16113, "luminance": 0, "opaque": true, "replaceable": false, @@ -178154,7 +171197,7 @@ ] }, { - "id": 16744, + "id": 16114, "luminance": 0, "opaque": true, "replaceable": false, @@ -178164,7 +171207,7 @@ ] }, { - "id": 16745, + "id": 16115, "luminance": 0, "opaque": true, "replaceable": false, @@ -178174,7 +171217,7 @@ ] }, { - "id": 16746, + "id": 16116, "luminance": 0, "opaque": true, "replaceable": false, @@ -178184,7 +171227,7 @@ ] }, { - "id": 16747, + "id": 16117, "luminance": 0, "opaque": true, "replaceable": false, @@ -178194,7 +171237,7 @@ ] }, { - "id": 16748, + "id": 16118, "luminance": 0, "opaque": true, "replaceable": false, @@ -178204,7 +171247,7 @@ ] }, { - "id": 16749, + "id": 16119, "luminance": 0, "opaque": true, "replaceable": false, @@ -178216,7 +171259,7 @@ ] }, { - "id": 16750, + "id": 16120, "luminance": 0, "opaque": true, "replaceable": false, @@ -178229,7 +171272,7 @@ ] }, { - "id": 16751, + "id": 16121, "luminance": 0, "opaque": true, "replaceable": false, @@ -178242,7 +171285,7 @@ ] }, { - "id": 16752, + "id": 16122, "luminance": 0, "opaque": true, "replaceable": false, @@ -178254,7 +171297,7 @@ ] }, { - "id": 16753, + "id": 16123, "luminance": 0, "opaque": true, "replaceable": false, @@ -178267,7 +171310,7 @@ ] }, { - "id": 16754, + "id": 16124, "luminance": 0, "opaque": true, "replaceable": false, @@ -178280,7 +171323,7 @@ ] }, { - "id": 16755, + "id": 16125, "luminance": 0, "opaque": true, "replaceable": false, @@ -178290,7 +171333,7 @@ ] }, { - "id": 16756, + "id": 16126, "luminance": 0, "opaque": true, "replaceable": false, @@ -178301,7 +171344,7 @@ ] }, { - "id": 16757, + "id": 16127, "luminance": 0, "opaque": true, "replaceable": false, @@ -178312,7 +171355,7 @@ ] }, { - "id": 16758, + "id": 16128, "luminance": 0, "opaque": true, "replaceable": false, @@ -178322,7 +171365,7 @@ ] }, { - "id": 16759, + "id": 16129, "luminance": 0, "opaque": true, "replaceable": false, @@ -178333,7 +171376,7 @@ ] }, { - "id": 16760, + "id": 16130, "luminance": 0, "opaque": true, "replaceable": false, @@ -178344,7 +171387,7 @@ ] }, { - "id": 16761, + "id": 16131, "luminance": 0, "opaque": true, "replaceable": false, @@ -178356,7 +171399,7 @@ ] }, { - "id": 16762, + "id": 16132, "luminance": 0, "opaque": true, "replaceable": false, @@ -178369,7 +171412,7 @@ ] }, { - "id": 16763, + "id": 16133, "luminance": 0, "opaque": true, "replaceable": false, @@ -178382,7 +171425,7 @@ ] }, { - "id": 16764, + "id": 16134, "luminance": 0, "opaque": true, "replaceable": false, @@ -178394,7 +171437,7 @@ ] }, { - "id": 16765, + "id": 16135, "luminance": 0, "opaque": true, "replaceable": false, @@ -178407,7 +171450,7 @@ ] }, { - "id": 16766, + "id": 16136, "luminance": 0, "opaque": true, "replaceable": false, @@ -178420,7 +171463,7 @@ ] }, { - "id": 16767, + "id": 16137, "luminance": 0, "opaque": true, "replaceable": false, @@ -178430,7 +171473,7 @@ ] }, { - "id": 16768, + "id": 16138, "luminance": 0, "opaque": true, "replaceable": false, @@ -178441,7 +171484,7 @@ ] }, { - "id": 16769, + "id": 16139, "luminance": 0, "opaque": true, "replaceable": false, @@ -178452,7 +171495,7 @@ ] }, { - "id": 16770, + "id": 16140, "luminance": 0, "opaque": true, "replaceable": false, @@ -178462,7 +171505,7 @@ ] }, { - "id": 16771, + "id": 16141, "luminance": 0, "opaque": true, "replaceable": false, @@ -178473,7 +171516,7 @@ ] }, { - "id": 16772, + "id": 16142, "luminance": 0, "opaque": true, "replaceable": false, @@ -178484,7 +171527,7 @@ ] }, { - "id": 16773, + "id": 16143, "luminance": 0, "opaque": true, "replaceable": false, @@ -178495,7 +171538,7 @@ ] }, { - "id": 16774, + "id": 16144, "luminance": 0, "opaque": true, "replaceable": false, @@ -178507,7 +171550,7 @@ ] }, { - "id": 16775, + "id": 16145, "luminance": 0, "opaque": true, "replaceable": false, @@ -178519,7 +171562,7 @@ ] }, { - "id": 16776, + "id": 16146, "luminance": 0, "opaque": true, "replaceable": false, @@ -178530,7 +171573,7 @@ ] }, { - "id": 16777, + "id": 16147, "luminance": 0, "opaque": true, "replaceable": false, @@ -178542,7 +171585,7 @@ ] }, { - "id": 16778, + "id": 16148, "luminance": 0, "opaque": true, "replaceable": false, @@ -178554,7 +171597,7 @@ ] }, { - "id": 16779, + "id": 16149, "luminance": 0, "opaque": true, "replaceable": false, @@ -178564,7 +171607,7 @@ ] }, { - "id": 16780, + "id": 16150, "luminance": 0, "opaque": true, "replaceable": false, @@ -178574,7 +171617,7 @@ ] }, { - "id": 16781, + "id": 16151, "luminance": 0, "opaque": true, "replaceable": false, @@ -178584,7 +171627,7 @@ ] }, { - "id": 16782, + "id": 16152, "luminance": 0, "opaque": true, "replaceable": false, @@ -178594,7 +171637,7 @@ ] }, { - "id": 16783, + "id": 16153, "luminance": 0, "opaque": true, "replaceable": false, @@ -178604,7 +171647,7 @@ ] }, { - "id": 16784, + "id": 16154, "luminance": 0, "opaque": true, "replaceable": false, @@ -178614,7 +171657,7 @@ ] }, { - "id": 16785, + "id": 16155, "luminance": 0, "opaque": true, "replaceable": false, @@ -178626,7 +171669,7 @@ ] }, { - "id": 16786, + "id": 16156, "luminance": 0, "opaque": true, "replaceable": false, @@ -178639,7 +171682,7 @@ ] }, { - "id": 16787, + "id": 16157, "luminance": 0, "opaque": true, "replaceable": false, @@ -178652,7 +171695,7 @@ ] }, { - "id": 16788, + "id": 16158, "luminance": 0, "opaque": true, "replaceable": false, @@ -178664,7 +171707,7 @@ ] }, { - "id": 16789, + "id": 16159, "luminance": 0, "opaque": true, "replaceable": false, @@ -178677,7 +171720,7 @@ ] }, { - "id": 16790, + "id": 16160, "luminance": 0, "opaque": true, "replaceable": false, @@ -178690,7 +171733,7 @@ ] }, { - "id": 16791, + "id": 16161, "luminance": 0, "opaque": true, "replaceable": false, @@ -178700,7 +171743,7 @@ ] }, { - "id": 16792, + "id": 16162, "luminance": 0, "opaque": true, "replaceable": false, @@ -178711,7 +171754,7 @@ ] }, { - "id": 16793, + "id": 16163, "luminance": 0, "opaque": true, "replaceable": false, @@ -178722,7 +171765,7 @@ ] }, { - "id": 16794, + "id": 16164, "luminance": 0, "opaque": true, "replaceable": false, @@ -178732,7 +171775,7 @@ ] }, { - "id": 16795, + "id": 16165, "luminance": 0, "opaque": true, "replaceable": false, @@ -178743,7 +171786,7 @@ ] }, { - "id": 16796, + "id": 16166, "luminance": 0, "opaque": true, "replaceable": false, @@ -178754,7 +171797,7 @@ ] }, { - "id": 16797, + "id": 16167, "luminance": 0, "opaque": true, "replaceable": false, @@ -178766,7 +171809,7 @@ ] }, { - "id": 16798, + "id": 16168, "luminance": 0, "opaque": true, "replaceable": false, @@ -178779,7 +171822,7 @@ ] }, { - "id": 16799, + "id": 16169, "luminance": 0, "opaque": true, "replaceable": false, @@ -178792,7 +171835,7 @@ ] }, { - "id": 16800, + "id": 16170, "luminance": 0, "opaque": true, "replaceable": false, @@ -178804,7 +171847,7 @@ ] }, { - "id": 16801, + "id": 16171, "luminance": 0, "opaque": true, "replaceable": false, @@ -178817,7 +171860,7 @@ ] }, { - "id": 16802, + "id": 16172, "luminance": 0, "opaque": true, "replaceable": false, @@ -178830,7 +171873,7 @@ ] }, { - "id": 16803, + "id": 16173, "luminance": 0, "opaque": true, "replaceable": false, @@ -178840,7 +171883,7 @@ ] }, { - "id": 16804, + "id": 16174, "luminance": 0, "opaque": true, "replaceable": false, @@ -178851,7 +171894,7 @@ ] }, { - "id": 16805, + "id": 16175, "luminance": 0, "opaque": true, "replaceable": false, @@ -178862,7 +171905,7 @@ ] }, { - "id": 16806, + "id": 16176, "luminance": 0, "opaque": true, "replaceable": false, @@ -178872,7 +171915,7 @@ ] }, { - "id": 16807, + "id": 16177, "luminance": 0, "opaque": true, "replaceable": false, @@ -178883,7 +171926,7 @@ ] }, { - "id": 16808, + "id": 16178, "luminance": 0, "opaque": true, "replaceable": false, @@ -178894,7 +171937,7 @@ ] }, { - "id": 16809, + "id": 16179, "luminance": 0, "opaque": true, "replaceable": false, @@ -178904,7 +171947,7 @@ ] }, { - "id": 16810, + "id": 16180, "luminance": 0, "opaque": true, "replaceable": false, @@ -178915,7 +171958,7 @@ ] }, { - "id": 16811, + "id": 16181, "luminance": 0, "opaque": true, "replaceable": false, @@ -178926,7 +171969,7 @@ ] }, { - "id": 16812, + "id": 16182, "luminance": 0, "opaque": true, "replaceable": false, @@ -178936,7 +171979,7 @@ ] }, { - "id": 16813, + "id": 16183, "luminance": 0, "opaque": true, "replaceable": false, @@ -178947,7 +171990,7 @@ ] }, { - "id": 16814, + "id": 16184, "luminance": 0, "opaque": true, "replaceable": false, @@ -178958,7 +172001,7 @@ ] }, { - "id": 16815, + "id": 16185, "luminance": 0, "opaque": true, "replaceable": false, @@ -178967,7 +172010,7 @@ ] }, { - "id": 16816, + "id": 16186, "luminance": 0, "opaque": true, "replaceable": false, @@ -178976,7 +172019,7 @@ ] }, { - "id": 16817, + "id": 16187, "luminance": 0, "opaque": true, "replaceable": false, @@ -178985,7 +172028,7 @@ ] }, { - "id": 16818, + "id": 16188, "luminance": 0, "opaque": true, "replaceable": false, @@ -178994,7 +172037,7 @@ ] }, { - "id": 16819, + "id": 16189, "luminance": 0, "opaque": true, "replaceable": false, @@ -179003,7 +172046,7 @@ ] }, { - "id": 16820, + "id": 16190, "luminance": 0, "opaque": true, "replaceable": false, @@ -179012,7 +172055,7 @@ ] }, { - "id": 16821, + "id": 16191, "luminance": 0, "opaque": true, "replaceable": false, @@ -179023,7 +172066,7 @@ ] }, { - "id": 16822, + "id": 16192, "luminance": 0, "opaque": true, "replaceable": false, @@ -179035,7 +172078,7 @@ ] }, { - "id": 16823, + "id": 16193, "luminance": 0, "opaque": true, "replaceable": false, @@ -179047,7 +172090,7 @@ ] }, { - "id": 16824, + "id": 16194, "luminance": 0, "opaque": true, "replaceable": false, @@ -179058,7 +172101,7 @@ ] }, { - "id": 16825, + "id": 16195, "luminance": 0, "opaque": true, "replaceable": false, @@ -179070,7 +172113,7 @@ ] }, { - "id": 16826, + "id": 16196, "luminance": 0, "opaque": true, "replaceable": false, @@ -179082,7 +172125,7 @@ ] }, { - "id": 16827, + "id": 16197, "luminance": 0, "opaque": true, "replaceable": false, @@ -179092,7 +172135,7 @@ ] }, { - "id": 16828, + "id": 16198, "luminance": 0, "opaque": true, "replaceable": false, @@ -179102,7 +172145,7 @@ ] }, { - "id": 16829, + "id": 16199, "luminance": 0, "opaque": true, "replaceable": false, @@ -179112,7 +172155,7 @@ ] }, { - "id": 16830, + "id": 16200, "luminance": 0, "opaque": true, "replaceable": false, @@ -179122,7 +172165,7 @@ ] }, { - "id": 16831, + "id": 16201, "luminance": 0, "opaque": true, "replaceable": false, @@ -179132,7 +172175,7 @@ ] }, { - "id": 16832, + "id": 16202, "luminance": 0, "opaque": true, "replaceable": false, @@ -179142,7 +172185,7 @@ ] }, { - "id": 16833, + "id": 16203, "luminance": 0, "opaque": true, "replaceable": false, @@ -179153,7 +172196,7 @@ ] }, { - "id": 16834, + "id": 16204, "luminance": 0, "opaque": true, "replaceable": false, @@ -179165,7 +172208,7 @@ ] }, { - "id": 16835, + "id": 16205, "luminance": 0, "opaque": true, "replaceable": false, @@ -179177,7 +172220,7 @@ ] }, { - "id": 16836, + "id": 16206, "luminance": 0, "opaque": true, "replaceable": false, @@ -179188,7 +172231,7 @@ ] }, { - "id": 16837, + "id": 16207, "luminance": 0, "opaque": true, "replaceable": false, @@ -179200,7 +172243,7 @@ ] }, { - "id": 16838, + "id": 16208, "luminance": 0, "opaque": true, "replaceable": false, @@ -179212,7 +172255,7 @@ ] }, { - "id": 16839, + "id": 16209, "luminance": 0, "opaque": true, "replaceable": false, @@ -179222,7 +172265,7 @@ ] }, { - "id": 16840, + "id": 16210, "luminance": 0, "opaque": true, "replaceable": false, @@ -179232,7 +172275,7 @@ ] }, { - "id": 16841, + "id": 16211, "luminance": 0, "opaque": true, "replaceable": false, @@ -179242,7 +172285,7 @@ ] }, { - "id": 16842, + "id": 16212, "luminance": 0, "opaque": true, "replaceable": false, @@ -179252,7 +172295,7 @@ ] }, { - "id": 16843, + "id": 16213, "luminance": 0, "opaque": true, "replaceable": false, @@ -179262,7 +172305,7 @@ ] }, { - "id": 16844, + "id": 16214, "luminance": 0, "opaque": true, "replaceable": false, @@ -179272,7 +172315,7 @@ ] }, { - "id": 16845, + "id": 16215, "luminance": 0, "opaque": true, "replaceable": false, @@ -179283,7 +172326,7 @@ ] }, { - "id": 16846, + "id": 16216, "luminance": 0, "opaque": true, "replaceable": false, @@ -179295,7 +172338,7 @@ ] }, { - "id": 16847, + "id": 16217, "luminance": 0, "opaque": true, "replaceable": false, @@ -179307,7 +172350,7 @@ ] }, { - "id": 16848, + "id": 16218, "luminance": 0, "opaque": true, "replaceable": false, @@ -179318,7 +172361,7 @@ ] }, { - "id": 16849, + "id": 16219, "luminance": 0, "opaque": true, "replaceable": false, @@ -179330,7 +172373,7 @@ ] }, { - "id": 16850, + "id": 16220, "luminance": 0, "opaque": true, "replaceable": false, @@ -179342,7 +172385,7 @@ ] }, { - "id": 16851, + "id": 16221, "luminance": 0, "opaque": true, "replaceable": false, @@ -179352,7 +172395,7 @@ ] }, { - "id": 16852, + "id": 16222, "luminance": 0, "opaque": true, "replaceable": false, @@ -179362,7 +172405,7 @@ ] }, { - "id": 16853, + "id": 16223, "luminance": 0, "opaque": true, "replaceable": false, @@ -179372,7 +172415,7 @@ ] }, { - "id": 16854, + "id": 16224, "luminance": 0, "opaque": true, "replaceable": false, @@ -179382,7 +172425,7 @@ ] }, { - "id": 16855, + "id": 16225, "luminance": 0, "opaque": true, "replaceable": false, @@ -179392,7 +172435,7 @@ ] }, { - "id": 16856, + "id": 16226, "luminance": 0, "opaque": true, "replaceable": false, @@ -179402,7 +172445,7 @@ ] }, { - "id": 16857, + "id": 16227, "luminance": 0, "opaque": true, "replaceable": false, @@ -179414,7 +172457,7 @@ ] }, { - "id": 16858, + "id": 16228, "luminance": 0, "opaque": true, "replaceable": false, @@ -179427,7 +172470,7 @@ ] }, { - "id": 16859, + "id": 16229, "luminance": 0, "opaque": true, "replaceable": false, @@ -179440,7 +172483,7 @@ ] }, { - "id": 16860, + "id": 16230, "luminance": 0, "opaque": true, "replaceable": false, @@ -179452,7 +172495,7 @@ ] }, { - "id": 16861, + "id": 16231, "luminance": 0, "opaque": true, "replaceable": false, @@ -179465,7 +172508,7 @@ ] }, { - "id": 16862, + "id": 16232, "luminance": 0, "opaque": true, "replaceable": false, @@ -179478,7 +172521,7 @@ ] }, { - "id": 16863, + "id": 16233, "luminance": 0, "opaque": true, "replaceable": false, @@ -179488,7 +172531,7 @@ ] }, { - "id": 16864, + "id": 16234, "luminance": 0, "opaque": true, "replaceable": false, @@ -179499,7 +172542,7 @@ ] }, { - "id": 16865, + "id": 16235, "luminance": 0, "opaque": true, "replaceable": false, @@ -179510,7 +172553,7 @@ ] }, { - "id": 16866, + "id": 16236, "luminance": 0, "opaque": true, "replaceable": false, @@ -179520,7 +172563,7 @@ ] }, { - "id": 16867, + "id": 16237, "luminance": 0, "opaque": true, "replaceable": false, @@ -179531,7 +172574,7 @@ ] }, { - "id": 16868, + "id": 16238, "luminance": 0, "opaque": true, "replaceable": false, @@ -179542,7 +172585,7 @@ ] }, { - "id": 16869, + "id": 16239, "luminance": 0, "opaque": true, "replaceable": false, @@ -179554,7 +172597,7 @@ ] }, { - "id": 16870, + "id": 16240, "luminance": 0, "opaque": true, "replaceable": false, @@ -179567,7 +172610,7 @@ ] }, { - "id": 16871, + "id": 16241, "luminance": 0, "opaque": true, "replaceable": false, @@ -179580,7 +172623,7 @@ ] }, { - "id": 16872, + "id": 16242, "luminance": 0, "opaque": true, "replaceable": false, @@ -179592,7 +172635,7 @@ ] }, { - "id": 16873, + "id": 16243, "luminance": 0, "opaque": true, "replaceable": false, @@ -179605,7 +172648,7 @@ ] }, { - "id": 16874, + "id": 16244, "luminance": 0, "opaque": true, "replaceable": false, @@ -179618,7 +172661,7 @@ ] }, { - "id": 16875, + "id": 16245, "luminance": 0, "opaque": true, "replaceable": false, @@ -179628,7 +172671,7 @@ ] }, { - "id": 16876, + "id": 16246, "luminance": 0, "opaque": true, "replaceable": false, @@ -179639,7 +172682,7 @@ ] }, { - "id": 16877, + "id": 16247, "luminance": 0, "opaque": true, "replaceable": false, @@ -179650,7 +172693,7 @@ ] }, { - "id": 16878, + "id": 16248, "luminance": 0, "opaque": true, "replaceable": false, @@ -179660,7 +172703,7 @@ ] }, { - "id": 16879, + "id": 16249, "luminance": 0, "opaque": true, "replaceable": false, @@ -179671,7 +172714,7 @@ ] }, { - "id": 16880, + "id": 16250, "luminance": 0, "opaque": true, "replaceable": false, @@ -179682,7 +172725,7 @@ ] }, { - "id": 16881, + "id": 16251, "luminance": 0, "opaque": true, "replaceable": false, @@ -179693,7 +172736,7 @@ ] }, { - "id": 16882, + "id": 16252, "luminance": 0, "opaque": true, "replaceable": false, @@ -179705,7 +172748,7 @@ ] }, { - "id": 16883, + "id": 16253, "luminance": 0, "opaque": true, "replaceable": false, @@ -179717,7 +172760,7 @@ ] }, { - "id": 16884, + "id": 16254, "luminance": 0, "opaque": true, "replaceable": false, @@ -179728,7 +172771,7 @@ ] }, { - "id": 16885, + "id": 16255, "luminance": 0, "opaque": true, "replaceable": false, @@ -179740,7 +172783,7 @@ ] }, { - "id": 16886, + "id": 16256, "luminance": 0, "opaque": true, "replaceable": false, @@ -179752,7 +172795,7 @@ ] }, { - "id": 16887, + "id": 16257, "luminance": 0, "opaque": true, "replaceable": false, @@ -179762,7 +172805,7 @@ ] }, { - "id": 16888, + "id": 16258, "luminance": 0, "opaque": true, "replaceable": false, @@ -179772,7 +172815,7 @@ ] }, { - "id": 16889, + "id": 16259, "luminance": 0, "opaque": true, "replaceable": false, @@ -179782,7 +172825,7 @@ ] }, { - "id": 16890, + "id": 16260, "luminance": 0, "opaque": true, "replaceable": false, @@ -179792,7 +172835,7 @@ ] }, { - "id": 16891, + "id": 16261, "luminance": 0, "opaque": true, "replaceable": false, @@ -179802,7 +172845,7 @@ ] }, { - "id": 16892, + "id": 16262, "luminance": 0, "opaque": true, "replaceable": false, @@ -179812,7 +172855,7 @@ ] }, { - "id": 16893, + "id": 16263, "luminance": 0, "opaque": true, "replaceable": false, @@ -179824,7 +172867,7 @@ ] }, { - "id": 16894, + "id": 16264, "luminance": 0, "opaque": true, "replaceable": false, @@ -179837,7 +172880,7 @@ ] }, { - "id": 16895, + "id": 16265, "luminance": 0, "opaque": true, "replaceable": false, @@ -179850,7 +172893,7 @@ ] }, { - "id": 16896, + "id": 16266, "luminance": 0, "opaque": true, "replaceable": false, @@ -179862,7 +172905,7 @@ ] }, { - "id": 16897, + "id": 16267, "luminance": 0, "opaque": true, "replaceable": false, @@ -179875,7 +172918,7 @@ ] }, { - "id": 16898, + "id": 16268, "luminance": 0, "opaque": true, "replaceable": false, @@ -179888,7 +172931,7 @@ ] }, { - "id": 16899, + "id": 16269, "luminance": 0, "opaque": true, "replaceable": false, @@ -179898,7 +172941,7 @@ ] }, { - "id": 16900, + "id": 16270, "luminance": 0, "opaque": true, "replaceable": false, @@ -179909,7 +172952,7 @@ ] }, { - "id": 16901, + "id": 16271, "luminance": 0, "opaque": true, "replaceable": false, @@ -179920,7 +172963,7 @@ ] }, { - "id": 16902, + "id": 16272, "luminance": 0, "opaque": true, "replaceable": false, @@ -179930,7 +172973,7 @@ ] }, { - "id": 16903, + "id": 16273, "luminance": 0, "opaque": true, "replaceable": false, @@ -179941,7 +172984,7 @@ ] }, { - "id": 16904, + "id": 16274, "luminance": 0, "opaque": true, "replaceable": false, @@ -179952,7 +172995,7 @@ ] }, { - "id": 16905, + "id": 16275, "luminance": 0, "opaque": true, "replaceable": false, @@ -179964,7 +173007,7 @@ ] }, { - "id": 16906, + "id": 16276, "luminance": 0, "opaque": true, "replaceable": false, @@ -179977,7 +173020,7 @@ ] }, { - "id": 16907, + "id": 16277, "luminance": 0, "opaque": true, "replaceable": false, @@ -179990,7 +173033,7 @@ ] }, { - "id": 16908, + "id": 16278, "luminance": 0, "opaque": true, "replaceable": false, @@ -180002,7 +173045,7 @@ ] }, { - "id": 16909, + "id": 16279, "luminance": 0, "opaque": true, "replaceable": false, @@ -180015,7 +173058,7 @@ ] }, { - "id": 16910, + "id": 16280, "luminance": 0, "opaque": true, "replaceable": false, @@ -180028,7 +173071,7 @@ ] }, { - "id": 16911, + "id": 16281, "luminance": 0, "opaque": true, "replaceable": false, @@ -180038,7 +173081,7 @@ ] }, { - "id": 16912, + "id": 16282, "luminance": 0, "opaque": true, "replaceable": false, @@ -180049,7 +173092,7 @@ ] }, { - "id": 16913, + "id": 16283, "luminance": 0, "opaque": true, "replaceable": false, @@ -180060,7 +173103,7 @@ ] }, { - "id": 16914, + "id": 16284, "luminance": 0, "opaque": true, "replaceable": false, @@ -180070,7 +173113,7 @@ ] }, { - "id": 16915, + "id": 16285, "luminance": 0, "opaque": true, "replaceable": false, @@ -180081,7 +173124,7 @@ ] }, { - "id": 16916, + "id": 16286, "luminance": 0, "opaque": true, "replaceable": false, @@ -180094,9 +173137,9 @@ ] }, { - "id": 764, - "name": "red_nether_brick_wall", - "translation_key": "block.minecraft.red_nether_brick_wall", + "id": 766, + "name": "nether_brick_wall", + "translation_key": "block.minecraft.nether_brick_wall", "item_id": 384, "properties": [ { @@ -180146,10 +173189,10 @@ ] } ], - "default_state_id": 16920, + "default_state_id": 16290, "states": [ { - "id": 16917, + "id": 16287, "luminance": 0, "opaque": true, "replaceable": false, @@ -180158,7 +173201,7 @@ ] }, { - "id": 16918, + "id": 16288, "luminance": 0, "opaque": true, "replaceable": false, @@ -180169,7 +173212,7 @@ ] }, { - "id": 16919, + "id": 16289, "luminance": 0, "opaque": true, "replaceable": false, @@ -180180,7 +173223,7 @@ ] }, { - "id": 16920, + "id": 16290, "luminance": 0, "opaque": true, "replaceable": false, @@ -180189,7 +173232,7 @@ ] }, { - "id": 16921, + "id": 16291, "luminance": 0, "opaque": true, "replaceable": false, @@ -180200,7 +173243,7 @@ ] }, { - "id": 16922, + "id": 16292, "luminance": 0, "opaque": true, "replaceable": false, @@ -180211,14 +173254,14 @@ ] }, { - "id": 16923, + "id": 16293, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 16924, + "id": 16294, "luminance": 0, "opaque": true, "replaceable": false, @@ -180227,7 +173270,7 @@ ] }, { - "id": 16925, + "id": 16295, "luminance": 0, "opaque": true, "replaceable": false, @@ -180236,14 +173279,14 @@ ] }, { - "id": 16926, + "id": 16296, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 16927, + "id": 16297, "luminance": 0, "opaque": true, "replaceable": false, @@ -180252,7 +173295,7 @@ ] }, { - "id": 16928, + "id": 16298, "luminance": 0, "opaque": true, "replaceable": false, @@ -180261,7 +173304,7 @@ ] }, { - "id": 16929, + "id": 16299, "luminance": 0, "opaque": true, "replaceable": false, @@ -180271,7 +173314,7 @@ ] }, { - "id": 16930, + "id": 16300, "luminance": 0, "opaque": true, "replaceable": false, @@ -180283,7 +173326,7 @@ ] }, { - "id": 16931, + "id": 16301, "luminance": 0, "opaque": true, "replaceable": false, @@ -180295,7 +173338,7 @@ ] }, { - "id": 16932, + "id": 16302, "luminance": 0, "opaque": true, "replaceable": false, @@ -180305,7 +173348,7 @@ ] }, { - "id": 16933, + "id": 16303, "luminance": 0, "opaque": true, "replaceable": false, @@ -180317,7 +173360,7 @@ ] }, { - "id": 16934, + "id": 16304, "luminance": 0, "opaque": true, "replaceable": false, @@ -180329,7 +173372,7 @@ ] }, { - "id": 16935, + "id": 16305, "luminance": 0, "opaque": true, "replaceable": false, @@ -180338,7 +173381,7 @@ ] }, { - "id": 16936, + "id": 16306, "luminance": 0, "opaque": true, "replaceable": false, @@ -180348,7 +173391,7 @@ ] }, { - "id": 16937, + "id": 16307, "luminance": 0, "opaque": true, "replaceable": false, @@ -180358,7 +173401,7 @@ ] }, { - "id": 16938, + "id": 16308, "luminance": 0, "opaque": true, "replaceable": false, @@ -180367,7 +173410,7 @@ ] }, { - "id": 16939, + "id": 16309, "luminance": 0, "opaque": true, "replaceable": false, @@ -180377,7 +173420,7 @@ ] }, { - "id": 16940, + "id": 16310, "luminance": 0, "opaque": true, "replaceable": false, @@ -180387,7 +173430,7 @@ ] }, { - "id": 16941, + "id": 16311, "luminance": 0, "opaque": true, "replaceable": false, @@ -180397,7 +173440,7 @@ ] }, { - "id": 16942, + "id": 16312, "luminance": 0, "opaque": true, "replaceable": false, @@ -180409,7 +173452,7 @@ ] }, { - "id": 16943, + "id": 16313, "luminance": 0, "opaque": true, "replaceable": false, @@ -180421,7 +173464,7 @@ ] }, { - "id": 16944, + "id": 16314, "luminance": 0, "opaque": true, "replaceable": false, @@ -180431,7 +173474,7 @@ ] }, { - "id": 16945, + "id": 16315, "luminance": 0, "opaque": true, "replaceable": false, @@ -180443,7 +173486,7 @@ ] }, { - "id": 16946, + "id": 16316, "luminance": 0, "opaque": true, "replaceable": false, @@ -180455,7 +173498,7 @@ ] }, { - "id": 16947, + "id": 16317, "luminance": 0, "opaque": true, "replaceable": false, @@ -180464,7 +173507,7 @@ ] }, { - "id": 16948, + "id": 16318, "luminance": 0, "opaque": true, "replaceable": false, @@ -180474,7 +173517,7 @@ ] }, { - "id": 16949, + "id": 16319, "luminance": 0, "opaque": true, "replaceable": false, @@ -180484,7 +173527,7 @@ ] }, { - "id": 16950, + "id": 16320, "luminance": 0, "opaque": true, "replaceable": false, @@ -180493,7 +173536,7 @@ ] }, { - "id": 16951, + "id": 16321, "luminance": 0, "opaque": true, "replaceable": false, @@ -180503,7 +173546,7 @@ ] }, { - "id": 16952, + "id": 16322, "luminance": 0, "opaque": true, "replaceable": false, @@ -180513,7 +173556,7 @@ ] }, { - "id": 16953, + "id": 16323, "luminance": 0, "opaque": true, "replaceable": false, @@ -180523,7 +173566,7 @@ ] }, { - "id": 16954, + "id": 16324, "luminance": 0, "opaque": true, "replaceable": false, @@ -180535,7 +173578,7 @@ ] }, { - "id": 16955, + "id": 16325, "luminance": 0, "opaque": true, "replaceable": false, @@ -180547,7 +173590,7 @@ ] }, { - "id": 16956, + "id": 16326, "luminance": 0, "opaque": true, "replaceable": false, @@ -180557,7 +173600,7 @@ ] }, { - "id": 16957, + "id": 16327, "luminance": 0, "opaque": true, "replaceable": false, @@ -180569,7 +173612,7 @@ ] }, { - "id": 16958, + "id": 16328, "luminance": 0, "opaque": true, "replaceable": false, @@ -180581,7 +173624,7 @@ ] }, { - "id": 16959, + "id": 16329, "luminance": 0, "opaque": true, "replaceable": false, @@ -180590,7 +173633,7 @@ ] }, { - "id": 16960, + "id": 16330, "luminance": 0, "opaque": true, "replaceable": false, @@ -180600,7 +173643,7 @@ ] }, { - "id": 16961, + "id": 16331, "luminance": 0, "opaque": true, "replaceable": false, @@ -180610,7 +173653,7 @@ ] }, { - "id": 16962, + "id": 16332, "luminance": 0, "opaque": true, "replaceable": false, @@ -180619,7 +173662,7 @@ ] }, { - "id": 16963, + "id": 16333, "luminance": 0, "opaque": true, "replaceable": false, @@ -180629,7 +173672,7 @@ ] }, { - "id": 16964, + "id": 16334, "luminance": 0, "opaque": true, "replaceable": false, @@ -180639,7 +173682,7 @@ ] }, { - "id": 16965, + "id": 16335, "luminance": 0, "opaque": true, "replaceable": false, @@ -180650,7 +173693,7 @@ ] }, { - "id": 16966, + "id": 16336, "luminance": 0, "opaque": true, "replaceable": false, @@ -180663,7 +173706,7 @@ ] }, { - "id": 16967, + "id": 16337, "luminance": 0, "opaque": true, "replaceable": false, @@ -180676,7 +173719,7 @@ ] }, { - "id": 16968, + "id": 16338, "luminance": 0, "opaque": true, "replaceable": false, @@ -180687,7 +173730,7 @@ ] }, { - "id": 16969, + "id": 16339, "luminance": 0, "opaque": true, "replaceable": false, @@ -180700,7 +173743,7 @@ ] }, { - "id": 16970, + "id": 16340, "luminance": 0, "opaque": true, "replaceable": false, @@ -180713,7 +173756,7 @@ ] }, { - "id": 16971, + "id": 16341, "luminance": 0, "opaque": true, "replaceable": false, @@ -180722,7 +173765,7 @@ ] }, { - "id": 16972, + "id": 16342, "luminance": 0, "opaque": true, "replaceable": false, @@ -180733,7 +173776,7 @@ ] }, { - "id": 16973, + "id": 16343, "luminance": 0, "opaque": true, "replaceable": false, @@ -180744,7 +173787,7 @@ ] }, { - "id": 16974, + "id": 16344, "luminance": 0, "opaque": true, "replaceable": false, @@ -180753,7 +173796,7 @@ ] }, { - "id": 16975, + "id": 16345, "luminance": 0, "opaque": true, "replaceable": false, @@ -180764,7 +173807,7 @@ ] }, { - "id": 16976, + "id": 16346, "luminance": 0, "opaque": true, "replaceable": false, @@ -180775,7 +173818,7 @@ ] }, { - "id": 16977, + "id": 16347, "luminance": 0, "opaque": true, "replaceable": false, @@ -180786,7 +173829,7 @@ ] }, { - "id": 16978, + "id": 16348, "luminance": 0, "opaque": true, "replaceable": false, @@ -180799,7 +173842,7 @@ ] }, { - "id": 16979, + "id": 16349, "luminance": 0, "opaque": true, "replaceable": false, @@ -180812,7 +173855,7 @@ ] }, { - "id": 16980, + "id": 16350, "luminance": 0, "opaque": true, "replaceable": false, @@ -180823,7 +173866,7 @@ ] }, { - "id": 16981, + "id": 16351, "luminance": 0, "opaque": true, "replaceable": false, @@ -180836,7 +173879,7 @@ ] }, { - "id": 16982, + "id": 16352, "luminance": 0, "opaque": true, "replaceable": false, @@ -180849,7 +173892,7 @@ ] }, { - "id": 16983, + "id": 16353, "luminance": 0, "opaque": true, "replaceable": false, @@ -180858,7 +173901,7 @@ ] }, { - "id": 16984, + "id": 16354, "luminance": 0, "opaque": true, "replaceable": false, @@ -180869,7 +173912,7 @@ ] }, { - "id": 16985, + "id": 16355, "luminance": 0, "opaque": true, "replaceable": false, @@ -180880,7 +173923,7 @@ ] }, { - "id": 16986, + "id": 16356, "luminance": 0, "opaque": true, "replaceable": false, @@ -180889,7 +173932,7 @@ ] }, { - "id": 16987, + "id": 16357, "luminance": 0, "opaque": true, "replaceable": false, @@ -180900,7 +173943,7 @@ ] }, { - "id": 16988, + "id": 16358, "luminance": 0, "opaque": true, "replaceable": false, @@ -180911,7 +173954,7 @@ ] }, { - "id": 16989, + "id": 16359, "luminance": 0, "opaque": true, "replaceable": false, @@ -180921,7 +173964,7 @@ ] }, { - "id": 16990, + "id": 16360, "luminance": 0, "opaque": true, "replaceable": false, @@ -180933,7 +173976,7 @@ ] }, { - "id": 16991, + "id": 16361, "luminance": 0, "opaque": true, "replaceable": false, @@ -180945,7 +173988,7 @@ ] }, { - "id": 16992, + "id": 16362, "luminance": 0, "opaque": true, "replaceable": false, @@ -180955,7 +173998,7 @@ ] }, { - "id": 16993, + "id": 16363, "luminance": 0, "opaque": true, "replaceable": false, @@ -180967,7 +174010,7 @@ ] }, { - "id": 16994, + "id": 16364, "luminance": 0, "opaque": true, "replaceable": false, @@ -180979,7 +174022,7 @@ ] }, { - "id": 16995, + "id": 16365, "luminance": 0, "opaque": true, "replaceable": false, @@ -180988,7 +174031,7 @@ ] }, { - "id": 16996, + "id": 16366, "luminance": 0, "opaque": true, "replaceable": false, @@ -180998,7 +174041,7 @@ ] }, { - "id": 16997, + "id": 16367, "luminance": 0, "opaque": true, "replaceable": false, @@ -181008,7 +174051,7 @@ ] }, { - "id": 16998, + "id": 16368, "luminance": 0, "opaque": true, "replaceable": false, @@ -181017,7 +174060,7 @@ ] }, { - "id": 16999, + "id": 16369, "luminance": 0, "opaque": true, "replaceable": false, @@ -181027,7 +174070,7 @@ ] }, { - "id": 17000, + "id": 16370, "luminance": 0, "opaque": true, "replaceable": false, @@ -181037,7 +174080,7 @@ ] }, { - "id": 17001, + "id": 16371, "luminance": 0, "opaque": true, "replaceable": false, @@ -181048,7 +174091,7 @@ ] }, { - "id": 17002, + "id": 16372, "luminance": 0, "opaque": true, "replaceable": false, @@ -181061,7 +174104,7 @@ ] }, { - "id": 17003, + "id": 16373, "luminance": 0, "opaque": true, "replaceable": false, @@ -181074,7 +174117,7 @@ ] }, { - "id": 17004, + "id": 16374, "luminance": 0, "opaque": true, "replaceable": false, @@ -181085,7 +174128,7 @@ ] }, { - "id": 17005, + "id": 16375, "luminance": 0, "opaque": true, "replaceable": false, @@ -181098,7 +174141,7 @@ ] }, { - "id": 17006, + "id": 16376, "luminance": 0, "opaque": true, "replaceable": false, @@ -181111,7 +174154,7 @@ ] }, { - "id": 17007, + "id": 16377, "luminance": 0, "opaque": true, "replaceable": false, @@ -181120,7 +174163,7 @@ ] }, { - "id": 17008, + "id": 16378, "luminance": 0, "opaque": true, "replaceable": false, @@ -181131,7 +174174,7 @@ ] }, { - "id": 17009, + "id": 16379, "luminance": 0, "opaque": true, "replaceable": false, @@ -181142,7 +174185,7 @@ ] }, { - "id": 17010, + "id": 16380, "luminance": 0, "opaque": true, "replaceable": false, @@ -181151,7 +174194,7 @@ ] }, { - "id": 17011, + "id": 16381, "luminance": 0, "opaque": true, "replaceable": false, @@ -181162,7 +174205,7 @@ ] }, { - "id": 17012, + "id": 16382, "luminance": 0, "opaque": true, "replaceable": false, @@ -181173,7 +174216,7 @@ ] }, { - "id": 17013, + "id": 16383, "luminance": 0, "opaque": true, "replaceable": false, @@ -181184,7 +174227,7 @@ ] }, { - "id": 17014, + "id": 16384, "luminance": 0, "opaque": true, "replaceable": false, @@ -181197,7 +174240,7 @@ ] }, { - "id": 17015, + "id": 16385, "luminance": 0, "opaque": true, "replaceable": false, @@ -181210,7 +174253,7 @@ ] }, { - "id": 17016, + "id": 16386, "luminance": 0, "opaque": true, "replaceable": false, @@ -181221,7 +174264,7 @@ ] }, { - "id": 17017, + "id": 16387, "luminance": 0, "opaque": true, "replaceable": false, @@ -181234,7 +174277,7 @@ ] }, { - "id": 17018, + "id": 16388, "luminance": 0, "opaque": true, "replaceable": false, @@ -181247,7 +174290,7 @@ ] }, { - "id": 17019, + "id": 16389, "luminance": 0, "opaque": true, "replaceable": false, @@ -181256,7 +174299,7 @@ ] }, { - "id": 17020, + "id": 16390, "luminance": 0, "opaque": true, "replaceable": false, @@ -181267,7 +174310,7 @@ ] }, { - "id": 17021, + "id": 16391, "luminance": 0, "opaque": true, "replaceable": false, @@ -181278,7 +174321,7 @@ ] }, { - "id": 17022, + "id": 16392, "luminance": 0, "opaque": true, "replaceable": false, @@ -181287,7 +174330,7 @@ ] }, { - "id": 17023, + "id": 16393, "luminance": 0, "opaque": true, "replaceable": false, @@ -181298,7 +174341,7 @@ ] }, { - "id": 17024, + "id": 16394, "luminance": 0, "opaque": true, "replaceable": false, @@ -181309,7 +174352,7 @@ ] }, { - "id": 17025, + "id": 16395, "luminance": 0, "opaque": true, "replaceable": false, @@ -181319,7 +174362,7 @@ ] }, { - "id": 17026, + "id": 16396, "luminance": 0, "opaque": true, "replaceable": false, @@ -181330,7 +174373,7 @@ ] }, { - "id": 17027, + "id": 16397, "luminance": 0, "opaque": true, "replaceable": false, @@ -181341,7 +174384,7 @@ ] }, { - "id": 17028, + "id": 16398, "luminance": 0, "opaque": true, "replaceable": false, @@ -181351,7 +174394,7 @@ ] }, { - "id": 17029, + "id": 16399, "luminance": 0, "opaque": true, "replaceable": false, @@ -181362,7 +174405,7 @@ ] }, { - "id": 17030, + "id": 16400, "luminance": 0, "opaque": true, "replaceable": false, @@ -181373,7 +174416,7 @@ ] }, { - "id": 17031, + "id": 16401, "luminance": 0, "opaque": true, "replaceable": false, @@ -181382,7 +174425,7 @@ ] }, { - "id": 17032, + "id": 16402, "luminance": 0, "opaque": true, "replaceable": false, @@ -181391,7 +174434,7 @@ ] }, { - "id": 17033, + "id": 16403, "luminance": 0, "opaque": true, "replaceable": false, @@ -181400,7 +174443,7 @@ ] }, { - "id": 17034, + "id": 16404, "luminance": 0, "opaque": true, "replaceable": false, @@ -181409,7 +174452,7 @@ ] }, { - "id": 17035, + "id": 16405, "luminance": 0, "opaque": true, "replaceable": false, @@ -181418,7 +174461,7 @@ ] }, { - "id": 17036, + "id": 16406, "luminance": 0, "opaque": true, "replaceable": false, @@ -181427,7 +174470,7 @@ ] }, { - "id": 17037, + "id": 16407, "luminance": 0, "opaque": true, "replaceable": false, @@ -181438,7 +174481,7 @@ ] }, { - "id": 17038, + "id": 16408, "luminance": 0, "opaque": true, "replaceable": false, @@ -181450,7 +174493,7 @@ ] }, { - "id": 17039, + "id": 16409, "luminance": 0, "opaque": true, "replaceable": false, @@ -181462,7 +174505,7 @@ ] }, { - "id": 17040, + "id": 16410, "luminance": 0, "opaque": true, "replaceable": false, @@ -181473,7 +174516,7 @@ ] }, { - "id": 17041, + "id": 16411, "luminance": 0, "opaque": true, "replaceable": false, @@ -181485,7 +174528,7 @@ ] }, { - "id": 17042, + "id": 16412, "luminance": 0, "opaque": true, "replaceable": false, @@ -181497,7 +174540,7 @@ ] }, { - "id": 17043, + "id": 16413, "luminance": 0, "opaque": true, "replaceable": false, @@ -181507,7 +174550,7 @@ ] }, { - "id": 17044, + "id": 16414, "luminance": 0, "opaque": true, "replaceable": false, @@ -181517,7 +174560,7 @@ ] }, { - "id": 17045, + "id": 16415, "luminance": 0, "opaque": true, "replaceable": false, @@ -181527,7 +174570,7 @@ ] }, { - "id": 17046, + "id": 16416, "luminance": 0, "opaque": true, "replaceable": false, @@ -181537,7 +174580,7 @@ ] }, { - "id": 17047, + "id": 16417, "luminance": 0, "opaque": true, "replaceable": false, @@ -181547,7 +174590,7 @@ ] }, { - "id": 17048, + "id": 16418, "luminance": 0, "opaque": true, "replaceable": false, @@ -181557,7 +174600,7 @@ ] }, { - "id": 17049, + "id": 16419, "luminance": 0, "opaque": true, "replaceable": false, @@ -181568,7 +174611,7 @@ ] }, { - "id": 17050, + "id": 16420, "luminance": 0, "opaque": true, "replaceable": false, @@ -181580,7 +174623,7 @@ ] }, { - "id": 17051, + "id": 16421, "luminance": 0, "opaque": true, "replaceable": false, @@ -181592,7 +174635,7 @@ ] }, { - "id": 17052, + "id": 16422, "luminance": 0, "opaque": true, "replaceable": false, @@ -181603,7 +174646,7 @@ ] }, { - "id": 17053, + "id": 16423, "luminance": 0, "opaque": true, "replaceable": false, @@ -181615,7 +174658,7 @@ ] }, { - "id": 17054, + "id": 16424, "luminance": 0, "opaque": true, "replaceable": false, @@ -181627,7 +174670,7 @@ ] }, { - "id": 17055, + "id": 16425, "luminance": 0, "opaque": true, "replaceable": false, @@ -181637,7 +174680,7 @@ ] }, { - "id": 17056, + "id": 16426, "luminance": 0, "opaque": true, "replaceable": false, @@ -181647,7 +174690,7 @@ ] }, { - "id": 17057, + "id": 16427, "luminance": 0, "opaque": true, "replaceable": false, @@ -181657,7 +174700,7 @@ ] }, { - "id": 17058, + "id": 16428, "luminance": 0, "opaque": true, "replaceable": false, @@ -181667,7 +174710,7 @@ ] }, { - "id": 17059, + "id": 16429, "luminance": 0, "opaque": true, "replaceable": false, @@ -181677,7 +174720,7 @@ ] }, { - "id": 17060, + "id": 16430, "luminance": 0, "opaque": true, "replaceable": false, @@ -181687,7 +174730,7 @@ ] }, { - "id": 17061, + "id": 16431, "luminance": 0, "opaque": true, "replaceable": false, @@ -181698,7 +174741,7 @@ ] }, { - "id": 17062, + "id": 16432, "luminance": 0, "opaque": true, "replaceable": false, @@ -181710,7 +174753,7 @@ ] }, { - "id": 17063, + "id": 16433, "luminance": 0, "opaque": true, "replaceable": false, @@ -181722,7 +174765,7 @@ ] }, { - "id": 17064, + "id": 16434, "luminance": 0, "opaque": true, "replaceable": false, @@ -181733,7 +174776,7 @@ ] }, { - "id": 17065, + "id": 16435, "luminance": 0, "opaque": true, "replaceable": false, @@ -181745,7 +174788,7 @@ ] }, { - "id": 17066, + "id": 16436, "luminance": 0, "opaque": true, "replaceable": false, @@ -181757,7 +174800,7 @@ ] }, { - "id": 17067, + "id": 16437, "luminance": 0, "opaque": true, "replaceable": false, @@ -181767,7 +174810,7 @@ ] }, { - "id": 17068, + "id": 16438, "luminance": 0, "opaque": true, "replaceable": false, @@ -181777,7 +174820,7 @@ ] }, { - "id": 17069, + "id": 16439, "luminance": 0, "opaque": true, "replaceable": false, @@ -181787,7 +174830,7 @@ ] }, { - "id": 17070, + "id": 16440, "luminance": 0, "opaque": true, "replaceable": false, @@ -181797,7 +174840,7 @@ ] }, { - "id": 17071, + "id": 16441, "luminance": 0, "opaque": true, "replaceable": false, @@ -181807,7 +174850,7 @@ ] }, { - "id": 17072, + "id": 16442, "luminance": 0, "opaque": true, "replaceable": false, @@ -181817,7 +174860,7 @@ ] }, { - "id": 17073, + "id": 16443, "luminance": 0, "opaque": true, "replaceable": false, @@ -181829,7 +174872,7 @@ ] }, { - "id": 17074, + "id": 16444, "luminance": 0, "opaque": true, "replaceable": false, @@ -181842,7 +174885,7 @@ ] }, { - "id": 17075, + "id": 16445, "luminance": 0, "opaque": true, "replaceable": false, @@ -181855,7 +174898,7 @@ ] }, { - "id": 17076, + "id": 16446, "luminance": 0, "opaque": true, "replaceable": false, @@ -181867,7 +174910,7 @@ ] }, { - "id": 17077, + "id": 16447, "luminance": 0, "opaque": true, "replaceable": false, @@ -181880,7 +174923,7 @@ ] }, { - "id": 17078, + "id": 16448, "luminance": 0, "opaque": true, "replaceable": false, @@ -181893,7 +174936,7 @@ ] }, { - "id": 17079, + "id": 16449, "luminance": 0, "opaque": true, "replaceable": false, @@ -181903,7 +174946,7 @@ ] }, { - "id": 17080, + "id": 16450, "luminance": 0, "opaque": true, "replaceable": false, @@ -181914,7 +174957,7 @@ ] }, { - "id": 17081, + "id": 16451, "luminance": 0, "opaque": true, "replaceable": false, @@ -181925,7 +174968,7 @@ ] }, { - "id": 17082, + "id": 16452, "luminance": 0, "opaque": true, "replaceable": false, @@ -181935,7 +174978,7 @@ ] }, { - "id": 17083, + "id": 16453, "luminance": 0, "opaque": true, "replaceable": false, @@ -181946,7 +174989,7 @@ ] }, { - "id": 17084, + "id": 16454, "luminance": 0, "opaque": true, "replaceable": false, @@ -181957,7 +175000,7 @@ ] }, { - "id": 17085, + "id": 16455, "luminance": 0, "opaque": true, "replaceable": false, @@ -181969,7 +175012,7 @@ ] }, { - "id": 17086, + "id": 16456, "luminance": 0, "opaque": true, "replaceable": false, @@ -181982,7 +175025,7 @@ ] }, { - "id": 17087, + "id": 16457, "luminance": 0, "opaque": true, "replaceable": false, @@ -181995,7 +175038,7 @@ ] }, { - "id": 17088, + "id": 16458, "luminance": 0, "opaque": true, "replaceable": false, @@ -182007,7 +175050,7 @@ ] }, { - "id": 17089, + "id": 16459, "luminance": 0, "opaque": true, "replaceable": false, @@ -182020,7 +175063,7 @@ ] }, { - "id": 17090, + "id": 16460, "luminance": 0, "opaque": true, "replaceable": false, @@ -182033,7 +175076,7 @@ ] }, { - "id": 17091, + "id": 16461, "luminance": 0, "opaque": true, "replaceable": false, @@ -182043,7 +175086,7 @@ ] }, { - "id": 17092, + "id": 16462, "luminance": 0, "opaque": true, "replaceable": false, @@ -182054,7 +175097,7 @@ ] }, { - "id": 17093, + "id": 16463, "luminance": 0, "opaque": true, "replaceable": false, @@ -182065,7 +175108,7 @@ ] }, { - "id": 17094, + "id": 16464, "luminance": 0, "opaque": true, "replaceable": false, @@ -182075,7 +175118,7 @@ ] }, { - "id": 17095, + "id": 16465, "luminance": 0, "opaque": true, "replaceable": false, @@ -182086,7 +175129,7 @@ ] }, { - "id": 17096, + "id": 16466, "luminance": 0, "opaque": true, "replaceable": false, @@ -182097,7 +175140,7 @@ ] }, { - "id": 17097, + "id": 16467, "luminance": 0, "opaque": true, "replaceable": false, @@ -182108,7 +175151,7 @@ ] }, { - "id": 17098, + "id": 16468, "luminance": 0, "opaque": true, "replaceable": false, @@ -182120,7 +175163,7 @@ ] }, { - "id": 17099, + "id": 16469, "luminance": 0, "opaque": true, "replaceable": false, @@ -182132,7 +175175,7 @@ ] }, { - "id": 17100, + "id": 16470, "luminance": 0, "opaque": true, "replaceable": false, @@ -182143,7 +175186,7 @@ ] }, { - "id": 17101, + "id": 16471, "luminance": 0, "opaque": true, "replaceable": false, @@ -182155,7 +175198,7 @@ ] }, { - "id": 17102, + "id": 16472, "luminance": 0, "opaque": true, "replaceable": false, @@ -182167,7 +175210,7 @@ ] }, { - "id": 17103, + "id": 16473, "luminance": 0, "opaque": true, "replaceable": false, @@ -182177,7 +175220,7 @@ ] }, { - "id": 17104, + "id": 16474, "luminance": 0, "opaque": true, "replaceable": false, @@ -182187,7 +175230,7 @@ ] }, { - "id": 17105, + "id": 16475, "luminance": 0, "opaque": true, "replaceable": false, @@ -182197,7 +175240,7 @@ ] }, { - "id": 17106, + "id": 16476, "luminance": 0, "opaque": true, "replaceable": false, @@ -182207,7 +175250,7 @@ ] }, { - "id": 17107, + "id": 16477, "luminance": 0, "opaque": true, "replaceable": false, @@ -182217,7 +175260,7 @@ ] }, { - "id": 17108, + "id": 16478, "luminance": 0, "opaque": true, "replaceable": false, @@ -182227,7 +175270,7 @@ ] }, { - "id": 17109, + "id": 16479, "luminance": 0, "opaque": true, "replaceable": false, @@ -182239,7 +175282,7 @@ ] }, { - "id": 17110, + "id": 16480, "luminance": 0, "opaque": true, "replaceable": false, @@ -182252,7 +175295,7 @@ ] }, { - "id": 17111, + "id": 16481, "luminance": 0, "opaque": true, "replaceable": false, @@ -182265,7 +175308,7 @@ ] }, { - "id": 17112, + "id": 16482, "luminance": 0, "opaque": true, "replaceable": false, @@ -182277,7 +175320,7 @@ ] }, { - "id": 17113, + "id": 16483, "luminance": 0, "opaque": true, "replaceable": false, @@ -182290,7 +175333,7 @@ ] }, { - "id": 17114, + "id": 16484, "luminance": 0, "opaque": true, "replaceable": false, @@ -182303,7 +175346,7 @@ ] }, { - "id": 17115, + "id": 16485, "luminance": 0, "opaque": true, "replaceable": false, @@ -182313,7 +175356,7 @@ ] }, { - "id": 17116, + "id": 16486, "luminance": 0, "opaque": true, "replaceable": false, @@ -182324,7 +175367,7 @@ ] }, { - "id": 17117, + "id": 16487, "luminance": 0, "opaque": true, "replaceable": false, @@ -182335,7 +175378,7 @@ ] }, { - "id": 17118, + "id": 16488, "luminance": 0, "opaque": true, "replaceable": false, @@ -182345,7 +175388,7 @@ ] }, { - "id": 17119, + "id": 16489, "luminance": 0, "opaque": true, "replaceable": false, @@ -182356,7 +175399,7 @@ ] }, { - "id": 17120, + "id": 16490, "luminance": 0, "opaque": true, "replaceable": false, @@ -182367,7 +175410,7 @@ ] }, { - "id": 17121, + "id": 16491, "luminance": 0, "opaque": true, "replaceable": false, @@ -182379,7 +175422,7 @@ ] }, { - "id": 17122, + "id": 16492, "luminance": 0, "opaque": true, "replaceable": false, @@ -182392,7 +175435,7 @@ ] }, { - "id": 17123, + "id": 16493, "luminance": 0, "opaque": true, "replaceable": false, @@ -182405,7 +175448,7 @@ ] }, { - "id": 17124, + "id": 16494, "luminance": 0, "opaque": true, "replaceable": false, @@ -182417,7 +175460,7 @@ ] }, { - "id": 17125, + "id": 16495, "luminance": 0, "opaque": true, "replaceable": false, @@ -182430,7 +175473,7 @@ ] }, { - "id": 17126, + "id": 16496, "luminance": 0, "opaque": true, "replaceable": false, @@ -182443,7 +175486,7 @@ ] }, { - "id": 17127, + "id": 16497, "luminance": 0, "opaque": true, "replaceable": false, @@ -182453,7 +175496,7 @@ ] }, { - "id": 17128, + "id": 16498, "luminance": 0, "opaque": true, "replaceable": false, @@ -182464,7 +175507,7 @@ ] }, { - "id": 17129, + "id": 16499, "luminance": 0, "opaque": true, "replaceable": false, @@ -182475,7 +175518,7 @@ ] }, { - "id": 17130, + "id": 16500, "luminance": 0, "opaque": true, "replaceable": false, @@ -182485,7 +175528,7 @@ ] }, { - "id": 17131, + "id": 16501, "luminance": 0, "opaque": true, "replaceable": false, @@ -182496,7 +175539,7 @@ ] }, { - "id": 17132, + "id": 16502, "luminance": 0, "opaque": true, "replaceable": false, @@ -182507,7 +175550,7 @@ ] }, { - "id": 17133, + "id": 16503, "luminance": 0, "opaque": true, "replaceable": false, @@ -182517,7 +175560,7 @@ ] }, { - "id": 17134, + "id": 16504, "luminance": 0, "opaque": true, "replaceable": false, @@ -182528,7 +175571,7 @@ ] }, { - "id": 17135, + "id": 16505, "luminance": 0, "opaque": true, "replaceable": false, @@ -182539,7 +175582,7 @@ ] }, { - "id": 17136, + "id": 16506, "luminance": 0, "opaque": true, "replaceable": false, @@ -182549,7 +175592,7 @@ ] }, { - "id": 17137, + "id": 16507, "luminance": 0, "opaque": true, "replaceable": false, @@ -182560,7 +175603,7 @@ ] }, { - "id": 17138, + "id": 16508, "luminance": 0, "opaque": true, "replaceable": false, @@ -182571,7 +175614,7 @@ ] }, { - "id": 17139, + "id": 16509, "luminance": 0, "opaque": true, "replaceable": false, @@ -182580,7 +175623,7 @@ ] }, { - "id": 17140, + "id": 16510, "luminance": 0, "opaque": true, "replaceable": false, @@ -182589,7 +175632,7 @@ ] }, { - "id": 17141, + "id": 16511, "luminance": 0, "opaque": true, "replaceable": false, @@ -182598,7 +175641,7 @@ ] }, { - "id": 17142, + "id": 16512, "luminance": 0, "opaque": true, "replaceable": false, @@ -182607,7 +175650,7 @@ ] }, { - "id": 17143, + "id": 16513, "luminance": 0, "opaque": true, "replaceable": false, @@ -182616,7 +175659,7 @@ ] }, { - "id": 17144, + "id": 16514, "luminance": 0, "opaque": true, "replaceable": false, @@ -182625,7 +175668,7 @@ ] }, { - "id": 17145, + "id": 16515, "luminance": 0, "opaque": true, "replaceable": false, @@ -182636,7 +175679,7 @@ ] }, { - "id": 17146, + "id": 16516, "luminance": 0, "opaque": true, "replaceable": false, @@ -182648,7 +175691,7 @@ ] }, { - "id": 17147, + "id": 16517, "luminance": 0, "opaque": true, "replaceable": false, @@ -182660,7 +175703,7 @@ ] }, { - "id": 17148, + "id": 16518, "luminance": 0, "opaque": true, "replaceable": false, @@ -182671,7 +175714,7 @@ ] }, { - "id": 17149, + "id": 16519, "luminance": 0, "opaque": true, "replaceable": false, @@ -182683,7 +175726,7 @@ ] }, { - "id": 17150, + "id": 16520, "luminance": 0, "opaque": true, "replaceable": false, @@ -182695,7 +175738,7 @@ ] }, { - "id": 17151, + "id": 16521, "luminance": 0, "opaque": true, "replaceable": false, @@ -182705,7 +175748,7 @@ ] }, { - "id": 17152, + "id": 16522, "luminance": 0, "opaque": true, "replaceable": false, @@ -182715,7 +175758,7 @@ ] }, { - "id": 17153, + "id": 16523, "luminance": 0, "opaque": true, "replaceable": false, @@ -182725,7 +175768,7 @@ ] }, { - "id": 17154, + "id": 16524, "luminance": 0, "opaque": true, "replaceable": false, @@ -182735,7 +175778,7 @@ ] }, { - "id": 17155, + "id": 16525, "luminance": 0, "opaque": true, "replaceable": false, @@ -182745,7 +175788,7 @@ ] }, { - "id": 17156, + "id": 16526, "luminance": 0, "opaque": true, "replaceable": false, @@ -182755,7 +175798,7 @@ ] }, { - "id": 17157, + "id": 16527, "luminance": 0, "opaque": true, "replaceable": false, @@ -182766,7 +175809,7 @@ ] }, { - "id": 17158, + "id": 16528, "luminance": 0, "opaque": true, "replaceable": false, @@ -182778,7 +175821,7 @@ ] }, { - "id": 17159, + "id": 16529, "luminance": 0, "opaque": true, "replaceable": false, @@ -182790,7 +175833,7 @@ ] }, { - "id": 17160, + "id": 16530, "luminance": 0, "opaque": true, "replaceable": false, @@ -182801,7 +175844,7 @@ ] }, { - "id": 17161, + "id": 16531, "luminance": 0, "opaque": true, "replaceable": false, @@ -182813,7 +175856,7 @@ ] }, { - "id": 17162, + "id": 16532, "luminance": 0, "opaque": true, "replaceable": false, @@ -182825,7 +175868,7 @@ ] }, { - "id": 17163, + "id": 16533, "luminance": 0, "opaque": true, "replaceable": false, @@ -182835,7 +175878,7 @@ ] }, { - "id": 17164, + "id": 16534, "luminance": 0, "opaque": true, "replaceable": false, @@ -182845,7 +175888,7 @@ ] }, { - "id": 17165, + "id": 16535, "luminance": 0, "opaque": true, "replaceable": false, @@ -182855,7 +175898,7 @@ ] }, { - "id": 17166, + "id": 16536, "luminance": 0, "opaque": true, "replaceable": false, @@ -182865,7 +175908,7 @@ ] }, { - "id": 17167, + "id": 16537, "luminance": 0, "opaque": true, "replaceable": false, @@ -182875,7 +175918,7 @@ ] }, { - "id": 17168, + "id": 16538, "luminance": 0, "opaque": true, "replaceable": false, @@ -182885,7 +175928,7 @@ ] }, { - "id": 17169, + "id": 16539, "luminance": 0, "opaque": true, "replaceable": false, @@ -182896,7 +175939,7 @@ ] }, { - "id": 17170, + "id": 16540, "luminance": 0, "opaque": true, "replaceable": false, @@ -182908,7 +175951,7 @@ ] }, { - "id": 17171, + "id": 16541, "luminance": 0, "opaque": true, "replaceable": false, @@ -182920,7 +175963,7 @@ ] }, { - "id": 17172, + "id": 16542, "luminance": 0, "opaque": true, "replaceable": false, @@ -182931,7 +175974,7 @@ ] }, { - "id": 17173, + "id": 16543, "luminance": 0, "opaque": true, "replaceable": false, @@ -182943,7 +175986,7 @@ ] }, { - "id": 17174, + "id": 16544, "luminance": 0, "opaque": true, "replaceable": false, @@ -182955,7 +175998,7 @@ ] }, { - "id": 17175, + "id": 16545, "luminance": 0, "opaque": true, "replaceable": false, @@ -182965,7 +176008,7 @@ ] }, { - "id": 17176, + "id": 16546, "luminance": 0, "opaque": true, "replaceable": false, @@ -182975,7 +176018,7 @@ ] }, { - "id": 17177, + "id": 16547, "luminance": 0, "opaque": true, "replaceable": false, @@ -182985,7 +176028,7 @@ ] }, { - "id": 17178, + "id": 16548, "luminance": 0, "opaque": true, "replaceable": false, @@ -182995,7 +176038,7 @@ ] }, { - "id": 17179, + "id": 16549, "luminance": 0, "opaque": true, "replaceable": false, @@ -183005,7 +176048,7 @@ ] }, { - "id": 17180, + "id": 16550, "luminance": 0, "opaque": true, "replaceable": false, @@ -183015,7 +176058,7 @@ ] }, { - "id": 17181, + "id": 16551, "luminance": 0, "opaque": true, "replaceable": false, @@ -183027,7 +176070,7 @@ ] }, { - "id": 17182, + "id": 16552, "luminance": 0, "opaque": true, "replaceable": false, @@ -183040,7 +176083,7 @@ ] }, { - "id": 17183, + "id": 16553, "luminance": 0, "opaque": true, "replaceable": false, @@ -183053,7 +176096,7 @@ ] }, { - "id": 17184, + "id": 16554, "luminance": 0, "opaque": true, "replaceable": false, @@ -183065,7 +176108,7 @@ ] }, { - "id": 17185, + "id": 16555, "luminance": 0, "opaque": true, "replaceable": false, @@ -183078,7 +176121,7 @@ ] }, { - "id": 17186, + "id": 16556, "luminance": 0, "opaque": true, "replaceable": false, @@ -183091,7 +176134,7 @@ ] }, { - "id": 17187, + "id": 16557, "luminance": 0, "opaque": true, "replaceable": false, @@ -183101,7 +176144,7 @@ ] }, { - "id": 17188, + "id": 16558, "luminance": 0, "opaque": true, "replaceable": false, @@ -183112,7 +176155,7 @@ ] }, { - "id": 17189, + "id": 16559, "luminance": 0, "opaque": true, "replaceable": false, @@ -183123,7 +176166,7 @@ ] }, { - "id": 17190, + "id": 16560, "luminance": 0, "opaque": true, "replaceable": false, @@ -183133,7 +176176,7 @@ ] }, { - "id": 17191, + "id": 16561, "luminance": 0, "opaque": true, "replaceable": false, @@ -183144,7 +176187,7 @@ ] }, { - "id": 17192, + "id": 16562, "luminance": 0, "opaque": true, "replaceable": false, @@ -183155,7 +176198,7 @@ ] }, { - "id": 17193, + "id": 16563, "luminance": 0, "opaque": true, "replaceable": false, @@ -183167,7 +176210,7 @@ ] }, { - "id": 17194, + "id": 16564, "luminance": 0, "opaque": true, "replaceable": false, @@ -183180,7 +176223,7 @@ ] }, { - "id": 17195, + "id": 16565, "luminance": 0, "opaque": true, "replaceable": false, @@ -183193,7 +176236,7 @@ ] }, { - "id": 17196, + "id": 16566, "luminance": 0, "opaque": true, "replaceable": false, @@ -183205,7 +176248,7 @@ ] }, { - "id": 17197, + "id": 16567, "luminance": 0, "opaque": true, "replaceable": false, @@ -183218,7 +176261,7 @@ ] }, { - "id": 17198, + "id": 16568, "luminance": 0, "opaque": true, "replaceable": false, @@ -183231,7 +176274,7 @@ ] }, { - "id": 17199, + "id": 16569, "luminance": 0, "opaque": true, "replaceable": false, @@ -183241,7 +176284,7 @@ ] }, { - "id": 17200, + "id": 16570, "luminance": 0, "opaque": true, "replaceable": false, @@ -183252,7 +176295,7 @@ ] }, { - "id": 17201, + "id": 16571, "luminance": 0, "opaque": true, "replaceable": false, @@ -183263,7 +176306,7 @@ ] }, { - "id": 17202, + "id": 16572, "luminance": 0, "opaque": true, "replaceable": false, @@ -183273,7 +176316,7 @@ ] }, { - "id": 17203, + "id": 16573, "luminance": 0, "opaque": true, "replaceable": false, @@ -183284,7 +176327,7 @@ ] }, { - "id": 17204, + "id": 16574, "luminance": 0, "opaque": true, "replaceable": false, @@ -183295,7 +176338,7 @@ ] }, { - "id": 17205, + "id": 16575, "luminance": 0, "opaque": true, "replaceable": false, @@ -183306,7 +176349,7 @@ ] }, { - "id": 17206, + "id": 16576, "luminance": 0, "opaque": true, "replaceable": false, @@ -183318,7 +176361,7 @@ ] }, { - "id": 17207, + "id": 16577, "luminance": 0, "opaque": true, "replaceable": false, @@ -183330,7 +176373,7 @@ ] }, { - "id": 17208, + "id": 16578, "luminance": 0, "opaque": true, "replaceable": false, @@ -183341,7 +176384,7 @@ ] }, { - "id": 17209, + "id": 16579, "luminance": 0, "opaque": true, "replaceable": false, @@ -183353,7 +176396,7 @@ ] }, { - "id": 17210, + "id": 16580, "luminance": 0, "opaque": true, "replaceable": false, @@ -183365,7 +176408,7 @@ ] }, { - "id": 17211, + "id": 16581, "luminance": 0, "opaque": true, "replaceable": false, @@ -183375,7 +176418,7 @@ ] }, { - "id": 17212, + "id": 16582, "luminance": 0, "opaque": true, "replaceable": false, @@ -183385,7 +176428,7 @@ ] }, { - "id": 17213, + "id": 16583, "luminance": 0, "opaque": true, "replaceable": false, @@ -183395,7 +176438,7 @@ ] }, { - "id": 17214, + "id": 16584, "luminance": 0, "opaque": true, "replaceable": false, @@ -183405,7 +176448,7 @@ ] }, { - "id": 17215, + "id": 16585, "luminance": 0, "opaque": true, "replaceable": false, @@ -183415,7 +176458,7 @@ ] }, { - "id": 17216, + "id": 16586, "luminance": 0, "opaque": true, "replaceable": false, @@ -183425,7 +176468,7 @@ ] }, { - "id": 17217, + "id": 16587, "luminance": 0, "opaque": true, "replaceable": false, @@ -183437,7 +176480,7 @@ ] }, { - "id": 17218, + "id": 16588, "luminance": 0, "opaque": true, "replaceable": false, @@ -183450,7 +176493,7 @@ ] }, { - "id": 17219, + "id": 16589, "luminance": 0, "opaque": true, "replaceable": false, @@ -183463,7 +176506,7 @@ ] }, { - "id": 17220, + "id": 16590, "luminance": 0, "opaque": true, "replaceable": false, @@ -183475,7 +176518,7 @@ ] }, { - "id": 17221, + "id": 16591, "luminance": 0, "opaque": true, "replaceable": false, @@ -183488,7 +176531,7 @@ ] }, { - "id": 17222, + "id": 16592, "luminance": 0, "opaque": true, "replaceable": false, @@ -183501,7 +176544,7 @@ ] }, { - "id": 17223, + "id": 16593, "luminance": 0, "opaque": true, "replaceable": false, @@ -183511,7 +176554,7 @@ ] }, { - "id": 17224, + "id": 16594, "luminance": 0, "opaque": true, "replaceable": false, @@ -183522,7 +176565,7 @@ ] }, { - "id": 17225, + "id": 16595, "luminance": 0, "opaque": true, "replaceable": false, @@ -183533,7 +176576,7 @@ ] }, { - "id": 17226, + "id": 16596, "luminance": 0, "opaque": true, "replaceable": false, @@ -183543,7 +176586,7 @@ ] }, { - "id": 17227, + "id": 16597, "luminance": 0, "opaque": true, "replaceable": false, @@ -183554,7 +176597,7 @@ ] }, { - "id": 17228, + "id": 16598, "luminance": 0, "opaque": true, "replaceable": false, @@ -183565,7 +176608,7 @@ ] }, { - "id": 17229, + "id": 16599, "luminance": 0, "opaque": true, "replaceable": false, @@ -183577,7 +176620,7 @@ ] }, { - "id": 17230, + "id": 16600, "luminance": 0, "opaque": true, "replaceable": false, @@ -183590,7 +176633,7 @@ ] }, { - "id": 17231, + "id": 16601, "luminance": 0, "opaque": true, "replaceable": false, @@ -183603,7 +176646,7 @@ ] }, { - "id": 17232, + "id": 16602, "luminance": 0, "opaque": true, "replaceable": false, @@ -183615,7 +176658,7 @@ ] }, { - "id": 17233, + "id": 16603, "luminance": 0, "opaque": true, "replaceable": false, @@ -183628,7 +176671,7 @@ ] }, { - "id": 17234, + "id": 16604, "luminance": 0, "opaque": true, "replaceable": false, @@ -183641,7 +176684,7 @@ ] }, { - "id": 17235, + "id": 16605, "luminance": 0, "opaque": true, "replaceable": false, @@ -183651,7 +176694,7 @@ ] }, { - "id": 17236, + "id": 16606, "luminance": 0, "opaque": true, "replaceable": false, @@ -183662,7 +176705,7 @@ ] }, { - "id": 17237, + "id": 16607, "luminance": 0, "opaque": true, "replaceable": false, @@ -183673,7 +176716,7 @@ ] }, { - "id": 17238, + "id": 16608, "luminance": 0, "opaque": true, "replaceable": false, @@ -183683,7 +176726,7 @@ ] }, { - "id": 17239, + "id": 16609, "luminance": 0, "opaque": true, "replaceable": false, @@ -183694,7 +176737,7 @@ ] }, { - "id": 17240, + "id": 16610, "luminance": 0, "opaque": true, "replaceable": false, @@ -183707,9 +176750,9 @@ ] }, { - "id": 765, - "name": "sandstone_wall", - "translation_key": "block.minecraft.sandstone_wall", + "id": 767, + "name": "andesite_wall", + "translation_key": "block.minecraft.andesite_wall", "item_id": 385, "properties": [ { @@ -183759,10 +176802,10 @@ ] } ], - "default_state_id": 17244, + "default_state_id": 16614, "states": [ { - "id": 17241, + "id": 16611, "luminance": 0, "opaque": true, "replaceable": false, @@ -183771,7 +176814,7 @@ ] }, { - "id": 17242, + "id": 16612, "luminance": 0, "opaque": true, "replaceable": false, @@ -183782,7 +176825,7 @@ ] }, { - "id": 17243, + "id": 16613, "luminance": 0, "opaque": true, "replaceable": false, @@ -183793,7 +176836,7 @@ ] }, { - "id": 17244, + "id": 16614, "luminance": 0, "opaque": true, "replaceable": false, @@ -183802,7 +176845,7 @@ ] }, { - "id": 17245, + "id": 16615, "luminance": 0, "opaque": true, "replaceable": false, @@ -183813,7 +176856,7 @@ ] }, { - "id": 17246, + "id": 16616, "luminance": 0, "opaque": true, "replaceable": false, @@ -183824,14 +176867,14 @@ ] }, { - "id": 17247, + "id": 16617, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 17248, + "id": 16618, "luminance": 0, "opaque": true, "replaceable": false, @@ -183840,7 +176883,7 @@ ] }, { - "id": 17249, + "id": 16619, "luminance": 0, "opaque": true, "replaceable": false, @@ -183849,14 +176892,14 @@ ] }, { - "id": 17250, + "id": 16620, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 17251, + "id": 16621, "luminance": 0, "opaque": true, "replaceable": false, @@ -183865,7 +176908,7 @@ ] }, { - "id": 17252, + "id": 16622, "luminance": 0, "opaque": true, "replaceable": false, @@ -183874,7 +176917,7 @@ ] }, { - "id": 17253, + "id": 16623, "luminance": 0, "opaque": true, "replaceable": false, @@ -183884,7 +176927,7 @@ ] }, { - "id": 17254, + "id": 16624, "luminance": 0, "opaque": true, "replaceable": false, @@ -183896,7 +176939,7 @@ ] }, { - "id": 17255, + "id": 16625, "luminance": 0, "opaque": true, "replaceable": false, @@ -183908,7 +176951,7 @@ ] }, { - "id": 17256, + "id": 16626, "luminance": 0, "opaque": true, "replaceable": false, @@ -183918,7 +176961,7 @@ ] }, { - "id": 17257, + "id": 16627, "luminance": 0, "opaque": true, "replaceable": false, @@ -183930,7 +176973,7 @@ ] }, { - "id": 17258, + "id": 16628, "luminance": 0, "opaque": true, "replaceable": false, @@ -183942,7 +176985,7 @@ ] }, { - "id": 17259, + "id": 16629, "luminance": 0, "opaque": true, "replaceable": false, @@ -183951,7 +176994,7 @@ ] }, { - "id": 17260, + "id": 16630, "luminance": 0, "opaque": true, "replaceable": false, @@ -183961,7 +177004,7 @@ ] }, { - "id": 17261, + "id": 16631, "luminance": 0, "opaque": true, "replaceable": false, @@ -183971,7 +177014,7 @@ ] }, { - "id": 17262, + "id": 16632, "luminance": 0, "opaque": true, "replaceable": false, @@ -183980,7 +177023,7 @@ ] }, { - "id": 17263, + "id": 16633, "luminance": 0, "opaque": true, "replaceable": false, @@ -183990,7 +177033,7 @@ ] }, { - "id": 17264, + "id": 16634, "luminance": 0, "opaque": true, "replaceable": false, @@ -184000,7 +177043,7 @@ ] }, { - "id": 17265, + "id": 16635, "luminance": 0, "opaque": true, "replaceable": false, @@ -184010,7 +177053,7 @@ ] }, { - "id": 17266, + "id": 16636, "luminance": 0, "opaque": true, "replaceable": false, @@ -184022,7 +177065,7 @@ ] }, { - "id": 17267, + "id": 16637, "luminance": 0, "opaque": true, "replaceable": false, @@ -184034,7 +177077,7 @@ ] }, { - "id": 17268, + "id": 16638, "luminance": 0, "opaque": true, "replaceable": false, @@ -184044,7 +177087,7 @@ ] }, { - "id": 17269, + "id": 16639, "luminance": 0, "opaque": true, "replaceable": false, @@ -184056,7 +177099,7 @@ ] }, { - "id": 17270, + "id": 16640, "luminance": 0, "opaque": true, "replaceable": false, @@ -184068,7 +177111,7 @@ ] }, { - "id": 17271, + "id": 16641, "luminance": 0, "opaque": true, "replaceable": false, @@ -184077,7 +177120,7 @@ ] }, { - "id": 17272, + "id": 16642, "luminance": 0, "opaque": true, "replaceable": false, @@ -184087,7 +177130,7 @@ ] }, { - "id": 17273, + "id": 16643, "luminance": 0, "opaque": true, "replaceable": false, @@ -184097,7 +177140,7 @@ ] }, { - "id": 17274, + "id": 16644, "luminance": 0, "opaque": true, "replaceable": false, @@ -184106,7 +177149,7 @@ ] }, { - "id": 17275, + "id": 16645, "luminance": 0, "opaque": true, "replaceable": false, @@ -184116,7 +177159,7 @@ ] }, { - "id": 17276, + "id": 16646, "luminance": 0, "opaque": true, "replaceable": false, @@ -184126,7 +177169,7 @@ ] }, { - "id": 17277, + "id": 16647, "luminance": 0, "opaque": true, "replaceable": false, @@ -184136,7 +177179,7 @@ ] }, { - "id": 17278, + "id": 16648, "luminance": 0, "opaque": true, "replaceable": false, @@ -184148,7 +177191,7 @@ ] }, { - "id": 17279, + "id": 16649, "luminance": 0, "opaque": true, "replaceable": false, @@ -184160,7 +177203,7 @@ ] }, { - "id": 17280, + "id": 16650, "luminance": 0, "opaque": true, "replaceable": false, @@ -184170,7 +177213,7 @@ ] }, { - "id": 17281, + "id": 16651, "luminance": 0, "opaque": true, "replaceable": false, @@ -184182,7 +177225,7 @@ ] }, { - "id": 17282, + "id": 16652, "luminance": 0, "opaque": true, "replaceable": false, @@ -184194,7 +177237,7 @@ ] }, { - "id": 17283, + "id": 16653, "luminance": 0, "opaque": true, "replaceable": false, @@ -184203,7 +177246,7 @@ ] }, { - "id": 17284, + "id": 16654, "luminance": 0, "opaque": true, "replaceable": false, @@ -184213,7 +177256,7 @@ ] }, { - "id": 17285, + "id": 16655, "luminance": 0, "opaque": true, "replaceable": false, @@ -184223,7 +177266,7 @@ ] }, { - "id": 17286, + "id": 16656, "luminance": 0, "opaque": true, "replaceable": false, @@ -184232,7 +177275,7 @@ ] }, { - "id": 17287, + "id": 16657, "luminance": 0, "opaque": true, "replaceable": false, @@ -184242,7 +177285,7 @@ ] }, { - "id": 17288, + "id": 16658, "luminance": 0, "opaque": true, "replaceable": false, @@ -184252,7 +177295,7 @@ ] }, { - "id": 17289, + "id": 16659, "luminance": 0, "opaque": true, "replaceable": false, @@ -184263,7 +177306,7 @@ ] }, { - "id": 17290, + "id": 16660, "luminance": 0, "opaque": true, "replaceable": false, @@ -184276,7 +177319,7 @@ ] }, { - "id": 17291, + "id": 16661, "luminance": 0, "opaque": true, "replaceable": false, @@ -184289,7 +177332,7 @@ ] }, { - "id": 17292, + "id": 16662, "luminance": 0, "opaque": true, "replaceable": false, @@ -184300,7 +177343,7 @@ ] }, { - "id": 17293, + "id": 16663, "luminance": 0, "opaque": true, "replaceable": false, @@ -184313,7 +177356,7 @@ ] }, { - "id": 17294, + "id": 16664, "luminance": 0, "opaque": true, "replaceable": false, @@ -184326,7 +177369,7 @@ ] }, { - "id": 17295, + "id": 16665, "luminance": 0, "opaque": true, "replaceable": false, @@ -184335,7 +177378,7 @@ ] }, { - "id": 17296, + "id": 16666, "luminance": 0, "opaque": true, "replaceable": false, @@ -184346,7 +177389,7 @@ ] }, { - "id": 17297, + "id": 16667, "luminance": 0, "opaque": true, "replaceable": false, @@ -184357,7 +177400,7 @@ ] }, { - "id": 17298, + "id": 16668, "luminance": 0, "opaque": true, "replaceable": false, @@ -184366,7 +177409,7 @@ ] }, { - "id": 17299, + "id": 16669, "luminance": 0, "opaque": true, "replaceable": false, @@ -184377,7 +177420,7 @@ ] }, { - "id": 17300, + "id": 16670, "luminance": 0, "opaque": true, "replaceable": false, @@ -184388,7 +177431,7 @@ ] }, { - "id": 17301, + "id": 16671, "luminance": 0, "opaque": true, "replaceable": false, @@ -184399,7 +177442,7 @@ ] }, { - "id": 17302, + "id": 16672, "luminance": 0, "opaque": true, "replaceable": false, @@ -184412,7 +177455,7 @@ ] }, { - "id": 17303, + "id": 16673, "luminance": 0, "opaque": true, "replaceable": false, @@ -184425,7 +177468,7 @@ ] }, { - "id": 17304, + "id": 16674, "luminance": 0, "opaque": true, "replaceable": false, @@ -184436,7 +177479,7 @@ ] }, { - "id": 17305, + "id": 16675, "luminance": 0, "opaque": true, "replaceable": false, @@ -184449,7 +177492,7 @@ ] }, { - "id": 17306, + "id": 16676, "luminance": 0, "opaque": true, "replaceable": false, @@ -184462,7 +177505,7 @@ ] }, { - "id": 17307, + "id": 16677, "luminance": 0, "opaque": true, "replaceable": false, @@ -184471,7 +177514,7 @@ ] }, { - "id": 17308, + "id": 16678, "luminance": 0, "opaque": true, "replaceable": false, @@ -184482,7 +177525,7 @@ ] }, { - "id": 17309, + "id": 16679, "luminance": 0, "opaque": true, "replaceable": false, @@ -184493,7 +177536,7 @@ ] }, { - "id": 17310, + "id": 16680, "luminance": 0, "opaque": true, "replaceable": false, @@ -184502,7 +177545,7 @@ ] }, { - "id": 17311, + "id": 16681, "luminance": 0, "opaque": true, "replaceable": false, @@ -184513,7 +177556,7 @@ ] }, { - "id": 17312, + "id": 16682, "luminance": 0, "opaque": true, "replaceable": false, @@ -184524,7 +177567,7 @@ ] }, { - "id": 17313, + "id": 16683, "luminance": 0, "opaque": true, "replaceable": false, @@ -184534,7 +177577,7 @@ ] }, { - "id": 17314, + "id": 16684, "luminance": 0, "opaque": true, "replaceable": false, @@ -184546,7 +177589,7 @@ ] }, { - "id": 17315, + "id": 16685, "luminance": 0, "opaque": true, "replaceable": false, @@ -184558,7 +177601,7 @@ ] }, { - "id": 17316, + "id": 16686, "luminance": 0, "opaque": true, "replaceable": false, @@ -184568,7 +177611,7 @@ ] }, { - "id": 17317, + "id": 16687, "luminance": 0, "opaque": true, "replaceable": false, @@ -184580,7 +177623,7 @@ ] }, { - "id": 17318, + "id": 16688, "luminance": 0, "opaque": true, "replaceable": false, @@ -184592,7 +177635,7 @@ ] }, { - "id": 17319, + "id": 16689, "luminance": 0, "opaque": true, "replaceable": false, @@ -184601,7 +177644,7 @@ ] }, { - "id": 17320, + "id": 16690, "luminance": 0, "opaque": true, "replaceable": false, @@ -184611,7 +177654,7 @@ ] }, { - "id": 17321, + "id": 16691, "luminance": 0, "opaque": true, "replaceable": false, @@ -184621,7 +177664,7 @@ ] }, { - "id": 17322, + "id": 16692, "luminance": 0, "opaque": true, "replaceable": false, @@ -184630,7 +177673,7 @@ ] }, { - "id": 17323, + "id": 16693, "luminance": 0, "opaque": true, "replaceable": false, @@ -184640,7 +177683,7 @@ ] }, { - "id": 17324, + "id": 16694, "luminance": 0, "opaque": true, "replaceable": false, @@ -184650,7 +177693,7 @@ ] }, { - "id": 17325, + "id": 16695, "luminance": 0, "opaque": true, "replaceable": false, @@ -184661,7 +177704,7 @@ ] }, { - "id": 17326, + "id": 16696, "luminance": 0, "opaque": true, "replaceable": false, @@ -184674,7 +177717,7 @@ ] }, { - "id": 17327, + "id": 16697, "luminance": 0, "opaque": true, "replaceable": false, @@ -184687,7 +177730,7 @@ ] }, { - "id": 17328, + "id": 16698, "luminance": 0, "opaque": true, "replaceable": false, @@ -184698,7 +177741,7 @@ ] }, { - "id": 17329, + "id": 16699, "luminance": 0, "opaque": true, "replaceable": false, @@ -184711,7 +177754,7 @@ ] }, { - "id": 17330, + "id": 16700, "luminance": 0, "opaque": true, "replaceable": false, @@ -184724,7 +177767,7 @@ ] }, { - "id": 17331, + "id": 16701, "luminance": 0, "opaque": true, "replaceable": false, @@ -184733,7 +177776,7 @@ ] }, { - "id": 17332, + "id": 16702, "luminance": 0, "opaque": true, "replaceable": false, @@ -184744,7 +177787,7 @@ ] }, { - "id": 17333, + "id": 16703, "luminance": 0, "opaque": true, "replaceable": false, @@ -184755,7 +177798,7 @@ ] }, { - "id": 17334, + "id": 16704, "luminance": 0, "opaque": true, "replaceable": false, @@ -184764,7 +177807,7 @@ ] }, { - "id": 17335, + "id": 16705, "luminance": 0, "opaque": true, "replaceable": false, @@ -184775,7 +177818,7 @@ ] }, { - "id": 17336, + "id": 16706, "luminance": 0, "opaque": true, "replaceable": false, @@ -184786,7 +177829,7 @@ ] }, { - "id": 17337, + "id": 16707, "luminance": 0, "opaque": true, "replaceable": false, @@ -184797,7 +177840,7 @@ ] }, { - "id": 17338, + "id": 16708, "luminance": 0, "opaque": true, "replaceable": false, @@ -184810,7 +177853,7 @@ ] }, { - "id": 17339, + "id": 16709, "luminance": 0, "opaque": true, "replaceable": false, @@ -184823,7 +177866,7 @@ ] }, { - "id": 17340, + "id": 16710, "luminance": 0, "opaque": true, "replaceable": false, @@ -184834,7 +177877,7 @@ ] }, { - "id": 17341, + "id": 16711, "luminance": 0, "opaque": true, "replaceable": false, @@ -184847,7 +177890,7 @@ ] }, { - "id": 17342, + "id": 16712, "luminance": 0, "opaque": true, "replaceable": false, @@ -184860,7 +177903,7 @@ ] }, { - "id": 17343, + "id": 16713, "luminance": 0, "opaque": true, "replaceable": false, @@ -184869,7 +177912,7 @@ ] }, { - "id": 17344, + "id": 16714, "luminance": 0, "opaque": true, "replaceable": false, @@ -184880,7 +177923,7 @@ ] }, { - "id": 17345, + "id": 16715, "luminance": 0, "opaque": true, "replaceable": false, @@ -184891,7 +177934,7 @@ ] }, { - "id": 17346, + "id": 16716, "luminance": 0, "opaque": true, "replaceable": false, @@ -184900,7 +177943,7 @@ ] }, { - "id": 17347, + "id": 16717, "luminance": 0, "opaque": true, "replaceable": false, @@ -184911,7 +177954,7 @@ ] }, { - "id": 17348, + "id": 16718, "luminance": 0, "opaque": true, "replaceable": false, @@ -184922,7 +177965,7 @@ ] }, { - "id": 17349, + "id": 16719, "luminance": 0, "opaque": true, "replaceable": false, @@ -184932,7 +177975,7 @@ ] }, { - "id": 17350, + "id": 16720, "luminance": 0, "opaque": true, "replaceable": false, @@ -184943,7 +177986,7 @@ ] }, { - "id": 17351, + "id": 16721, "luminance": 0, "opaque": true, "replaceable": false, @@ -184954,7 +177997,7 @@ ] }, { - "id": 17352, + "id": 16722, "luminance": 0, "opaque": true, "replaceable": false, @@ -184964,7 +178007,7 @@ ] }, { - "id": 17353, + "id": 16723, "luminance": 0, "opaque": true, "replaceable": false, @@ -184975,7 +178018,7 @@ ] }, { - "id": 17354, + "id": 16724, "luminance": 0, "opaque": true, "replaceable": false, @@ -184986,7 +178029,7 @@ ] }, { - "id": 17355, + "id": 16725, "luminance": 0, "opaque": true, "replaceable": false, @@ -184995,7 +178038,7 @@ ] }, { - "id": 17356, + "id": 16726, "luminance": 0, "opaque": true, "replaceable": false, @@ -185004,7 +178047,7 @@ ] }, { - "id": 17357, + "id": 16727, "luminance": 0, "opaque": true, "replaceable": false, @@ -185013,7 +178056,7 @@ ] }, { - "id": 17358, + "id": 16728, "luminance": 0, "opaque": true, "replaceable": false, @@ -185022,7 +178065,7 @@ ] }, { - "id": 17359, + "id": 16729, "luminance": 0, "opaque": true, "replaceable": false, @@ -185031,7 +178074,7 @@ ] }, { - "id": 17360, + "id": 16730, "luminance": 0, "opaque": true, "replaceable": false, @@ -185040,7 +178083,7 @@ ] }, { - "id": 17361, + "id": 16731, "luminance": 0, "opaque": true, "replaceable": false, @@ -185051,7 +178094,7 @@ ] }, { - "id": 17362, + "id": 16732, "luminance": 0, "opaque": true, "replaceable": false, @@ -185063,7 +178106,7 @@ ] }, { - "id": 17363, + "id": 16733, "luminance": 0, "opaque": true, "replaceable": false, @@ -185075,7 +178118,7 @@ ] }, { - "id": 17364, + "id": 16734, "luminance": 0, "opaque": true, "replaceable": false, @@ -185086,7 +178129,7 @@ ] }, { - "id": 17365, + "id": 16735, "luminance": 0, "opaque": true, "replaceable": false, @@ -185098,7 +178141,7 @@ ] }, { - "id": 17366, + "id": 16736, "luminance": 0, "opaque": true, "replaceable": false, @@ -185110,7 +178153,7 @@ ] }, { - "id": 17367, + "id": 16737, "luminance": 0, "opaque": true, "replaceable": false, @@ -185120,7 +178163,7 @@ ] }, { - "id": 17368, + "id": 16738, "luminance": 0, "opaque": true, "replaceable": false, @@ -185130,7 +178173,7 @@ ] }, { - "id": 17369, + "id": 16739, "luminance": 0, "opaque": true, "replaceable": false, @@ -185140,7 +178183,7 @@ ] }, { - "id": 17370, + "id": 16740, "luminance": 0, "opaque": true, "replaceable": false, @@ -185150,7 +178193,7 @@ ] }, { - "id": 17371, + "id": 16741, "luminance": 0, "opaque": true, "replaceable": false, @@ -185160,7 +178203,7 @@ ] }, { - "id": 17372, + "id": 16742, "luminance": 0, "opaque": true, "replaceable": false, @@ -185170,7 +178213,7 @@ ] }, { - "id": 17373, + "id": 16743, "luminance": 0, "opaque": true, "replaceable": false, @@ -185181,7 +178224,7 @@ ] }, { - "id": 17374, + "id": 16744, "luminance": 0, "opaque": true, "replaceable": false, @@ -185193,7 +178236,7 @@ ] }, { - "id": 17375, + "id": 16745, "luminance": 0, "opaque": true, "replaceable": false, @@ -185205,7 +178248,7 @@ ] }, { - "id": 17376, + "id": 16746, "luminance": 0, "opaque": true, "replaceable": false, @@ -185216,7 +178259,7 @@ ] }, { - "id": 17377, + "id": 16747, "luminance": 0, "opaque": true, "replaceable": false, @@ -185228,7 +178271,7 @@ ] }, { - "id": 17378, + "id": 16748, "luminance": 0, "opaque": true, "replaceable": false, @@ -185240,7 +178283,7 @@ ] }, { - "id": 17379, + "id": 16749, "luminance": 0, "opaque": true, "replaceable": false, @@ -185250,7 +178293,7 @@ ] }, { - "id": 17380, + "id": 16750, "luminance": 0, "opaque": true, "replaceable": false, @@ -185260,7 +178303,7 @@ ] }, { - "id": 17381, + "id": 16751, "luminance": 0, "opaque": true, "replaceable": false, @@ -185270,7 +178313,7 @@ ] }, { - "id": 17382, + "id": 16752, "luminance": 0, "opaque": true, "replaceable": false, @@ -185280,7 +178323,7 @@ ] }, { - "id": 17383, + "id": 16753, "luminance": 0, "opaque": true, "replaceable": false, @@ -185290,7 +178333,7 @@ ] }, { - "id": 17384, + "id": 16754, "luminance": 0, "opaque": true, "replaceable": false, @@ -185300,7 +178343,7 @@ ] }, { - "id": 17385, + "id": 16755, "luminance": 0, "opaque": true, "replaceable": false, @@ -185311,7 +178354,7 @@ ] }, { - "id": 17386, + "id": 16756, "luminance": 0, "opaque": true, "replaceable": false, @@ -185323,7 +178366,7 @@ ] }, { - "id": 17387, + "id": 16757, "luminance": 0, "opaque": true, "replaceable": false, @@ -185335,7 +178378,7 @@ ] }, { - "id": 17388, + "id": 16758, "luminance": 0, "opaque": true, "replaceable": false, @@ -185346,7 +178389,7 @@ ] }, { - "id": 17389, + "id": 16759, "luminance": 0, "opaque": true, "replaceable": false, @@ -185358,7 +178401,7 @@ ] }, { - "id": 17390, + "id": 16760, "luminance": 0, "opaque": true, "replaceable": false, @@ -185370,7 +178413,7 @@ ] }, { - "id": 17391, + "id": 16761, "luminance": 0, "opaque": true, "replaceable": false, @@ -185380,7 +178423,7 @@ ] }, { - "id": 17392, + "id": 16762, "luminance": 0, "opaque": true, "replaceable": false, @@ -185390,7 +178433,7 @@ ] }, { - "id": 17393, + "id": 16763, "luminance": 0, "opaque": true, "replaceable": false, @@ -185400,7 +178443,7 @@ ] }, { - "id": 17394, + "id": 16764, "luminance": 0, "opaque": true, "replaceable": false, @@ -185410,7 +178453,7 @@ ] }, { - "id": 17395, + "id": 16765, "luminance": 0, "opaque": true, "replaceable": false, @@ -185420,7 +178463,7 @@ ] }, { - "id": 17396, + "id": 16766, "luminance": 0, "opaque": true, "replaceable": false, @@ -185430,7 +178473,7 @@ ] }, { - "id": 17397, + "id": 16767, "luminance": 0, "opaque": true, "replaceable": false, @@ -185442,7 +178485,7 @@ ] }, { - "id": 17398, + "id": 16768, "luminance": 0, "opaque": true, "replaceable": false, @@ -185455,7 +178498,7 @@ ] }, { - "id": 17399, + "id": 16769, "luminance": 0, "opaque": true, "replaceable": false, @@ -185468,7 +178511,7 @@ ] }, { - "id": 17400, + "id": 16770, "luminance": 0, "opaque": true, "replaceable": false, @@ -185480,7 +178523,7 @@ ] }, { - "id": 17401, + "id": 16771, "luminance": 0, "opaque": true, "replaceable": false, @@ -185493,7 +178536,7 @@ ] }, { - "id": 17402, + "id": 16772, "luminance": 0, "opaque": true, "replaceable": false, @@ -185506,7 +178549,7 @@ ] }, { - "id": 17403, + "id": 16773, "luminance": 0, "opaque": true, "replaceable": false, @@ -185516,7 +178559,7 @@ ] }, { - "id": 17404, + "id": 16774, "luminance": 0, "opaque": true, "replaceable": false, @@ -185527,7 +178570,7 @@ ] }, { - "id": 17405, + "id": 16775, "luminance": 0, "opaque": true, "replaceable": false, @@ -185538,7 +178581,7 @@ ] }, { - "id": 17406, + "id": 16776, "luminance": 0, "opaque": true, "replaceable": false, @@ -185548,7 +178591,7 @@ ] }, { - "id": 17407, + "id": 16777, "luminance": 0, "opaque": true, "replaceable": false, @@ -185559,7 +178602,7 @@ ] }, { - "id": 17408, + "id": 16778, "luminance": 0, "opaque": true, "replaceable": false, @@ -185570,7 +178613,7 @@ ] }, { - "id": 17409, + "id": 16779, "luminance": 0, "opaque": true, "replaceable": false, @@ -185582,7 +178625,7 @@ ] }, { - "id": 17410, + "id": 16780, "luminance": 0, "opaque": true, "replaceable": false, @@ -185595,7 +178638,7 @@ ] }, { - "id": 17411, + "id": 16781, "luminance": 0, "opaque": true, "replaceable": false, @@ -185608,7 +178651,7 @@ ] }, { - "id": 17412, + "id": 16782, "luminance": 0, "opaque": true, "replaceable": false, @@ -185620,7 +178663,7 @@ ] }, { - "id": 17413, + "id": 16783, "luminance": 0, "opaque": true, "replaceable": false, @@ -185633,7 +178676,7 @@ ] }, { - "id": 17414, + "id": 16784, "luminance": 0, "opaque": true, "replaceable": false, @@ -185646,7 +178689,7 @@ ] }, { - "id": 17415, + "id": 16785, "luminance": 0, "opaque": true, "replaceable": false, @@ -185656,7 +178699,7 @@ ] }, { - "id": 17416, + "id": 16786, "luminance": 0, "opaque": true, "replaceable": false, @@ -185667,7 +178710,7 @@ ] }, { - "id": 17417, + "id": 16787, "luminance": 0, "opaque": true, "replaceable": false, @@ -185678,7 +178721,7 @@ ] }, { - "id": 17418, + "id": 16788, "luminance": 0, "opaque": true, "replaceable": false, @@ -185688,7 +178731,7 @@ ] }, { - "id": 17419, + "id": 16789, "luminance": 0, "opaque": true, "replaceable": false, @@ -185699,7 +178742,7 @@ ] }, { - "id": 17420, + "id": 16790, "luminance": 0, "opaque": true, "replaceable": false, @@ -185710,7 +178753,7 @@ ] }, { - "id": 17421, + "id": 16791, "luminance": 0, "opaque": true, "replaceable": false, @@ -185721,7 +178764,7 @@ ] }, { - "id": 17422, + "id": 16792, "luminance": 0, "opaque": true, "replaceable": false, @@ -185733,7 +178776,7 @@ ] }, { - "id": 17423, + "id": 16793, "luminance": 0, "opaque": true, "replaceable": false, @@ -185745,7 +178788,7 @@ ] }, { - "id": 17424, + "id": 16794, "luminance": 0, "opaque": true, "replaceable": false, @@ -185756,7 +178799,7 @@ ] }, { - "id": 17425, + "id": 16795, "luminance": 0, "opaque": true, "replaceable": false, @@ -185768,7 +178811,7 @@ ] }, { - "id": 17426, + "id": 16796, "luminance": 0, "opaque": true, "replaceable": false, @@ -185780,7 +178823,7 @@ ] }, { - "id": 17427, + "id": 16797, "luminance": 0, "opaque": true, "replaceable": false, @@ -185790,7 +178833,7 @@ ] }, { - "id": 17428, + "id": 16798, "luminance": 0, "opaque": true, "replaceable": false, @@ -185800,7 +178843,7 @@ ] }, { - "id": 17429, + "id": 16799, "luminance": 0, "opaque": true, "replaceable": false, @@ -185810,7 +178853,7 @@ ] }, { - "id": 17430, + "id": 16800, "luminance": 0, "opaque": true, "replaceable": false, @@ -185820,7 +178863,7 @@ ] }, { - "id": 17431, + "id": 16801, "luminance": 0, "opaque": true, "replaceable": false, @@ -185830,7 +178873,7 @@ ] }, { - "id": 17432, + "id": 16802, "luminance": 0, "opaque": true, "replaceable": false, @@ -185840,7 +178883,7 @@ ] }, { - "id": 17433, + "id": 16803, "luminance": 0, "opaque": true, "replaceable": false, @@ -185852,7 +178895,7 @@ ] }, { - "id": 17434, + "id": 16804, "luminance": 0, "opaque": true, "replaceable": false, @@ -185865,7 +178908,7 @@ ] }, { - "id": 17435, + "id": 16805, "luminance": 0, "opaque": true, "replaceable": false, @@ -185878,7 +178921,7 @@ ] }, { - "id": 17436, + "id": 16806, "luminance": 0, "opaque": true, "replaceable": false, @@ -185890,7 +178933,7 @@ ] }, { - "id": 17437, + "id": 16807, "luminance": 0, "opaque": true, "replaceable": false, @@ -185903,7 +178946,7 @@ ] }, { - "id": 17438, + "id": 16808, "luminance": 0, "opaque": true, "replaceable": false, @@ -185916,7 +178959,7 @@ ] }, { - "id": 17439, + "id": 16809, "luminance": 0, "opaque": true, "replaceable": false, @@ -185926,7 +178969,7 @@ ] }, { - "id": 17440, + "id": 16810, "luminance": 0, "opaque": true, "replaceable": false, @@ -185937,7 +178980,7 @@ ] }, { - "id": 17441, + "id": 16811, "luminance": 0, "opaque": true, "replaceable": false, @@ -185948,7 +178991,7 @@ ] }, { - "id": 17442, + "id": 16812, "luminance": 0, "opaque": true, "replaceable": false, @@ -185958,7 +179001,7 @@ ] }, { - "id": 17443, + "id": 16813, "luminance": 0, "opaque": true, "replaceable": false, @@ -185969,7 +179012,7 @@ ] }, { - "id": 17444, + "id": 16814, "luminance": 0, "opaque": true, "replaceable": false, @@ -185980,7 +179023,7 @@ ] }, { - "id": 17445, + "id": 16815, "luminance": 0, "opaque": true, "replaceable": false, @@ -185992,7 +179035,7 @@ ] }, { - "id": 17446, + "id": 16816, "luminance": 0, "opaque": true, "replaceable": false, @@ -186005,7 +179048,7 @@ ] }, { - "id": 17447, + "id": 16817, "luminance": 0, "opaque": true, "replaceable": false, @@ -186018,7 +179061,7 @@ ] }, { - "id": 17448, + "id": 16818, "luminance": 0, "opaque": true, "replaceable": false, @@ -186030,7 +179073,7 @@ ] }, { - "id": 17449, + "id": 16819, "luminance": 0, "opaque": true, "replaceable": false, @@ -186043,7 +179086,7 @@ ] }, { - "id": 17450, + "id": 16820, "luminance": 0, "opaque": true, "replaceable": false, @@ -186056,7 +179099,7 @@ ] }, { - "id": 17451, + "id": 16821, "luminance": 0, "opaque": true, "replaceable": false, @@ -186066,7 +179109,7 @@ ] }, { - "id": 17452, + "id": 16822, "luminance": 0, "opaque": true, "replaceable": false, @@ -186077,7 +179120,7 @@ ] }, { - "id": 17453, + "id": 16823, "luminance": 0, "opaque": true, "replaceable": false, @@ -186088,7 +179131,7 @@ ] }, { - "id": 17454, + "id": 16824, "luminance": 0, "opaque": true, "replaceable": false, @@ -186098,7 +179141,7 @@ ] }, { - "id": 17455, + "id": 16825, "luminance": 0, "opaque": true, "replaceable": false, @@ -186109,7 +179152,7 @@ ] }, { - "id": 17456, + "id": 16826, "luminance": 0, "opaque": true, "replaceable": false, @@ -186120,7 +179163,7 @@ ] }, { - "id": 17457, + "id": 16827, "luminance": 0, "opaque": true, "replaceable": false, @@ -186130,7 +179173,7 @@ ] }, { - "id": 17458, + "id": 16828, "luminance": 0, "opaque": true, "replaceable": false, @@ -186141,7 +179184,7 @@ ] }, { - "id": 17459, + "id": 16829, "luminance": 0, "opaque": true, "replaceable": false, @@ -186152,7 +179195,7 @@ ] }, { - "id": 17460, + "id": 16830, "luminance": 0, "opaque": true, "replaceable": false, @@ -186162,7 +179205,7 @@ ] }, { - "id": 17461, + "id": 16831, "luminance": 0, "opaque": true, "replaceable": false, @@ -186173,7 +179216,7 @@ ] }, { - "id": 17462, + "id": 16832, "luminance": 0, "opaque": true, "replaceable": false, @@ -186184,7 +179227,7 @@ ] }, { - "id": 17463, + "id": 16833, "luminance": 0, "opaque": true, "replaceable": false, @@ -186193,7 +179236,7 @@ ] }, { - "id": 17464, + "id": 16834, "luminance": 0, "opaque": true, "replaceable": false, @@ -186202,7 +179245,7 @@ ] }, { - "id": 17465, + "id": 16835, "luminance": 0, "opaque": true, "replaceable": false, @@ -186211,7 +179254,7 @@ ] }, { - "id": 17466, + "id": 16836, "luminance": 0, "opaque": true, "replaceable": false, @@ -186220,7 +179263,7 @@ ] }, { - "id": 17467, + "id": 16837, "luminance": 0, "opaque": true, "replaceable": false, @@ -186229,7 +179272,7 @@ ] }, { - "id": 17468, + "id": 16838, "luminance": 0, "opaque": true, "replaceable": false, @@ -186238,7 +179281,7 @@ ] }, { - "id": 17469, + "id": 16839, "luminance": 0, "opaque": true, "replaceable": false, @@ -186249,7 +179292,7 @@ ] }, { - "id": 17470, + "id": 16840, "luminance": 0, "opaque": true, "replaceable": false, @@ -186261,7 +179304,7 @@ ] }, { - "id": 17471, + "id": 16841, "luminance": 0, "opaque": true, "replaceable": false, @@ -186273,7 +179316,7 @@ ] }, { - "id": 17472, + "id": 16842, "luminance": 0, "opaque": true, "replaceable": false, @@ -186284,7 +179327,7 @@ ] }, { - "id": 17473, + "id": 16843, "luminance": 0, "opaque": true, "replaceable": false, @@ -186296,7 +179339,7 @@ ] }, { - "id": 17474, + "id": 16844, "luminance": 0, "opaque": true, "replaceable": false, @@ -186308,7 +179351,7 @@ ] }, { - "id": 17475, + "id": 16845, "luminance": 0, "opaque": true, "replaceable": false, @@ -186318,7 +179361,7 @@ ] }, { - "id": 17476, + "id": 16846, "luminance": 0, "opaque": true, "replaceable": false, @@ -186328,7 +179371,7 @@ ] }, { - "id": 17477, + "id": 16847, "luminance": 0, "opaque": true, "replaceable": false, @@ -186338,7 +179381,7 @@ ] }, { - "id": 17478, + "id": 16848, "luminance": 0, "opaque": true, "replaceable": false, @@ -186348,7 +179391,7 @@ ] }, { - "id": 17479, + "id": 16849, "luminance": 0, "opaque": true, "replaceable": false, @@ -186358,7 +179401,7 @@ ] }, { - "id": 17480, + "id": 16850, "luminance": 0, "opaque": true, "replaceable": false, @@ -186368,7 +179411,7 @@ ] }, { - "id": 17481, + "id": 16851, "luminance": 0, "opaque": true, "replaceable": false, @@ -186379,7 +179422,7 @@ ] }, { - "id": 17482, + "id": 16852, "luminance": 0, "opaque": true, "replaceable": false, @@ -186391,7 +179434,7 @@ ] }, { - "id": 17483, + "id": 16853, "luminance": 0, "opaque": true, "replaceable": false, @@ -186403,7 +179446,7 @@ ] }, { - "id": 17484, + "id": 16854, "luminance": 0, "opaque": true, "replaceable": false, @@ -186414,7 +179457,7 @@ ] }, { - "id": 17485, + "id": 16855, "luminance": 0, "opaque": true, "replaceable": false, @@ -186426,7 +179469,7 @@ ] }, { - "id": 17486, + "id": 16856, "luminance": 0, "opaque": true, "replaceable": false, @@ -186438,7 +179481,7 @@ ] }, { - "id": 17487, + "id": 16857, "luminance": 0, "opaque": true, "replaceable": false, @@ -186448,7 +179491,7 @@ ] }, { - "id": 17488, + "id": 16858, "luminance": 0, "opaque": true, "replaceable": false, @@ -186458,7 +179501,7 @@ ] }, { - "id": 17489, + "id": 16859, "luminance": 0, "opaque": true, "replaceable": false, @@ -186468,7 +179511,7 @@ ] }, { - "id": 17490, + "id": 16860, "luminance": 0, "opaque": true, "replaceable": false, @@ -186478,7 +179521,7 @@ ] }, { - "id": 17491, + "id": 16861, "luminance": 0, "opaque": true, "replaceable": false, @@ -186488,7 +179531,7 @@ ] }, { - "id": 17492, + "id": 16862, "luminance": 0, "opaque": true, "replaceable": false, @@ -186498,7 +179541,7 @@ ] }, { - "id": 17493, + "id": 16863, "luminance": 0, "opaque": true, "replaceable": false, @@ -186509,7 +179552,7 @@ ] }, { - "id": 17494, + "id": 16864, "luminance": 0, "opaque": true, "replaceable": false, @@ -186521,7 +179564,7 @@ ] }, { - "id": 17495, + "id": 16865, "luminance": 0, "opaque": true, "replaceable": false, @@ -186533,7 +179576,7 @@ ] }, { - "id": 17496, + "id": 16866, "luminance": 0, "opaque": true, "replaceable": false, @@ -186544,7 +179587,7 @@ ] }, { - "id": 17497, + "id": 16867, "luminance": 0, "opaque": true, "replaceable": false, @@ -186556,7 +179599,7 @@ ] }, { - "id": 17498, + "id": 16868, "luminance": 0, "opaque": true, "replaceable": false, @@ -186568,7 +179611,7 @@ ] }, { - "id": 17499, + "id": 16869, "luminance": 0, "opaque": true, "replaceable": false, @@ -186578,7 +179621,7 @@ ] }, { - "id": 17500, + "id": 16870, "luminance": 0, "opaque": true, "replaceable": false, @@ -186588,7 +179631,7 @@ ] }, { - "id": 17501, + "id": 16871, "luminance": 0, "opaque": true, "replaceable": false, @@ -186598,7 +179641,7 @@ ] }, { - "id": 17502, + "id": 16872, "luminance": 0, "opaque": true, "replaceable": false, @@ -186608,7 +179651,7 @@ ] }, { - "id": 17503, + "id": 16873, "luminance": 0, "opaque": true, "replaceable": false, @@ -186618,7 +179661,7 @@ ] }, { - "id": 17504, + "id": 16874, "luminance": 0, "opaque": true, "replaceable": false, @@ -186628,7 +179671,7 @@ ] }, { - "id": 17505, + "id": 16875, "luminance": 0, "opaque": true, "replaceable": false, @@ -186640,7 +179683,7 @@ ] }, { - "id": 17506, + "id": 16876, "luminance": 0, "opaque": true, "replaceable": false, @@ -186653,7 +179696,7 @@ ] }, { - "id": 17507, + "id": 16877, "luminance": 0, "opaque": true, "replaceable": false, @@ -186666,7 +179709,7 @@ ] }, { - "id": 17508, + "id": 16878, "luminance": 0, "opaque": true, "replaceable": false, @@ -186678,7 +179721,7 @@ ] }, { - "id": 17509, + "id": 16879, "luminance": 0, "opaque": true, "replaceable": false, @@ -186691,7 +179734,7 @@ ] }, { - "id": 17510, + "id": 16880, "luminance": 0, "opaque": true, "replaceable": false, @@ -186704,7 +179747,7 @@ ] }, { - "id": 17511, + "id": 16881, "luminance": 0, "opaque": true, "replaceable": false, @@ -186714,7 +179757,7 @@ ] }, { - "id": 17512, + "id": 16882, "luminance": 0, "opaque": true, "replaceable": false, @@ -186725,7 +179768,7 @@ ] }, { - "id": 17513, + "id": 16883, "luminance": 0, "opaque": true, "replaceable": false, @@ -186736,7 +179779,7 @@ ] }, { - "id": 17514, + "id": 16884, "luminance": 0, "opaque": true, "replaceable": false, @@ -186746,7 +179789,7 @@ ] }, { - "id": 17515, + "id": 16885, "luminance": 0, "opaque": true, "replaceable": false, @@ -186757,7 +179800,7 @@ ] }, { - "id": 17516, + "id": 16886, "luminance": 0, "opaque": true, "replaceable": false, @@ -186768,7 +179811,7 @@ ] }, { - "id": 17517, + "id": 16887, "luminance": 0, "opaque": true, "replaceable": false, @@ -186780,7 +179823,7 @@ ] }, { - "id": 17518, + "id": 16888, "luminance": 0, "opaque": true, "replaceable": false, @@ -186793,7 +179836,7 @@ ] }, { - "id": 17519, + "id": 16889, "luminance": 0, "opaque": true, "replaceable": false, @@ -186806,7 +179849,7 @@ ] }, { - "id": 17520, + "id": 16890, "luminance": 0, "opaque": true, "replaceable": false, @@ -186818,7 +179861,7 @@ ] }, { - "id": 17521, + "id": 16891, "luminance": 0, "opaque": true, "replaceable": false, @@ -186831,7 +179874,7 @@ ] }, { - "id": 17522, + "id": 16892, "luminance": 0, "opaque": true, "replaceable": false, @@ -186844,7 +179887,7 @@ ] }, { - "id": 17523, + "id": 16893, "luminance": 0, "opaque": true, "replaceable": false, @@ -186854,7 +179897,7 @@ ] }, { - "id": 17524, + "id": 16894, "luminance": 0, "opaque": true, "replaceable": false, @@ -186865,7 +179908,7 @@ ] }, { - "id": 17525, + "id": 16895, "luminance": 0, "opaque": true, "replaceable": false, @@ -186876,7 +179919,7 @@ ] }, { - "id": 17526, + "id": 16896, "luminance": 0, "opaque": true, "replaceable": false, @@ -186886,7 +179929,7 @@ ] }, { - "id": 17527, + "id": 16897, "luminance": 0, "opaque": true, "replaceable": false, @@ -186897,7 +179940,7 @@ ] }, { - "id": 17528, + "id": 16898, "luminance": 0, "opaque": true, "replaceable": false, @@ -186908,7 +179951,7 @@ ] }, { - "id": 17529, + "id": 16899, "luminance": 0, "opaque": true, "replaceable": false, @@ -186919,7 +179962,7 @@ ] }, { - "id": 17530, + "id": 16900, "luminance": 0, "opaque": true, "replaceable": false, @@ -186931,7 +179974,7 @@ ] }, { - "id": 17531, + "id": 16901, "luminance": 0, "opaque": true, "replaceable": false, @@ -186943,7 +179986,7 @@ ] }, { - "id": 17532, + "id": 16902, "luminance": 0, "opaque": true, "replaceable": false, @@ -186954,7 +179997,7 @@ ] }, { - "id": 17533, + "id": 16903, "luminance": 0, "opaque": true, "replaceable": false, @@ -186966,7 +180009,7 @@ ] }, { - "id": 17534, + "id": 16904, "luminance": 0, "opaque": true, "replaceable": false, @@ -186978,7 +180021,7 @@ ] }, { - "id": 17535, + "id": 16905, "luminance": 0, "opaque": true, "replaceable": false, @@ -186988,7 +180031,7 @@ ] }, { - "id": 17536, + "id": 16906, "luminance": 0, "opaque": true, "replaceable": false, @@ -186998,7 +180041,7 @@ ] }, { - "id": 17537, + "id": 16907, "luminance": 0, "opaque": true, "replaceable": false, @@ -187008,7 +180051,7 @@ ] }, { - "id": 17538, + "id": 16908, "luminance": 0, "opaque": true, "replaceable": false, @@ -187018,7 +180061,7 @@ ] }, { - "id": 17539, + "id": 16909, "luminance": 0, "opaque": true, "replaceable": false, @@ -187028,7 +180071,7 @@ ] }, { - "id": 17540, + "id": 16910, "luminance": 0, "opaque": true, "replaceable": false, @@ -187038,7 +180081,7 @@ ] }, { - "id": 17541, + "id": 16911, "luminance": 0, "opaque": true, "replaceable": false, @@ -187050,7 +180093,7 @@ ] }, { - "id": 17542, + "id": 16912, "luminance": 0, "opaque": true, "replaceable": false, @@ -187063,7 +180106,7 @@ ] }, { - "id": 17543, + "id": 16913, "luminance": 0, "opaque": true, "replaceable": false, @@ -187076,7 +180119,7 @@ ] }, { - "id": 17544, + "id": 16914, "luminance": 0, "opaque": true, "replaceable": false, @@ -187088,7 +180131,7 @@ ] }, { - "id": 17545, + "id": 16915, "luminance": 0, "opaque": true, "replaceable": false, @@ -187101,7 +180144,7 @@ ] }, { - "id": 17546, + "id": 16916, "luminance": 0, "opaque": true, "replaceable": false, @@ -187114,7 +180157,7 @@ ] }, { - "id": 17547, + "id": 16917, "luminance": 0, "opaque": true, "replaceable": false, @@ -187124,7 +180167,7 @@ ] }, { - "id": 17548, + "id": 16918, "luminance": 0, "opaque": true, "replaceable": false, @@ -187135,7 +180178,7 @@ ] }, { - "id": 17549, + "id": 16919, "luminance": 0, "opaque": true, "replaceable": false, @@ -187146,7 +180189,7 @@ ] }, { - "id": 17550, + "id": 16920, "luminance": 0, "opaque": true, "replaceable": false, @@ -187156,7 +180199,7 @@ ] }, { - "id": 17551, + "id": 16921, "luminance": 0, "opaque": true, "replaceable": false, @@ -187167,7 +180210,7 @@ ] }, { - "id": 17552, + "id": 16922, "luminance": 0, "opaque": true, "replaceable": false, @@ -187178,7 +180221,7 @@ ] }, { - "id": 17553, + "id": 16923, "luminance": 0, "opaque": true, "replaceable": false, @@ -187190,7 +180233,7 @@ ] }, { - "id": 17554, + "id": 16924, "luminance": 0, "opaque": true, "replaceable": false, @@ -187203,7 +180246,7 @@ ] }, { - "id": 17555, + "id": 16925, "luminance": 0, "opaque": true, "replaceable": false, @@ -187216,7 +180259,7 @@ ] }, { - "id": 17556, + "id": 16926, "luminance": 0, "opaque": true, "replaceable": false, @@ -187228,7 +180271,7 @@ ] }, { - "id": 17557, + "id": 16927, "luminance": 0, "opaque": true, "replaceable": false, @@ -187241,7 +180284,7 @@ ] }, { - "id": 17558, + "id": 16928, "luminance": 0, "opaque": true, "replaceable": false, @@ -187254,7 +180297,7 @@ ] }, { - "id": 17559, + "id": 16929, "luminance": 0, "opaque": true, "replaceable": false, @@ -187264,7 +180307,7 @@ ] }, { - "id": 17560, + "id": 16930, "luminance": 0, "opaque": true, "replaceable": false, @@ -187275,7 +180318,7 @@ ] }, { - "id": 17561, + "id": 16931, "luminance": 0, "opaque": true, "replaceable": false, @@ -187286,7 +180329,7 @@ ] }, { - "id": 17562, + "id": 16932, "luminance": 0, "opaque": true, "replaceable": false, @@ -187296,7 +180339,7 @@ ] }, { - "id": 17563, + "id": 16933, "luminance": 0, "opaque": true, "replaceable": false, @@ -187307,7 +180350,7 @@ ] }, { - "id": 17564, + "id": 16934, "luminance": 0, "opaque": true, "replaceable": false, @@ -187320,9 +180363,9 @@ ] }, { - "id": 766, - "name": "end_stone_brick_wall", - "translation_key": "block.minecraft.end_stone_brick_wall", + "id": 768, + "name": "red_nether_brick_wall", + "translation_key": "block.minecraft.red_nether_brick_wall", "item_id": 386, "properties": [ { @@ -187372,10 +180415,10 @@ ] } ], - "default_state_id": 17568, + "default_state_id": 16938, "states": [ { - "id": 17565, + "id": 16935, "luminance": 0, "opaque": true, "replaceable": false, @@ -187384,7 +180427,7 @@ ] }, { - "id": 17566, + "id": 16936, "luminance": 0, "opaque": true, "replaceable": false, @@ -187395,7 +180438,7 @@ ] }, { - "id": 17567, + "id": 16937, "luminance": 0, "opaque": true, "replaceable": false, @@ -187406,7 +180449,7 @@ ] }, { - "id": 17568, + "id": 16938, "luminance": 0, "opaque": true, "replaceable": false, @@ -187415,7 +180458,7 @@ ] }, { - "id": 17569, + "id": 16939, "luminance": 0, "opaque": true, "replaceable": false, @@ -187426,7 +180469,7 @@ ] }, { - "id": 17570, + "id": 16940, "luminance": 0, "opaque": true, "replaceable": false, @@ -187437,14 +180480,14 @@ ] }, { - "id": 17571, + "id": 16941, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 17572, + "id": 16942, "luminance": 0, "opaque": true, "replaceable": false, @@ -187453,7 +180496,7 @@ ] }, { - "id": 17573, + "id": 16943, "luminance": 0, "opaque": true, "replaceable": false, @@ -187462,14 +180505,14 @@ ] }, { - "id": 17574, + "id": 16944, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 17575, + "id": 16945, "luminance": 0, "opaque": true, "replaceable": false, @@ -187478,7 +180521,7 @@ ] }, { - "id": 17576, + "id": 16946, "luminance": 0, "opaque": true, "replaceable": false, @@ -187487,7 +180530,7 @@ ] }, { - "id": 17577, + "id": 16947, "luminance": 0, "opaque": true, "replaceable": false, @@ -187497,7 +180540,7 @@ ] }, { - "id": 17578, + "id": 16948, "luminance": 0, "opaque": true, "replaceable": false, @@ -187509,7 +180552,7 @@ ] }, { - "id": 17579, + "id": 16949, "luminance": 0, "opaque": true, "replaceable": false, @@ -187521,7 +180564,7 @@ ] }, { - "id": 17580, + "id": 16950, "luminance": 0, "opaque": true, "replaceable": false, @@ -187531,7 +180574,7 @@ ] }, { - "id": 17581, + "id": 16951, "luminance": 0, "opaque": true, "replaceable": false, @@ -187543,7 +180586,7 @@ ] }, { - "id": 17582, + "id": 16952, "luminance": 0, "opaque": true, "replaceable": false, @@ -187555,7 +180598,7 @@ ] }, { - "id": 17583, + "id": 16953, "luminance": 0, "opaque": true, "replaceable": false, @@ -187564,7 +180607,7 @@ ] }, { - "id": 17584, + "id": 16954, "luminance": 0, "opaque": true, "replaceable": false, @@ -187574,7 +180617,7 @@ ] }, { - "id": 17585, + "id": 16955, "luminance": 0, "opaque": true, "replaceable": false, @@ -187584,7 +180627,7 @@ ] }, { - "id": 17586, + "id": 16956, "luminance": 0, "opaque": true, "replaceable": false, @@ -187593,7 +180636,7 @@ ] }, { - "id": 17587, + "id": 16957, "luminance": 0, "opaque": true, "replaceable": false, @@ -187603,7 +180646,7 @@ ] }, { - "id": 17588, + "id": 16958, "luminance": 0, "opaque": true, "replaceable": false, @@ -187613,7 +180656,7 @@ ] }, { - "id": 17589, + "id": 16959, "luminance": 0, "opaque": true, "replaceable": false, @@ -187623,7 +180666,7 @@ ] }, { - "id": 17590, + "id": 16960, "luminance": 0, "opaque": true, "replaceable": false, @@ -187635,7 +180678,7 @@ ] }, { - "id": 17591, + "id": 16961, "luminance": 0, "opaque": true, "replaceable": false, @@ -187647,7 +180690,7 @@ ] }, { - "id": 17592, + "id": 16962, "luminance": 0, "opaque": true, "replaceable": false, @@ -187657,7 +180700,7 @@ ] }, { - "id": 17593, + "id": 16963, "luminance": 0, "opaque": true, "replaceable": false, @@ -187669,7 +180712,7 @@ ] }, { - "id": 17594, + "id": 16964, "luminance": 0, "opaque": true, "replaceable": false, @@ -187681,7 +180724,7 @@ ] }, { - "id": 17595, + "id": 16965, "luminance": 0, "opaque": true, "replaceable": false, @@ -187690,7 +180733,7 @@ ] }, { - "id": 17596, + "id": 16966, "luminance": 0, "opaque": true, "replaceable": false, @@ -187700,7 +180743,7 @@ ] }, { - "id": 17597, + "id": 16967, "luminance": 0, "opaque": true, "replaceable": false, @@ -187710,7 +180753,7 @@ ] }, { - "id": 17598, + "id": 16968, "luminance": 0, "opaque": true, "replaceable": false, @@ -187719,7 +180762,7 @@ ] }, { - "id": 17599, + "id": 16969, "luminance": 0, "opaque": true, "replaceable": false, @@ -187729,7 +180772,7 @@ ] }, { - "id": 17600, + "id": 16970, "luminance": 0, "opaque": true, "replaceable": false, @@ -187739,7 +180782,7 @@ ] }, { - "id": 17601, + "id": 16971, "luminance": 0, "opaque": true, "replaceable": false, @@ -187749,7 +180792,7 @@ ] }, { - "id": 17602, + "id": 16972, "luminance": 0, "opaque": true, "replaceable": false, @@ -187761,7 +180804,7 @@ ] }, { - "id": 17603, + "id": 16973, "luminance": 0, "opaque": true, "replaceable": false, @@ -187773,7 +180816,7 @@ ] }, { - "id": 17604, + "id": 16974, "luminance": 0, "opaque": true, "replaceable": false, @@ -187783,7 +180826,7 @@ ] }, { - "id": 17605, + "id": 16975, "luminance": 0, "opaque": true, "replaceable": false, @@ -187795,7 +180838,7 @@ ] }, { - "id": 17606, + "id": 16976, "luminance": 0, "opaque": true, "replaceable": false, @@ -187807,7 +180850,7 @@ ] }, { - "id": 17607, + "id": 16977, "luminance": 0, "opaque": true, "replaceable": false, @@ -187816,7 +180859,7 @@ ] }, { - "id": 17608, + "id": 16978, "luminance": 0, "opaque": true, "replaceable": false, @@ -187826,7 +180869,7 @@ ] }, { - "id": 17609, + "id": 16979, "luminance": 0, "opaque": true, "replaceable": false, @@ -187836,7 +180879,7 @@ ] }, { - "id": 17610, + "id": 16980, "luminance": 0, "opaque": true, "replaceable": false, @@ -187845,7 +180888,7 @@ ] }, { - "id": 17611, + "id": 16981, "luminance": 0, "opaque": true, "replaceable": false, @@ -187855,7 +180898,7 @@ ] }, { - "id": 17612, + "id": 16982, "luminance": 0, "opaque": true, "replaceable": false, @@ -187865,7 +180908,7 @@ ] }, { - "id": 17613, + "id": 16983, "luminance": 0, "opaque": true, "replaceable": false, @@ -187876,7 +180919,7 @@ ] }, { - "id": 17614, + "id": 16984, "luminance": 0, "opaque": true, "replaceable": false, @@ -187889,7 +180932,7 @@ ] }, { - "id": 17615, + "id": 16985, "luminance": 0, "opaque": true, "replaceable": false, @@ -187902,7 +180945,7 @@ ] }, { - "id": 17616, + "id": 16986, "luminance": 0, "opaque": true, "replaceable": false, @@ -187913,7 +180956,7 @@ ] }, { - "id": 17617, + "id": 16987, "luminance": 0, "opaque": true, "replaceable": false, @@ -187926,7 +180969,7 @@ ] }, { - "id": 17618, + "id": 16988, "luminance": 0, "opaque": true, "replaceable": false, @@ -187939,7 +180982,7 @@ ] }, { - "id": 17619, + "id": 16989, "luminance": 0, "opaque": true, "replaceable": false, @@ -187948,7 +180991,7 @@ ] }, { - "id": 17620, + "id": 16990, "luminance": 0, "opaque": true, "replaceable": false, @@ -187959,7 +181002,7 @@ ] }, { - "id": 17621, + "id": 16991, "luminance": 0, "opaque": true, "replaceable": false, @@ -187970,7 +181013,7 @@ ] }, { - "id": 17622, + "id": 16992, "luminance": 0, "opaque": true, "replaceable": false, @@ -187979,7 +181022,7 @@ ] }, { - "id": 17623, + "id": 16993, "luminance": 0, "opaque": true, "replaceable": false, @@ -187990,7 +181033,7 @@ ] }, { - "id": 17624, + "id": 16994, "luminance": 0, "opaque": true, "replaceable": false, @@ -188001,7 +181044,7 @@ ] }, { - "id": 17625, + "id": 16995, "luminance": 0, "opaque": true, "replaceable": false, @@ -188012,7 +181055,7 @@ ] }, { - "id": 17626, + "id": 16996, "luminance": 0, "opaque": true, "replaceable": false, @@ -188025,7 +181068,7 @@ ] }, { - "id": 17627, + "id": 16997, "luminance": 0, "opaque": true, "replaceable": false, @@ -188038,7 +181081,7 @@ ] }, { - "id": 17628, + "id": 16998, "luminance": 0, "opaque": true, "replaceable": false, @@ -188049,7 +181092,7 @@ ] }, { - "id": 17629, + "id": 16999, "luminance": 0, "opaque": true, "replaceable": false, @@ -188062,7 +181105,7 @@ ] }, { - "id": 17630, + "id": 17000, "luminance": 0, "opaque": true, "replaceable": false, @@ -188075,7 +181118,7 @@ ] }, { - "id": 17631, + "id": 17001, "luminance": 0, "opaque": true, "replaceable": false, @@ -188084,7 +181127,7 @@ ] }, { - "id": 17632, + "id": 17002, "luminance": 0, "opaque": true, "replaceable": false, @@ -188095,7 +181138,7 @@ ] }, { - "id": 17633, + "id": 17003, "luminance": 0, "opaque": true, "replaceable": false, @@ -188106,7 +181149,7 @@ ] }, { - "id": 17634, + "id": 17004, "luminance": 0, "opaque": true, "replaceable": false, @@ -188115,7 +181158,7 @@ ] }, { - "id": 17635, + "id": 17005, "luminance": 0, "opaque": true, "replaceable": false, @@ -188126,7 +181169,7 @@ ] }, { - "id": 17636, + "id": 17006, "luminance": 0, "opaque": true, "replaceable": false, @@ -188137,7 +181180,7 @@ ] }, { - "id": 17637, + "id": 17007, "luminance": 0, "opaque": true, "replaceable": false, @@ -188147,7 +181190,7 @@ ] }, { - "id": 17638, + "id": 17008, "luminance": 0, "opaque": true, "replaceable": false, @@ -188159,7 +181202,7 @@ ] }, { - "id": 17639, + "id": 17009, "luminance": 0, "opaque": true, "replaceable": false, @@ -188171,7 +181214,7 @@ ] }, { - "id": 17640, + "id": 17010, "luminance": 0, "opaque": true, "replaceable": false, @@ -188181,7 +181224,7 @@ ] }, { - "id": 17641, + "id": 17011, "luminance": 0, "opaque": true, "replaceable": false, @@ -188193,7 +181236,7 @@ ] }, { - "id": 17642, + "id": 17012, "luminance": 0, "opaque": true, "replaceable": false, @@ -188205,7 +181248,7 @@ ] }, { - "id": 17643, + "id": 17013, "luminance": 0, "opaque": true, "replaceable": false, @@ -188214,7 +181257,7 @@ ] }, { - "id": 17644, + "id": 17014, "luminance": 0, "opaque": true, "replaceable": false, @@ -188224,7 +181267,7 @@ ] }, { - "id": 17645, + "id": 17015, "luminance": 0, "opaque": true, "replaceable": false, @@ -188234,7 +181277,7 @@ ] }, { - "id": 17646, + "id": 17016, "luminance": 0, "opaque": true, "replaceable": false, @@ -188243,7 +181286,7 @@ ] }, { - "id": 17647, + "id": 17017, "luminance": 0, "opaque": true, "replaceable": false, @@ -188253,7 +181296,7 @@ ] }, { - "id": 17648, + "id": 17018, "luminance": 0, "opaque": true, "replaceable": false, @@ -188263,7 +181306,7 @@ ] }, { - "id": 17649, + "id": 17019, "luminance": 0, "opaque": true, "replaceable": false, @@ -188274,7 +181317,7 @@ ] }, { - "id": 17650, + "id": 17020, "luminance": 0, "opaque": true, "replaceable": false, @@ -188287,7 +181330,7 @@ ] }, { - "id": 17651, + "id": 17021, "luminance": 0, "opaque": true, "replaceable": false, @@ -188300,7 +181343,7 @@ ] }, { - "id": 17652, + "id": 17022, "luminance": 0, "opaque": true, "replaceable": false, @@ -188311,7 +181354,7 @@ ] }, { - "id": 17653, + "id": 17023, "luminance": 0, "opaque": true, "replaceable": false, @@ -188324,7 +181367,7 @@ ] }, { - "id": 17654, + "id": 17024, "luminance": 0, "opaque": true, "replaceable": false, @@ -188337,7 +181380,7 @@ ] }, { - "id": 17655, + "id": 17025, "luminance": 0, "opaque": true, "replaceable": false, @@ -188346,7 +181389,7 @@ ] }, { - "id": 17656, + "id": 17026, "luminance": 0, "opaque": true, "replaceable": false, @@ -188357,7 +181400,7 @@ ] }, { - "id": 17657, + "id": 17027, "luminance": 0, "opaque": true, "replaceable": false, @@ -188368,7 +181411,7 @@ ] }, { - "id": 17658, + "id": 17028, "luminance": 0, "opaque": true, "replaceable": false, @@ -188377,7 +181420,7 @@ ] }, { - "id": 17659, + "id": 17029, "luminance": 0, "opaque": true, "replaceable": false, @@ -188388,7 +181431,7 @@ ] }, { - "id": 17660, + "id": 17030, "luminance": 0, "opaque": true, "replaceable": false, @@ -188399,7 +181442,7 @@ ] }, { - "id": 17661, + "id": 17031, "luminance": 0, "opaque": true, "replaceable": false, @@ -188410,7 +181453,7 @@ ] }, { - "id": 17662, + "id": 17032, "luminance": 0, "opaque": true, "replaceable": false, @@ -188423,7 +181466,7 @@ ] }, { - "id": 17663, + "id": 17033, "luminance": 0, "opaque": true, "replaceable": false, @@ -188436,7 +181479,7 @@ ] }, { - "id": 17664, + "id": 17034, "luminance": 0, "opaque": true, "replaceable": false, @@ -188447,7 +181490,7 @@ ] }, { - "id": 17665, + "id": 17035, "luminance": 0, "opaque": true, "replaceable": false, @@ -188460,7 +181503,7 @@ ] }, { - "id": 17666, + "id": 17036, "luminance": 0, "opaque": true, "replaceable": false, @@ -188473,7 +181516,7 @@ ] }, { - "id": 17667, + "id": 17037, "luminance": 0, "opaque": true, "replaceable": false, @@ -188482,7 +181525,7 @@ ] }, { - "id": 17668, + "id": 17038, "luminance": 0, "opaque": true, "replaceable": false, @@ -188493,7 +181536,7 @@ ] }, { - "id": 17669, + "id": 17039, "luminance": 0, "opaque": true, "replaceable": false, @@ -188504,7 +181547,7 @@ ] }, { - "id": 17670, + "id": 17040, "luminance": 0, "opaque": true, "replaceable": false, @@ -188513,7 +181556,7 @@ ] }, { - "id": 17671, + "id": 17041, "luminance": 0, "opaque": true, "replaceable": false, @@ -188524,7 +181567,7 @@ ] }, { - "id": 17672, + "id": 17042, "luminance": 0, "opaque": true, "replaceable": false, @@ -188535,7 +181578,7 @@ ] }, { - "id": 17673, + "id": 17043, "luminance": 0, "opaque": true, "replaceable": false, @@ -188545,7 +181588,7 @@ ] }, { - "id": 17674, + "id": 17044, "luminance": 0, "opaque": true, "replaceable": false, @@ -188556,7 +181599,7 @@ ] }, { - "id": 17675, + "id": 17045, "luminance": 0, "opaque": true, "replaceable": false, @@ -188567,7 +181610,7 @@ ] }, { - "id": 17676, + "id": 17046, "luminance": 0, "opaque": true, "replaceable": false, @@ -188577,7 +181620,7 @@ ] }, { - "id": 17677, + "id": 17047, "luminance": 0, "opaque": true, "replaceable": false, @@ -188588,7 +181631,7 @@ ] }, { - "id": 17678, + "id": 17048, "luminance": 0, "opaque": true, "replaceable": false, @@ -188599,7 +181642,7 @@ ] }, { - "id": 17679, + "id": 17049, "luminance": 0, "opaque": true, "replaceable": false, @@ -188608,7 +181651,7 @@ ] }, { - "id": 17680, + "id": 17050, "luminance": 0, "opaque": true, "replaceable": false, @@ -188617,7 +181660,7 @@ ] }, { - "id": 17681, + "id": 17051, "luminance": 0, "opaque": true, "replaceable": false, @@ -188626,7 +181669,7 @@ ] }, { - "id": 17682, + "id": 17052, "luminance": 0, "opaque": true, "replaceable": false, @@ -188635,7 +181678,7 @@ ] }, { - "id": 17683, + "id": 17053, "luminance": 0, "opaque": true, "replaceable": false, @@ -188644,7 +181687,7 @@ ] }, { - "id": 17684, + "id": 17054, "luminance": 0, "opaque": true, "replaceable": false, @@ -188653,7 +181696,7 @@ ] }, { - "id": 17685, + "id": 17055, "luminance": 0, "opaque": true, "replaceable": false, @@ -188664,7 +181707,7 @@ ] }, { - "id": 17686, + "id": 17056, "luminance": 0, "opaque": true, "replaceable": false, @@ -188676,7 +181719,7 @@ ] }, { - "id": 17687, + "id": 17057, "luminance": 0, "opaque": true, "replaceable": false, @@ -188688,7 +181731,7 @@ ] }, { - "id": 17688, + "id": 17058, "luminance": 0, "opaque": true, "replaceable": false, @@ -188699,7 +181742,7 @@ ] }, { - "id": 17689, + "id": 17059, "luminance": 0, "opaque": true, "replaceable": false, @@ -188711,7 +181754,7 @@ ] }, { - "id": 17690, + "id": 17060, "luminance": 0, "opaque": true, "replaceable": false, @@ -188723,7 +181766,7 @@ ] }, { - "id": 17691, + "id": 17061, "luminance": 0, "opaque": true, "replaceable": false, @@ -188733,7 +181776,7 @@ ] }, { - "id": 17692, + "id": 17062, "luminance": 0, "opaque": true, "replaceable": false, @@ -188743,7 +181786,7 @@ ] }, { - "id": 17693, + "id": 17063, "luminance": 0, "opaque": true, "replaceable": false, @@ -188753,7 +181796,7 @@ ] }, { - "id": 17694, + "id": 17064, "luminance": 0, "opaque": true, "replaceable": false, @@ -188763,7 +181806,7 @@ ] }, { - "id": 17695, + "id": 17065, "luminance": 0, "opaque": true, "replaceable": false, @@ -188773,7 +181816,7 @@ ] }, { - "id": 17696, + "id": 17066, "luminance": 0, "opaque": true, "replaceable": false, @@ -188783,7 +181826,7 @@ ] }, { - "id": 17697, + "id": 17067, "luminance": 0, "opaque": true, "replaceable": false, @@ -188794,7 +181837,7 @@ ] }, { - "id": 17698, + "id": 17068, "luminance": 0, "opaque": true, "replaceable": false, @@ -188806,7 +181849,7 @@ ] }, { - "id": 17699, + "id": 17069, "luminance": 0, "opaque": true, "replaceable": false, @@ -188818,7 +181861,7 @@ ] }, { - "id": 17700, + "id": 17070, "luminance": 0, "opaque": true, "replaceable": false, @@ -188829,7 +181872,7 @@ ] }, { - "id": 17701, + "id": 17071, "luminance": 0, "opaque": true, "replaceable": false, @@ -188841,7 +181884,7 @@ ] }, { - "id": 17702, + "id": 17072, "luminance": 0, "opaque": true, "replaceable": false, @@ -188853,7 +181896,7 @@ ] }, { - "id": 17703, + "id": 17073, "luminance": 0, "opaque": true, "replaceable": false, @@ -188863,7 +181906,7 @@ ] }, { - "id": 17704, + "id": 17074, "luminance": 0, "opaque": true, "replaceable": false, @@ -188873,7 +181916,7 @@ ] }, { - "id": 17705, + "id": 17075, "luminance": 0, "opaque": true, "replaceable": false, @@ -188883,7 +181926,7 @@ ] }, { - "id": 17706, + "id": 17076, "luminance": 0, "opaque": true, "replaceable": false, @@ -188893,7 +181936,7 @@ ] }, { - "id": 17707, + "id": 17077, "luminance": 0, "opaque": true, "replaceable": false, @@ -188903,7 +181946,7 @@ ] }, { - "id": 17708, + "id": 17078, "luminance": 0, "opaque": true, "replaceable": false, @@ -188913,7 +181956,7 @@ ] }, { - "id": 17709, + "id": 17079, "luminance": 0, "opaque": true, "replaceable": false, @@ -188924,7 +181967,7 @@ ] }, { - "id": 17710, + "id": 17080, "luminance": 0, "opaque": true, "replaceable": false, @@ -188936,7 +181979,7 @@ ] }, { - "id": 17711, + "id": 17081, "luminance": 0, "opaque": true, "replaceable": false, @@ -188948,7 +181991,7 @@ ] }, { - "id": 17712, + "id": 17082, "luminance": 0, "opaque": true, "replaceable": false, @@ -188959,7 +182002,7 @@ ] }, { - "id": 17713, + "id": 17083, "luminance": 0, "opaque": true, "replaceable": false, @@ -188971,7 +182014,7 @@ ] }, { - "id": 17714, + "id": 17084, "luminance": 0, "opaque": true, "replaceable": false, @@ -188983,7 +182026,7 @@ ] }, { - "id": 17715, + "id": 17085, "luminance": 0, "opaque": true, "replaceable": false, @@ -188993,7 +182036,7 @@ ] }, { - "id": 17716, + "id": 17086, "luminance": 0, "opaque": true, "replaceable": false, @@ -189003,7 +182046,7 @@ ] }, { - "id": 17717, + "id": 17087, "luminance": 0, "opaque": true, "replaceable": false, @@ -189013,7 +182056,7 @@ ] }, { - "id": 17718, + "id": 17088, "luminance": 0, "opaque": true, "replaceable": false, @@ -189023,7 +182066,7 @@ ] }, { - "id": 17719, + "id": 17089, "luminance": 0, "opaque": true, "replaceable": false, @@ -189033,7 +182076,7 @@ ] }, { - "id": 17720, + "id": 17090, "luminance": 0, "opaque": true, "replaceable": false, @@ -189043,7 +182086,7 @@ ] }, { - "id": 17721, + "id": 17091, "luminance": 0, "opaque": true, "replaceable": false, @@ -189055,7 +182098,7 @@ ] }, { - "id": 17722, + "id": 17092, "luminance": 0, "opaque": true, "replaceable": false, @@ -189068,7 +182111,7 @@ ] }, { - "id": 17723, + "id": 17093, "luminance": 0, "opaque": true, "replaceable": false, @@ -189081,7 +182124,7 @@ ] }, { - "id": 17724, + "id": 17094, "luminance": 0, "opaque": true, "replaceable": false, @@ -189093,7 +182136,7 @@ ] }, { - "id": 17725, + "id": 17095, "luminance": 0, "opaque": true, "replaceable": false, @@ -189106,7 +182149,7 @@ ] }, { - "id": 17726, + "id": 17096, "luminance": 0, "opaque": true, "replaceable": false, @@ -189119,7 +182162,7 @@ ] }, { - "id": 17727, + "id": 17097, "luminance": 0, "opaque": true, "replaceable": false, @@ -189129,7 +182172,7 @@ ] }, { - "id": 17728, + "id": 17098, "luminance": 0, "opaque": true, "replaceable": false, @@ -189140,7 +182183,7 @@ ] }, { - "id": 17729, + "id": 17099, "luminance": 0, "opaque": true, "replaceable": false, @@ -189151,7 +182194,7 @@ ] }, { - "id": 17730, + "id": 17100, "luminance": 0, "opaque": true, "replaceable": false, @@ -189161,7 +182204,7 @@ ] }, { - "id": 17731, + "id": 17101, "luminance": 0, "opaque": true, "replaceable": false, @@ -189172,7 +182215,7 @@ ] }, { - "id": 17732, + "id": 17102, "luminance": 0, "opaque": true, "replaceable": false, @@ -189183,7 +182226,7 @@ ] }, { - "id": 17733, + "id": 17103, "luminance": 0, "opaque": true, "replaceable": false, @@ -189195,7 +182238,7 @@ ] }, { - "id": 17734, + "id": 17104, "luminance": 0, "opaque": true, "replaceable": false, @@ -189208,7 +182251,7 @@ ] }, { - "id": 17735, + "id": 17105, "luminance": 0, "opaque": true, "replaceable": false, @@ -189221,7 +182264,7 @@ ] }, { - "id": 17736, + "id": 17106, "luminance": 0, "opaque": true, "replaceable": false, @@ -189233,7 +182276,7 @@ ] }, { - "id": 17737, + "id": 17107, "luminance": 0, "opaque": true, "replaceable": false, @@ -189246,7 +182289,7 @@ ] }, { - "id": 17738, + "id": 17108, "luminance": 0, "opaque": true, "replaceable": false, @@ -189259,7 +182302,7 @@ ] }, { - "id": 17739, + "id": 17109, "luminance": 0, "opaque": true, "replaceable": false, @@ -189269,7 +182312,7 @@ ] }, { - "id": 17740, + "id": 17110, "luminance": 0, "opaque": true, "replaceable": false, @@ -189280,7 +182323,7 @@ ] }, { - "id": 17741, + "id": 17111, "luminance": 0, "opaque": true, "replaceable": false, @@ -189291,7 +182334,7 @@ ] }, { - "id": 17742, + "id": 17112, "luminance": 0, "opaque": true, "replaceable": false, @@ -189301,7 +182344,7 @@ ] }, { - "id": 17743, + "id": 17113, "luminance": 0, "opaque": true, "replaceable": false, @@ -189312,7 +182355,7 @@ ] }, { - "id": 17744, + "id": 17114, "luminance": 0, "opaque": true, "replaceable": false, @@ -189323,7 +182366,7 @@ ] }, { - "id": 17745, + "id": 17115, "luminance": 0, "opaque": true, "replaceable": false, @@ -189334,7 +182377,7 @@ ] }, { - "id": 17746, + "id": 17116, "luminance": 0, "opaque": true, "replaceable": false, @@ -189346,7 +182389,7 @@ ] }, { - "id": 17747, + "id": 17117, "luminance": 0, "opaque": true, "replaceable": false, @@ -189358,7 +182401,7 @@ ] }, { - "id": 17748, + "id": 17118, "luminance": 0, "opaque": true, "replaceable": false, @@ -189369,7 +182412,7 @@ ] }, { - "id": 17749, + "id": 17119, "luminance": 0, "opaque": true, "replaceable": false, @@ -189381,7 +182424,7 @@ ] }, { - "id": 17750, + "id": 17120, "luminance": 0, "opaque": true, "replaceable": false, @@ -189393,7 +182436,7 @@ ] }, { - "id": 17751, + "id": 17121, "luminance": 0, "opaque": true, "replaceable": false, @@ -189403,7 +182446,7 @@ ] }, { - "id": 17752, + "id": 17122, "luminance": 0, "opaque": true, "replaceable": false, @@ -189413,7 +182456,7 @@ ] }, { - "id": 17753, + "id": 17123, "luminance": 0, "opaque": true, "replaceable": false, @@ -189423,7 +182466,7 @@ ] }, { - "id": 17754, + "id": 17124, "luminance": 0, "opaque": true, "replaceable": false, @@ -189433,7 +182476,7 @@ ] }, { - "id": 17755, + "id": 17125, "luminance": 0, "opaque": true, "replaceable": false, @@ -189443,7 +182486,7 @@ ] }, { - "id": 17756, + "id": 17126, "luminance": 0, "opaque": true, "replaceable": false, @@ -189453,7 +182496,7 @@ ] }, { - "id": 17757, + "id": 17127, "luminance": 0, "opaque": true, "replaceable": false, @@ -189465,7 +182508,7 @@ ] }, { - "id": 17758, + "id": 17128, "luminance": 0, "opaque": true, "replaceable": false, @@ -189478,7 +182521,7 @@ ] }, { - "id": 17759, + "id": 17129, "luminance": 0, "opaque": true, "replaceable": false, @@ -189491,7 +182534,7 @@ ] }, { - "id": 17760, + "id": 17130, "luminance": 0, "opaque": true, "replaceable": false, @@ -189503,7 +182546,7 @@ ] }, { - "id": 17761, + "id": 17131, "luminance": 0, "opaque": true, "replaceable": false, @@ -189516,7 +182559,7 @@ ] }, { - "id": 17762, + "id": 17132, "luminance": 0, "opaque": true, "replaceable": false, @@ -189529,7 +182572,7 @@ ] }, { - "id": 17763, + "id": 17133, "luminance": 0, "opaque": true, "replaceable": false, @@ -189539,7 +182582,7 @@ ] }, { - "id": 17764, + "id": 17134, "luminance": 0, "opaque": true, "replaceable": false, @@ -189550,7 +182593,7 @@ ] }, { - "id": 17765, + "id": 17135, "luminance": 0, "opaque": true, "replaceable": false, @@ -189561,7 +182604,7 @@ ] }, { - "id": 17766, + "id": 17136, "luminance": 0, "opaque": true, "replaceable": false, @@ -189571,7 +182614,7 @@ ] }, { - "id": 17767, + "id": 17137, "luminance": 0, "opaque": true, "replaceable": false, @@ -189582,7 +182625,7 @@ ] }, { - "id": 17768, + "id": 17138, "luminance": 0, "opaque": true, "replaceable": false, @@ -189593,7 +182636,7 @@ ] }, { - "id": 17769, + "id": 17139, "luminance": 0, "opaque": true, "replaceable": false, @@ -189605,7 +182648,7 @@ ] }, { - "id": 17770, + "id": 17140, "luminance": 0, "opaque": true, "replaceable": false, @@ -189618,7 +182661,7 @@ ] }, { - "id": 17771, + "id": 17141, "luminance": 0, "opaque": true, "replaceable": false, @@ -189631,7 +182674,7 @@ ] }, { - "id": 17772, + "id": 17142, "luminance": 0, "opaque": true, "replaceable": false, @@ -189643,7 +182686,7 @@ ] }, { - "id": 17773, + "id": 17143, "luminance": 0, "opaque": true, "replaceable": false, @@ -189656,7 +182699,7 @@ ] }, { - "id": 17774, + "id": 17144, "luminance": 0, "opaque": true, "replaceable": false, @@ -189669,7 +182712,7 @@ ] }, { - "id": 17775, + "id": 17145, "luminance": 0, "opaque": true, "replaceable": false, @@ -189679,7 +182722,7 @@ ] }, { - "id": 17776, + "id": 17146, "luminance": 0, "opaque": true, "replaceable": false, @@ -189690,7 +182733,7 @@ ] }, { - "id": 17777, + "id": 17147, "luminance": 0, "opaque": true, "replaceable": false, @@ -189701,7 +182744,7 @@ ] }, { - "id": 17778, + "id": 17148, "luminance": 0, "opaque": true, "replaceable": false, @@ -189711,7 +182754,7 @@ ] }, { - "id": 17779, + "id": 17149, "luminance": 0, "opaque": true, "replaceable": false, @@ -189722,7 +182765,7 @@ ] }, { - "id": 17780, + "id": 17150, "luminance": 0, "opaque": true, "replaceable": false, @@ -189733,7 +182776,7 @@ ] }, { - "id": 17781, + "id": 17151, "luminance": 0, "opaque": true, "replaceable": false, @@ -189743,7 +182786,7 @@ ] }, { - "id": 17782, + "id": 17152, "luminance": 0, "opaque": true, "replaceable": false, @@ -189754,7 +182797,7 @@ ] }, { - "id": 17783, + "id": 17153, "luminance": 0, "opaque": true, "replaceable": false, @@ -189765,7 +182808,7 @@ ] }, { - "id": 17784, + "id": 17154, "luminance": 0, "opaque": true, "replaceable": false, @@ -189775,7 +182818,7 @@ ] }, { - "id": 17785, + "id": 17155, "luminance": 0, "opaque": true, "replaceable": false, @@ -189786,7 +182829,7 @@ ] }, { - "id": 17786, + "id": 17156, "luminance": 0, "opaque": true, "replaceable": false, @@ -189797,7 +182840,7 @@ ] }, { - "id": 17787, + "id": 17157, "luminance": 0, "opaque": true, "replaceable": false, @@ -189806,7 +182849,7 @@ ] }, { - "id": 17788, + "id": 17158, "luminance": 0, "opaque": true, "replaceable": false, @@ -189815,7 +182858,7 @@ ] }, { - "id": 17789, + "id": 17159, "luminance": 0, "opaque": true, "replaceable": false, @@ -189824,7 +182867,7 @@ ] }, { - "id": 17790, + "id": 17160, "luminance": 0, "opaque": true, "replaceable": false, @@ -189833,7 +182876,7 @@ ] }, { - "id": 17791, + "id": 17161, "luminance": 0, "opaque": true, "replaceable": false, @@ -189842,7 +182885,7 @@ ] }, { - "id": 17792, + "id": 17162, "luminance": 0, "opaque": true, "replaceable": false, @@ -189851,7 +182894,7 @@ ] }, { - "id": 17793, + "id": 17163, "luminance": 0, "opaque": true, "replaceable": false, @@ -189862,7 +182905,7 @@ ] }, { - "id": 17794, + "id": 17164, "luminance": 0, "opaque": true, "replaceable": false, @@ -189874,7 +182917,7 @@ ] }, { - "id": 17795, + "id": 17165, "luminance": 0, "opaque": true, "replaceable": false, @@ -189886,7 +182929,7 @@ ] }, { - "id": 17796, + "id": 17166, "luminance": 0, "opaque": true, "replaceable": false, @@ -189897,7 +182940,7 @@ ] }, { - "id": 17797, + "id": 17167, "luminance": 0, "opaque": true, "replaceable": false, @@ -189909,7 +182952,7 @@ ] }, { - "id": 17798, + "id": 17168, "luminance": 0, "opaque": true, "replaceable": false, @@ -189921,7 +182964,7 @@ ] }, { - "id": 17799, + "id": 17169, "luminance": 0, "opaque": true, "replaceable": false, @@ -189931,7 +182974,7 @@ ] }, { - "id": 17800, + "id": 17170, "luminance": 0, "opaque": true, "replaceable": false, @@ -189941,7 +182984,7 @@ ] }, { - "id": 17801, + "id": 17171, "luminance": 0, "opaque": true, "replaceable": false, @@ -189951,7 +182994,7 @@ ] }, { - "id": 17802, + "id": 17172, "luminance": 0, "opaque": true, "replaceable": false, @@ -189961,7 +183004,7 @@ ] }, { - "id": 17803, + "id": 17173, "luminance": 0, "opaque": true, "replaceable": false, @@ -189971,7 +183014,7 @@ ] }, { - "id": 17804, + "id": 17174, "luminance": 0, "opaque": true, "replaceable": false, @@ -189981,7 +183024,7 @@ ] }, { - "id": 17805, + "id": 17175, "luminance": 0, "opaque": true, "replaceable": false, @@ -189992,7 +183035,7 @@ ] }, { - "id": 17806, + "id": 17176, "luminance": 0, "opaque": true, "replaceable": false, @@ -190004,7 +183047,7 @@ ] }, { - "id": 17807, + "id": 17177, "luminance": 0, "opaque": true, "replaceable": false, @@ -190016,7 +183059,7 @@ ] }, { - "id": 17808, + "id": 17178, "luminance": 0, "opaque": true, "replaceable": false, @@ -190027,7 +183070,7 @@ ] }, { - "id": 17809, + "id": 17179, "luminance": 0, "opaque": true, "replaceable": false, @@ -190039,7 +183082,7 @@ ] }, { - "id": 17810, + "id": 17180, "luminance": 0, "opaque": true, "replaceable": false, @@ -190051,7 +183094,7 @@ ] }, { - "id": 17811, + "id": 17181, "luminance": 0, "opaque": true, "replaceable": false, @@ -190061,7 +183104,7 @@ ] }, { - "id": 17812, + "id": 17182, "luminance": 0, "opaque": true, "replaceable": false, @@ -190071,7 +183114,7 @@ ] }, { - "id": 17813, + "id": 17183, "luminance": 0, "opaque": true, "replaceable": false, @@ -190081,7 +183124,7 @@ ] }, { - "id": 17814, + "id": 17184, "luminance": 0, "opaque": true, "replaceable": false, @@ -190091,7 +183134,7 @@ ] }, { - "id": 17815, + "id": 17185, "luminance": 0, "opaque": true, "replaceable": false, @@ -190101,7 +183144,7 @@ ] }, { - "id": 17816, + "id": 17186, "luminance": 0, "opaque": true, "replaceable": false, @@ -190111,7 +183154,7 @@ ] }, { - "id": 17817, + "id": 17187, "luminance": 0, "opaque": true, "replaceable": false, @@ -190122,7 +183165,7 @@ ] }, { - "id": 17818, + "id": 17188, "luminance": 0, "opaque": true, "replaceable": false, @@ -190134,7 +183177,7 @@ ] }, { - "id": 17819, + "id": 17189, "luminance": 0, "opaque": true, "replaceable": false, @@ -190146,7 +183189,7 @@ ] }, { - "id": 17820, + "id": 17190, "luminance": 0, "opaque": true, "replaceable": false, @@ -190157,7 +183200,7 @@ ] }, { - "id": 17821, + "id": 17191, "luminance": 0, "opaque": true, "replaceable": false, @@ -190169,7 +183212,7 @@ ] }, { - "id": 17822, + "id": 17192, "luminance": 0, "opaque": true, "replaceable": false, @@ -190181,7 +183224,7 @@ ] }, { - "id": 17823, + "id": 17193, "luminance": 0, "opaque": true, "replaceable": false, @@ -190191,7 +183234,7 @@ ] }, { - "id": 17824, + "id": 17194, "luminance": 0, "opaque": true, "replaceable": false, @@ -190201,7 +183244,7 @@ ] }, { - "id": 17825, + "id": 17195, "luminance": 0, "opaque": true, "replaceable": false, @@ -190211,7 +183254,7 @@ ] }, { - "id": 17826, + "id": 17196, "luminance": 0, "opaque": true, "replaceable": false, @@ -190221,7 +183264,7 @@ ] }, { - "id": 17827, + "id": 17197, "luminance": 0, "opaque": true, "replaceable": false, @@ -190231,7 +183274,7 @@ ] }, { - "id": 17828, + "id": 17198, "luminance": 0, "opaque": true, "replaceable": false, @@ -190241,7 +183284,7 @@ ] }, { - "id": 17829, + "id": 17199, "luminance": 0, "opaque": true, "replaceable": false, @@ -190253,7 +183296,7 @@ ] }, { - "id": 17830, + "id": 17200, "luminance": 0, "opaque": true, "replaceable": false, @@ -190266,7 +183309,7 @@ ] }, { - "id": 17831, + "id": 17201, "luminance": 0, "opaque": true, "replaceable": false, @@ -190279,7 +183322,7 @@ ] }, { - "id": 17832, + "id": 17202, "luminance": 0, "opaque": true, "replaceable": false, @@ -190291,7 +183334,7 @@ ] }, { - "id": 17833, + "id": 17203, "luminance": 0, "opaque": true, "replaceable": false, @@ -190304,7 +183347,7 @@ ] }, { - "id": 17834, + "id": 17204, "luminance": 0, "opaque": true, "replaceable": false, @@ -190317,7 +183360,7 @@ ] }, { - "id": 17835, + "id": 17205, "luminance": 0, "opaque": true, "replaceable": false, @@ -190327,7 +183370,7 @@ ] }, { - "id": 17836, + "id": 17206, "luminance": 0, "opaque": true, "replaceable": false, @@ -190338,7 +183381,7 @@ ] }, { - "id": 17837, + "id": 17207, "luminance": 0, "opaque": true, "replaceable": false, @@ -190349,7 +183392,7 @@ ] }, { - "id": 17838, + "id": 17208, "luminance": 0, "opaque": true, "replaceable": false, @@ -190359,7 +183402,7 @@ ] }, { - "id": 17839, + "id": 17209, "luminance": 0, "opaque": true, "replaceable": false, @@ -190370,7 +183413,7 @@ ] }, { - "id": 17840, + "id": 17210, "luminance": 0, "opaque": true, "replaceable": false, @@ -190381,7 +183424,7 @@ ] }, { - "id": 17841, + "id": 17211, "luminance": 0, "opaque": true, "replaceable": false, @@ -190393,7 +183436,7 @@ ] }, { - "id": 17842, + "id": 17212, "luminance": 0, "opaque": true, "replaceable": false, @@ -190406,7 +183449,7 @@ ] }, { - "id": 17843, + "id": 17213, "luminance": 0, "opaque": true, "replaceable": false, @@ -190419,7 +183462,7 @@ ] }, { - "id": 17844, + "id": 17214, "luminance": 0, "opaque": true, "replaceable": false, @@ -190431,7 +183474,7 @@ ] }, { - "id": 17845, + "id": 17215, "luminance": 0, "opaque": true, "replaceable": false, @@ -190444,7 +183487,7 @@ ] }, { - "id": 17846, + "id": 17216, "luminance": 0, "opaque": true, "replaceable": false, @@ -190457,7 +183500,7 @@ ] }, { - "id": 17847, + "id": 17217, "luminance": 0, "opaque": true, "replaceable": false, @@ -190467,7 +183510,7 @@ ] }, { - "id": 17848, + "id": 17218, "luminance": 0, "opaque": true, "replaceable": false, @@ -190478,7 +183521,7 @@ ] }, { - "id": 17849, + "id": 17219, "luminance": 0, "opaque": true, "replaceable": false, @@ -190489,7 +183532,7 @@ ] }, { - "id": 17850, + "id": 17220, "luminance": 0, "opaque": true, "replaceable": false, @@ -190499,7 +183542,7 @@ ] }, { - "id": 17851, + "id": 17221, "luminance": 0, "opaque": true, "replaceable": false, @@ -190510,7 +183553,7 @@ ] }, { - "id": 17852, + "id": 17222, "luminance": 0, "opaque": true, "replaceable": false, @@ -190521,7 +183564,7 @@ ] }, { - "id": 17853, + "id": 17223, "luminance": 0, "opaque": true, "replaceable": false, @@ -190532,7 +183575,7 @@ ] }, { - "id": 17854, + "id": 17224, "luminance": 0, "opaque": true, "replaceable": false, @@ -190544,7 +183587,7 @@ ] }, { - "id": 17855, + "id": 17225, "luminance": 0, "opaque": true, "replaceable": false, @@ -190556,7 +183599,7 @@ ] }, { - "id": 17856, + "id": 17226, "luminance": 0, "opaque": true, "replaceable": false, @@ -190567,7 +183610,7 @@ ] }, { - "id": 17857, + "id": 17227, "luminance": 0, "opaque": true, "replaceable": false, @@ -190579,7 +183622,7 @@ ] }, { - "id": 17858, + "id": 17228, "luminance": 0, "opaque": true, "replaceable": false, @@ -190591,7 +183634,7 @@ ] }, { - "id": 17859, + "id": 17229, "luminance": 0, "opaque": true, "replaceable": false, @@ -190601,7 +183644,7 @@ ] }, { - "id": 17860, + "id": 17230, "luminance": 0, "opaque": true, "replaceable": false, @@ -190611,7 +183654,7 @@ ] }, { - "id": 17861, + "id": 17231, "luminance": 0, "opaque": true, "replaceable": false, @@ -190621,7 +183664,7 @@ ] }, { - "id": 17862, + "id": 17232, "luminance": 0, "opaque": true, "replaceable": false, @@ -190631,7 +183674,7 @@ ] }, { - "id": 17863, + "id": 17233, "luminance": 0, "opaque": true, "replaceable": false, @@ -190641,7 +183684,7 @@ ] }, { - "id": 17864, + "id": 17234, "luminance": 0, "opaque": true, "replaceable": false, @@ -190651,7 +183694,7 @@ ] }, { - "id": 17865, + "id": 17235, "luminance": 0, "opaque": true, "replaceable": false, @@ -190663,7 +183706,7 @@ ] }, { - "id": 17866, + "id": 17236, "luminance": 0, "opaque": true, "replaceable": false, @@ -190676,7 +183719,7 @@ ] }, { - "id": 17867, + "id": 17237, "luminance": 0, "opaque": true, "replaceable": false, @@ -190689,7 +183732,7 @@ ] }, { - "id": 17868, + "id": 17238, "luminance": 0, "opaque": true, "replaceable": false, @@ -190701,7 +183744,7 @@ ] }, { - "id": 17869, + "id": 17239, "luminance": 0, "opaque": true, "replaceable": false, @@ -190714,7 +183757,7 @@ ] }, { - "id": 17870, + "id": 17240, "luminance": 0, "opaque": true, "replaceable": false, @@ -190727,7 +183770,7 @@ ] }, { - "id": 17871, + "id": 17241, "luminance": 0, "opaque": true, "replaceable": false, @@ -190737,7 +183780,7 @@ ] }, { - "id": 17872, + "id": 17242, "luminance": 0, "opaque": true, "replaceable": false, @@ -190748,7 +183791,7 @@ ] }, { - "id": 17873, + "id": 17243, "luminance": 0, "opaque": true, "replaceable": false, @@ -190759,7 +183802,7 @@ ] }, { - "id": 17874, + "id": 17244, "luminance": 0, "opaque": true, "replaceable": false, @@ -190769,7 +183812,7 @@ ] }, { - "id": 17875, + "id": 17245, "luminance": 0, "opaque": true, "replaceable": false, @@ -190780,7 +183823,7 @@ ] }, { - "id": 17876, + "id": 17246, "luminance": 0, "opaque": true, "replaceable": false, @@ -190791,7 +183834,7 @@ ] }, { - "id": 17877, + "id": 17247, "luminance": 0, "opaque": true, "replaceable": false, @@ -190803,7 +183846,7 @@ ] }, { - "id": 17878, + "id": 17248, "luminance": 0, "opaque": true, "replaceable": false, @@ -190816,7 +183859,7 @@ ] }, { - "id": 17879, + "id": 17249, "luminance": 0, "opaque": true, "replaceable": false, @@ -190829,7 +183872,7 @@ ] }, { - "id": 17880, + "id": 17250, "luminance": 0, "opaque": true, "replaceable": false, @@ -190841,7 +183884,7 @@ ] }, { - "id": 17881, + "id": 17251, "luminance": 0, "opaque": true, "replaceable": false, @@ -190854,7 +183897,7 @@ ] }, { - "id": 17882, + "id": 17252, "luminance": 0, "opaque": true, "replaceable": false, @@ -190867,7 +183910,7 @@ ] }, { - "id": 17883, + "id": 17253, "luminance": 0, "opaque": true, "replaceable": false, @@ -190877,7 +183920,7 @@ ] }, { - "id": 17884, + "id": 17254, "luminance": 0, "opaque": true, "replaceable": false, @@ -190888,7 +183931,7 @@ ] }, { - "id": 17885, + "id": 17255, "luminance": 0, "opaque": true, "replaceable": false, @@ -190899,7 +183942,7 @@ ] }, { - "id": 17886, + "id": 17256, "luminance": 0, "opaque": true, "replaceable": false, @@ -190909,7 +183952,7 @@ ] }, { - "id": 17887, + "id": 17257, "luminance": 0, "opaque": true, "replaceable": false, @@ -190920,7 +183963,7 @@ ] }, { - "id": 17888, + "id": 17258, "luminance": 0, "opaque": true, "replaceable": false, @@ -190933,9 +183976,9 @@ ] }, { - "id": 767, - "name": "diorite_wall", - "translation_key": "block.minecraft.diorite_wall", + "id": 769, + "name": "sandstone_wall", + "translation_key": "block.minecraft.sandstone_wall", "item_id": 387, "properties": [ { @@ -190985,10 +184028,10 @@ ] } ], - "default_state_id": 17892, + "default_state_id": 17262, "states": [ { - "id": 17889, + "id": 17259, "luminance": 0, "opaque": true, "replaceable": false, @@ -190997,7 +184040,7 @@ ] }, { - "id": 17890, + "id": 17260, "luminance": 0, "opaque": true, "replaceable": false, @@ -191008,7 +184051,7 @@ ] }, { - "id": 17891, + "id": 17261, "luminance": 0, "opaque": true, "replaceable": false, @@ -191019,7 +184062,7 @@ ] }, { - "id": 17892, + "id": 17262, "luminance": 0, "opaque": true, "replaceable": false, @@ -191028,7 +184071,7 @@ ] }, { - "id": 17893, + "id": 17263, "luminance": 0, "opaque": true, "replaceable": false, @@ -191039,7 +184082,7 @@ ] }, { - "id": 17894, + "id": 17264, "luminance": 0, "opaque": true, "replaceable": false, @@ -191050,14 +184093,14 @@ ] }, { - "id": 17895, + "id": 17265, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 17896, + "id": 17266, "luminance": 0, "opaque": true, "replaceable": false, @@ -191066,7 +184109,7 @@ ] }, { - "id": 17897, + "id": 17267, "luminance": 0, "opaque": true, "replaceable": false, @@ -191075,14 +184118,14 @@ ] }, { - "id": 17898, + "id": 17268, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 17899, + "id": 17269, "luminance": 0, "opaque": true, "replaceable": false, @@ -191091,7 +184134,7 @@ ] }, { - "id": 17900, + "id": 17270, "luminance": 0, "opaque": true, "replaceable": false, @@ -191100,7 +184143,7 @@ ] }, { - "id": 17901, + "id": 17271, "luminance": 0, "opaque": true, "replaceable": false, @@ -191110,7 +184153,7 @@ ] }, { - "id": 17902, + "id": 17272, "luminance": 0, "opaque": true, "replaceable": false, @@ -191122,7 +184165,7 @@ ] }, { - "id": 17903, + "id": 17273, "luminance": 0, "opaque": true, "replaceable": false, @@ -191134,7 +184177,7 @@ ] }, { - "id": 17904, + "id": 17274, "luminance": 0, "opaque": true, "replaceable": false, @@ -191144,7 +184187,7 @@ ] }, { - "id": 17905, + "id": 17275, "luminance": 0, "opaque": true, "replaceable": false, @@ -191156,7 +184199,7 @@ ] }, { - "id": 17906, + "id": 17276, "luminance": 0, "opaque": true, "replaceable": false, @@ -191168,7 +184211,7 @@ ] }, { - "id": 17907, + "id": 17277, "luminance": 0, "opaque": true, "replaceable": false, @@ -191177,7 +184220,7 @@ ] }, { - "id": 17908, + "id": 17278, "luminance": 0, "opaque": true, "replaceable": false, @@ -191187,7 +184230,7 @@ ] }, { - "id": 17909, + "id": 17279, "luminance": 0, "opaque": true, "replaceable": false, @@ -191197,7 +184240,7 @@ ] }, { - "id": 17910, + "id": 17280, "luminance": 0, "opaque": true, "replaceable": false, @@ -191206,7 +184249,7 @@ ] }, { - "id": 17911, + "id": 17281, "luminance": 0, "opaque": true, "replaceable": false, @@ -191216,7 +184259,7 @@ ] }, { - "id": 17912, + "id": 17282, "luminance": 0, "opaque": true, "replaceable": false, @@ -191226,7 +184269,7 @@ ] }, { - "id": 17913, + "id": 17283, "luminance": 0, "opaque": true, "replaceable": false, @@ -191236,7 +184279,7 @@ ] }, { - "id": 17914, + "id": 17284, "luminance": 0, "opaque": true, "replaceable": false, @@ -191248,7 +184291,7 @@ ] }, { - "id": 17915, + "id": 17285, "luminance": 0, "opaque": true, "replaceable": false, @@ -191260,7 +184303,7 @@ ] }, { - "id": 17916, + "id": 17286, "luminance": 0, "opaque": true, "replaceable": false, @@ -191270,7 +184313,7 @@ ] }, { - "id": 17917, + "id": 17287, "luminance": 0, "opaque": true, "replaceable": false, @@ -191282,7 +184325,7 @@ ] }, { - "id": 17918, + "id": 17288, "luminance": 0, "opaque": true, "replaceable": false, @@ -191294,7 +184337,7 @@ ] }, { - "id": 17919, + "id": 17289, "luminance": 0, "opaque": true, "replaceable": false, @@ -191303,7 +184346,7 @@ ] }, { - "id": 17920, + "id": 17290, "luminance": 0, "opaque": true, "replaceable": false, @@ -191313,7 +184356,7 @@ ] }, { - "id": 17921, + "id": 17291, "luminance": 0, "opaque": true, "replaceable": false, @@ -191323,7 +184366,7 @@ ] }, { - "id": 17922, + "id": 17292, "luminance": 0, "opaque": true, "replaceable": false, @@ -191332,7 +184375,7 @@ ] }, { - "id": 17923, + "id": 17293, "luminance": 0, "opaque": true, "replaceable": false, @@ -191342,7 +184385,7 @@ ] }, { - "id": 17924, + "id": 17294, "luminance": 0, "opaque": true, "replaceable": false, @@ -191352,7 +184395,7 @@ ] }, { - "id": 17925, + "id": 17295, "luminance": 0, "opaque": true, "replaceable": false, @@ -191362,7 +184405,7 @@ ] }, { - "id": 17926, + "id": 17296, "luminance": 0, "opaque": true, "replaceable": false, @@ -191374,7 +184417,7 @@ ] }, { - "id": 17927, + "id": 17297, "luminance": 0, "opaque": true, "replaceable": false, @@ -191386,7 +184429,7 @@ ] }, { - "id": 17928, + "id": 17298, "luminance": 0, "opaque": true, "replaceable": false, @@ -191396,7 +184439,7 @@ ] }, { - "id": 17929, + "id": 17299, "luminance": 0, "opaque": true, "replaceable": false, @@ -191408,7 +184451,7 @@ ] }, { - "id": 17930, + "id": 17300, "luminance": 0, "opaque": true, "replaceable": false, @@ -191420,7 +184463,7 @@ ] }, { - "id": 17931, + "id": 17301, "luminance": 0, "opaque": true, "replaceable": false, @@ -191429,7 +184472,7 @@ ] }, { - "id": 17932, + "id": 17302, "luminance": 0, "opaque": true, "replaceable": false, @@ -191439,7 +184482,7 @@ ] }, { - "id": 17933, + "id": 17303, "luminance": 0, "opaque": true, "replaceable": false, @@ -191449,7 +184492,7 @@ ] }, { - "id": 17934, + "id": 17304, "luminance": 0, "opaque": true, "replaceable": false, @@ -191458,7 +184501,7 @@ ] }, { - "id": 17935, + "id": 17305, "luminance": 0, "opaque": true, "replaceable": false, @@ -191468,7 +184511,7 @@ ] }, { - "id": 17936, + "id": 17306, "luminance": 0, "opaque": true, "replaceable": false, @@ -191478,7 +184521,7 @@ ] }, { - "id": 17937, + "id": 17307, "luminance": 0, "opaque": true, "replaceable": false, @@ -191489,7 +184532,7 @@ ] }, { - "id": 17938, + "id": 17308, "luminance": 0, "opaque": true, "replaceable": false, @@ -191502,7 +184545,7 @@ ] }, { - "id": 17939, + "id": 17309, "luminance": 0, "opaque": true, "replaceable": false, @@ -191515,7 +184558,7 @@ ] }, { - "id": 17940, + "id": 17310, "luminance": 0, "opaque": true, "replaceable": false, @@ -191526,7 +184569,7 @@ ] }, { - "id": 17941, + "id": 17311, "luminance": 0, "opaque": true, "replaceable": false, @@ -191539,7 +184582,7 @@ ] }, { - "id": 17942, + "id": 17312, "luminance": 0, "opaque": true, "replaceable": false, @@ -191552,7 +184595,7 @@ ] }, { - "id": 17943, + "id": 17313, "luminance": 0, "opaque": true, "replaceable": false, @@ -191561,7 +184604,7 @@ ] }, { - "id": 17944, + "id": 17314, "luminance": 0, "opaque": true, "replaceable": false, @@ -191572,7 +184615,7 @@ ] }, { - "id": 17945, + "id": 17315, "luminance": 0, "opaque": true, "replaceable": false, @@ -191583,7 +184626,7 @@ ] }, { - "id": 17946, + "id": 17316, "luminance": 0, "opaque": true, "replaceable": false, @@ -191592,7 +184635,7 @@ ] }, { - "id": 17947, + "id": 17317, "luminance": 0, "opaque": true, "replaceable": false, @@ -191603,7 +184646,7 @@ ] }, { - "id": 17948, + "id": 17318, "luminance": 0, "opaque": true, "replaceable": false, @@ -191614,7 +184657,7 @@ ] }, { - "id": 17949, + "id": 17319, "luminance": 0, "opaque": true, "replaceable": false, @@ -191625,7 +184668,7 @@ ] }, { - "id": 17950, + "id": 17320, "luminance": 0, "opaque": true, "replaceable": false, @@ -191638,7 +184681,7 @@ ] }, { - "id": 17951, + "id": 17321, "luminance": 0, "opaque": true, "replaceable": false, @@ -191651,7 +184694,7 @@ ] }, { - "id": 17952, + "id": 17322, "luminance": 0, "opaque": true, "replaceable": false, @@ -191662,7 +184705,7 @@ ] }, { - "id": 17953, + "id": 17323, "luminance": 0, "opaque": true, "replaceable": false, @@ -191675,7 +184718,7 @@ ] }, { - "id": 17954, + "id": 17324, "luminance": 0, "opaque": true, "replaceable": false, @@ -191688,7 +184731,7 @@ ] }, { - "id": 17955, + "id": 17325, "luminance": 0, "opaque": true, "replaceable": false, @@ -191697,7 +184740,7 @@ ] }, { - "id": 17956, + "id": 17326, "luminance": 0, "opaque": true, "replaceable": false, @@ -191708,7 +184751,7 @@ ] }, { - "id": 17957, + "id": 17327, "luminance": 0, "opaque": true, "replaceable": false, @@ -191719,7 +184762,7 @@ ] }, { - "id": 17958, + "id": 17328, "luminance": 0, "opaque": true, "replaceable": false, @@ -191728,7 +184771,7 @@ ] }, { - "id": 17959, + "id": 17329, "luminance": 0, "opaque": true, "replaceable": false, @@ -191739,7 +184782,7 @@ ] }, { - "id": 17960, + "id": 17330, "luminance": 0, "opaque": true, "replaceable": false, @@ -191750,7 +184793,7 @@ ] }, { - "id": 17961, + "id": 17331, "luminance": 0, "opaque": true, "replaceable": false, @@ -191760,7 +184803,7 @@ ] }, { - "id": 17962, + "id": 17332, "luminance": 0, "opaque": true, "replaceable": false, @@ -191772,7 +184815,7 @@ ] }, { - "id": 17963, + "id": 17333, "luminance": 0, "opaque": true, "replaceable": false, @@ -191784,7 +184827,7 @@ ] }, { - "id": 17964, + "id": 17334, "luminance": 0, "opaque": true, "replaceable": false, @@ -191794,7 +184837,7 @@ ] }, { - "id": 17965, + "id": 17335, "luminance": 0, "opaque": true, "replaceable": false, @@ -191806,7 +184849,7 @@ ] }, { - "id": 17966, + "id": 17336, "luminance": 0, "opaque": true, "replaceable": false, @@ -191818,7 +184861,7 @@ ] }, { - "id": 17967, + "id": 17337, "luminance": 0, "opaque": true, "replaceable": false, @@ -191827,7 +184870,7 @@ ] }, { - "id": 17968, + "id": 17338, "luminance": 0, "opaque": true, "replaceable": false, @@ -191837,7 +184880,7 @@ ] }, { - "id": 17969, + "id": 17339, "luminance": 0, "opaque": true, "replaceable": false, @@ -191847,7 +184890,7 @@ ] }, { - "id": 17970, + "id": 17340, "luminance": 0, "opaque": true, "replaceable": false, @@ -191856,7 +184899,7 @@ ] }, { - "id": 17971, + "id": 17341, "luminance": 0, "opaque": true, "replaceable": false, @@ -191866,7 +184909,7 @@ ] }, { - "id": 17972, + "id": 17342, "luminance": 0, "opaque": true, "replaceable": false, @@ -191876,7 +184919,7 @@ ] }, { - "id": 17973, + "id": 17343, "luminance": 0, "opaque": true, "replaceable": false, @@ -191887,7 +184930,7 @@ ] }, { - "id": 17974, + "id": 17344, "luminance": 0, "opaque": true, "replaceable": false, @@ -191900,7 +184943,7 @@ ] }, { - "id": 17975, + "id": 17345, "luminance": 0, "opaque": true, "replaceable": false, @@ -191913,7 +184956,7 @@ ] }, { - "id": 17976, + "id": 17346, "luminance": 0, "opaque": true, "replaceable": false, @@ -191924,7 +184967,7 @@ ] }, { - "id": 17977, + "id": 17347, "luminance": 0, "opaque": true, "replaceable": false, @@ -191937,7 +184980,7 @@ ] }, { - "id": 17978, + "id": 17348, "luminance": 0, "opaque": true, "replaceable": false, @@ -191950,7 +184993,7 @@ ] }, { - "id": 17979, + "id": 17349, "luminance": 0, "opaque": true, "replaceable": false, @@ -191959,7 +185002,7 @@ ] }, { - "id": 17980, + "id": 17350, "luminance": 0, "opaque": true, "replaceable": false, @@ -191970,7 +185013,7 @@ ] }, { - "id": 17981, + "id": 17351, "luminance": 0, "opaque": true, "replaceable": false, @@ -191981,7 +185024,7 @@ ] }, { - "id": 17982, + "id": 17352, "luminance": 0, "opaque": true, "replaceable": false, @@ -191990,7 +185033,7 @@ ] }, { - "id": 17983, + "id": 17353, "luminance": 0, "opaque": true, "replaceable": false, @@ -192001,7 +185044,7 @@ ] }, { - "id": 17984, + "id": 17354, "luminance": 0, "opaque": true, "replaceable": false, @@ -192012,7 +185055,7 @@ ] }, { - "id": 17985, + "id": 17355, "luminance": 0, "opaque": true, "replaceable": false, @@ -192023,7 +185066,7 @@ ] }, { - "id": 17986, + "id": 17356, "luminance": 0, "opaque": true, "replaceable": false, @@ -192036,7 +185079,7 @@ ] }, { - "id": 17987, + "id": 17357, "luminance": 0, "opaque": true, "replaceable": false, @@ -192049,7 +185092,7 @@ ] }, { - "id": 17988, + "id": 17358, "luminance": 0, "opaque": true, "replaceable": false, @@ -192060,7 +185103,7 @@ ] }, { - "id": 17989, + "id": 17359, "luminance": 0, "opaque": true, "replaceable": false, @@ -192073,7 +185116,7 @@ ] }, { - "id": 17990, + "id": 17360, "luminance": 0, "opaque": true, "replaceable": false, @@ -192086,7 +185129,7 @@ ] }, { - "id": 17991, + "id": 17361, "luminance": 0, "opaque": true, "replaceable": false, @@ -192095,7 +185138,7 @@ ] }, { - "id": 17992, + "id": 17362, "luminance": 0, "opaque": true, "replaceable": false, @@ -192106,7 +185149,7 @@ ] }, { - "id": 17993, + "id": 17363, "luminance": 0, "opaque": true, "replaceable": false, @@ -192117,7 +185160,7 @@ ] }, { - "id": 17994, + "id": 17364, "luminance": 0, "opaque": true, "replaceable": false, @@ -192126,7 +185169,7 @@ ] }, { - "id": 17995, + "id": 17365, "luminance": 0, "opaque": true, "replaceable": false, @@ -192137,7 +185180,7 @@ ] }, { - "id": 17996, + "id": 17366, "luminance": 0, "opaque": true, "replaceable": false, @@ -192148,7 +185191,7 @@ ] }, { - "id": 17997, + "id": 17367, "luminance": 0, "opaque": true, "replaceable": false, @@ -192158,7 +185201,7 @@ ] }, { - "id": 17998, + "id": 17368, "luminance": 0, "opaque": true, "replaceable": false, @@ -192169,7 +185212,7 @@ ] }, { - "id": 17999, + "id": 17369, "luminance": 0, "opaque": true, "replaceable": false, @@ -192180,7 +185223,7 @@ ] }, { - "id": 18000, + "id": 17370, "luminance": 0, "opaque": true, "replaceable": false, @@ -192190,7 +185233,7 @@ ] }, { - "id": 18001, + "id": 17371, "luminance": 0, "opaque": true, "replaceable": false, @@ -192201,7 +185244,7 @@ ] }, { - "id": 18002, + "id": 17372, "luminance": 0, "opaque": true, "replaceable": false, @@ -192212,7 +185255,7 @@ ] }, { - "id": 18003, + "id": 17373, "luminance": 0, "opaque": true, "replaceable": false, @@ -192221,7 +185264,7 @@ ] }, { - "id": 18004, + "id": 17374, "luminance": 0, "opaque": true, "replaceable": false, @@ -192230,7 +185273,7 @@ ] }, { - "id": 18005, + "id": 17375, "luminance": 0, "opaque": true, "replaceable": false, @@ -192239,7 +185282,7 @@ ] }, { - "id": 18006, + "id": 17376, "luminance": 0, "opaque": true, "replaceable": false, @@ -192248,7 +185291,7 @@ ] }, { - "id": 18007, + "id": 17377, "luminance": 0, "opaque": true, "replaceable": false, @@ -192257,7 +185300,7 @@ ] }, { - "id": 18008, + "id": 17378, "luminance": 0, "opaque": true, "replaceable": false, @@ -192266,7 +185309,7 @@ ] }, { - "id": 18009, + "id": 17379, "luminance": 0, "opaque": true, "replaceable": false, @@ -192277,7 +185320,7 @@ ] }, { - "id": 18010, + "id": 17380, "luminance": 0, "opaque": true, "replaceable": false, @@ -192289,7 +185332,7 @@ ] }, { - "id": 18011, + "id": 17381, "luminance": 0, "opaque": true, "replaceable": false, @@ -192301,7 +185344,7 @@ ] }, { - "id": 18012, + "id": 17382, "luminance": 0, "opaque": true, "replaceable": false, @@ -192312,7 +185355,7 @@ ] }, { - "id": 18013, + "id": 17383, "luminance": 0, "opaque": true, "replaceable": false, @@ -192324,7 +185367,7 @@ ] }, { - "id": 18014, + "id": 17384, "luminance": 0, "opaque": true, "replaceable": false, @@ -192336,7 +185379,7 @@ ] }, { - "id": 18015, + "id": 17385, "luminance": 0, "opaque": true, "replaceable": false, @@ -192346,7 +185389,7 @@ ] }, { - "id": 18016, + "id": 17386, "luminance": 0, "opaque": true, "replaceable": false, @@ -192356,7 +185399,7 @@ ] }, { - "id": 18017, + "id": 17387, "luminance": 0, "opaque": true, "replaceable": false, @@ -192366,7 +185409,7 @@ ] }, { - "id": 18018, + "id": 17388, "luminance": 0, "opaque": true, "replaceable": false, @@ -192376,7 +185419,7 @@ ] }, { - "id": 18019, + "id": 17389, "luminance": 0, "opaque": true, "replaceable": false, @@ -192386,7 +185429,7 @@ ] }, { - "id": 18020, + "id": 17390, "luminance": 0, "opaque": true, "replaceable": false, @@ -192396,7 +185439,7 @@ ] }, { - "id": 18021, + "id": 17391, "luminance": 0, "opaque": true, "replaceable": false, @@ -192407,7 +185450,7 @@ ] }, { - "id": 18022, + "id": 17392, "luminance": 0, "opaque": true, "replaceable": false, @@ -192419,7 +185462,7 @@ ] }, { - "id": 18023, + "id": 17393, "luminance": 0, "opaque": true, "replaceable": false, @@ -192431,7 +185474,7 @@ ] }, { - "id": 18024, + "id": 17394, "luminance": 0, "opaque": true, "replaceable": false, @@ -192442,7 +185485,7 @@ ] }, { - "id": 18025, + "id": 17395, "luminance": 0, "opaque": true, "replaceable": false, @@ -192454,7 +185497,7 @@ ] }, { - "id": 18026, + "id": 17396, "luminance": 0, "opaque": true, "replaceable": false, @@ -192466,7 +185509,7 @@ ] }, { - "id": 18027, + "id": 17397, "luminance": 0, "opaque": true, "replaceable": false, @@ -192476,7 +185519,7 @@ ] }, { - "id": 18028, + "id": 17398, "luminance": 0, "opaque": true, "replaceable": false, @@ -192486,7 +185529,7 @@ ] }, { - "id": 18029, + "id": 17399, "luminance": 0, "opaque": true, "replaceable": false, @@ -192496,7 +185539,7 @@ ] }, { - "id": 18030, + "id": 17400, "luminance": 0, "opaque": true, "replaceable": false, @@ -192506,7 +185549,7 @@ ] }, { - "id": 18031, + "id": 17401, "luminance": 0, "opaque": true, "replaceable": false, @@ -192516,7 +185559,7 @@ ] }, { - "id": 18032, + "id": 17402, "luminance": 0, "opaque": true, "replaceable": false, @@ -192526,7 +185569,7 @@ ] }, { - "id": 18033, + "id": 17403, "luminance": 0, "opaque": true, "replaceable": false, @@ -192537,7 +185580,7 @@ ] }, { - "id": 18034, + "id": 17404, "luminance": 0, "opaque": true, "replaceable": false, @@ -192549,7 +185592,7 @@ ] }, { - "id": 18035, + "id": 17405, "luminance": 0, "opaque": true, "replaceable": false, @@ -192561,7 +185604,7 @@ ] }, { - "id": 18036, + "id": 17406, "luminance": 0, "opaque": true, "replaceable": false, @@ -192572,7 +185615,7 @@ ] }, { - "id": 18037, + "id": 17407, "luminance": 0, "opaque": true, "replaceable": false, @@ -192584,7 +185627,7 @@ ] }, { - "id": 18038, + "id": 17408, "luminance": 0, "opaque": true, "replaceable": false, @@ -192596,7 +185639,7 @@ ] }, { - "id": 18039, + "id": 17409, "luminance": 0, "opaque": true, "replaceable": false, @@ -192606,7 +185649,7 @@ ] }, { - "id": 18040, + "id": 17410, "luminance": 0, "opaque": true, "replaceable": false, @@ -192616,7 +185659,7 @@ ] }, { - "id": 18041, + "id": 17411, "luminance": 0, "opaque": true, "replaceable": false, @@ -192626,7 +185669,7 @@ ] }, { - "id": 18042, + "id": 17412, "luminance": 0, "opaque": true, "replaceable": false, @@ -192636,7 +185679,7 @@ ] }, { - "id": 18043, + "id": 17413, "luminance": 0, "opaque": true, "replaceable": false, @@ -192646,7 +185689,7 @@ ] }, { - "id": 18044, + "id": 17414, "luminance": 0, "opaque": true, "replaceable": false, @@ -192656,7 +185699,7 @@ ] }, { - "id": 18045, + "id": 17415, "luminance": 0, "opaque": true, "replaceable": false, @@ -192668,7 +185711,7 @@ ] }, { - "id": 18046, + "id": 17416, "luminance": 0, "opaque": true, "replaceable": false, @@ -192681,7 +185724,7 @@ ] }, { - "id": 18047, + "id": 17417, "luminance": 0, "opaque": true, "replaceable": false, @@ -192694,7 +185737,7 @@ ] }, { - "id": 18048, + "id": 17418, "luminance": 0, "opaque": true, "replaceable": false, @@ -192706,7 +185749,7 @@ ] }, { - "id": 18049, + "id": 17419, "luminance": 0, "opaque": true, "replaceable": false, @@ -192719,7 +185762,7 @@ ] }, { - "id": 18050, + "id": 17420, "luminance": 0, "opaque": true, "replaceable": false, @@ -192732,7 +185775,7 @@ ] }, { - "id": 18051, + "id": 17421, "luminance": 0, "opaque": true, "replaceable": false, @@ -192742,7 +185785,7 @@ ] }, { - "id": 18052, + "id": 17422, "luminance": 0, "opaque": true, "replaceable": false, @@ -192753,7 +185796,7 @@ ] }, { - "id": 18053, + "id": 17423, "luminance": 0, "opaque": true, "replaceable": false, @@ -192764,7 +185807,7 @@ ] }, { - "id": 18054, + "id": 17424, "luminance": 0, "opaque": true, "replaceable": false, @@ -192774,7 +185817,7 @@ ] }, { - "id": 18055, + "id": 17425, "luminance": 0, "opaque": true, "replaceable": false, @@ -192785,7 +185828,7 @@ ] }, { - "id": 18056, + "id": 17426, "luminance": 0, "opaque": true, "replaceable": false, @@ -192796,7 +185839,7 @@ ] }, { - "id": 18057, + "id": 17427, "luminance": 0, "opaque": true, "replaceable": false, @@ -192808,7 +185851,7 @@ ] }, { - "id": 18058, + "id": 17428, "luminance": 0, "opaque": true, "replaceable": false, @@ -192821,7 +185864,7 @@ ] }, { - "id": 18059, + "id": 17429, "luminance": 0, "opaque": true, "replaceable": false, @@ -192834,7 +185877,7 @@ ] }, { - "id": 18060, + "id": 17430, "luminance": 0, "opaque": true, "replaceable": false, @@ -192846,7 +185889,7 @@ ] }, { - "id": 18061, + "id": 17431, "luminance": 0, "opaque": true, "replaceable": false, @@ -192859,7 +185902,7 @@ ] }, { - "id": 18062, + "id": 17432, "luminance": 0, "opaque": true, "replaceable": false, @@ -192872,7 +185915,7 @@ ] }, { - "id": 18063, + "id": 17433, "luminance": 0, "opaque": true, "replaceable": false, @@ -192882,7 +185925,7 @@ ] }, { - "id": 18064, + "id": 17434, "luminance": 0, "opaque": true, "replaceable": false, @@ -192893,7 +185936,7 @@ ] }, { - "id": 18065, + "id": 17435, "luminance": 0, "opaque": true, "replaceable": false, @@ -192904,7 +185947,7 @@ ] }, { - "id": 18066, + "id": 17436, "luminance": 0, "opaque": true, "replaceable": false, @@ -192914,7 +185957,7 @@ ] }, { - "id": 18067, + "id": 17437, "luminance": 0, "opaque": true, "replaceable": false, @@ -192925,7 +185968,7 @@ ] }, { - "id": 18068, + "id": 17438, "luminance": 0, "opaque": true, "replaceable": false, @@ -192936,7 +185979,7 @@ ] }, { - "id": 18069, + "id": 17439, "luminance": 0, "opaque": true, "replaceable": false, @@ -192947,7 +185990,7 @@ ] }, { - "id": 18070, + "id": 17440, "luminance": 0, "opaque": true, "replaceable": false, @@ -192959,7 +186002,7 @@ ] }, { - "id": 18071, + "id": 17441, "luminance": 0, "opaque": true, "replaceable": false, @@ -192971,7 +186014,7 @@ ] }, { - "id": 18072, + "id": 17442, "luminance": 0, "opaque": true, "replaceable": false, @@ -192982,7 +186025,7 @@ ] }, { - "id": 18073, + "id": 17443, "luminance": 0, "opaque": true, "replaceable": false, @@ -192994,7 +186037,7 @@ ] }, { - "id": 18074, + "id": 17444, "luminance": 0, "opaque": true, "replaceable": false, @@ -193006,7 +186049,7 @@ ] }, { - "id": 18075, + "id": 17445, "luminance": 0, "opaque": true, "replaceable": false, @@ -193016,7 +186059,7 @@ ] }, { - "id": 18076, + "id": 17446, "luminance": 0, "opaque": true, "replaceable": false, @@ -193026,7 +186069,7 @@ ] }, { - "id": 18077, + "id": 17447, "luminance": 0, "opaque": true, "replaceable": false, @@ -193036,7 +186079,7 @@ ] }, { - "id": 18078, + "id": 17448, "luminance": 0, "opaque": true, "replaceable": false, @@ -193046,7 +186089,7 @@ ] }, { - "id": 18079, + "id": 17449, "luminance": 0, "opaque": true, "replaceable": false, @@ -193056,7 +186099,7 @@ ] }, { - "id": 18080, + "id": 17450, "luminance": 0, "opaque": true, "replaceable": false, @@ -193066,7 +186109,7 @@ ] }, { - "id": 18081, + "id": 17451, "luminance": 0, "opaque": true, "replaceable": false, @@ -193078,7 +186121,7 @@ ] }, { - "id": 18082, + "id": 17452, "luminance": 0, "opaque": true, "replaceable": false, @@ -193091,7 +186134,7 @@ ] }, { - "id": 18083, + "id": 17453, "luminance": 0, "opaque": true, "replaceable": false, @@ -193104,7 +186147,7 @@ ] }, { - "id": 18084, + "id": 17454, "luminance": 0, "opaque": true, "replaceable": false, @@ -193116,7 +186159,7 @@ ] }, { - "id": 18085, + "id": 17455, "luminance": 0, "opaque": true, "replaceable": false, @@ -193129,7 +186172,7 @@ ] }, { - "id": 18086, + "id": 17456, "luminance": 0, "opaque": true, "replaceable": false, @@ -193142,7 +186185,7 @@ ] }, { - "id": 18087, + "id": 17457, "luminance": 0, "opaque": true, "replaceable": false, @@ -193152,7 +186195,7 @@ ] }, { - "id": 18088, + "id": 17458, "luminance": 0, "opaque": true, "replaceable": false, @@ -193163,7 +186206,7 @@ ] }, { - "id": 18089, + "id": 17459, "luminance": 0, "opaque": true, "replaceable": false, @@ -193174,7 +186217,7 @@ ] }, { - "id": 18090, + "id": 17460, "luminance": 0, "opaque": true, "replaceable": false, @@ -193184,7 +186227,7 @@ ] }, { - "id": 18091, + "id": 17461, "luminance": 0, "opaque": true, "replaceable": false, @@ -193195,7 +186238,7 @@ ] }, { - "id": 18092, + "id": 17462, "luminance": 0, "opaque": true, "replaceable": false, @@ -193206,7 +186249,7 @@ ] }, { - "id": 18093, + "id": 17463, "luminance": 0, "opaque": true, "replaceable": false, @@ -193218,7 +186261,7 @@ ] }, { - "id": 18094, + "id": 17464, "luminance": 0, "opaque": true, "replaceable": false, @@ -193231,7 +186274,7 @@ ] }, { - "id": 18095, + "id": 17465, "luminance": 0, "opaque": true, "replaceable": false, @@ -193244,7 +186287,7 @@ ] }, { - "id": 18096, + "id": 17466, "luminance": 0, "opaque": true, "replaceable": false, @@ -193256,7 +186299,7 @@ ] }, { - "id": 18097, + "id": 17467, "luminance": 0, "opaque": true, "replaceable": false, @@ -193269,7 +186312,7 @@ ] }, { - "id": 18098, + "id": 17468, "luminance": 0, "opaque": true, "replaceable": false, @@ -193282,7 +186325,7 @@ ] }, { - "id": 18099, + "id": 17469, "luminance": 0, "opaque": true, "replaceable": false, @@ -193292,7 +186335,7 @@ ] }, { - "id": 18100, + "id": 17470, "luminance": 0, "opaque": true, "replaceable": false, @@ -193303,7 +186346,7 @@ ] }, { - "id": 18101, + "id": 17471, "luminance": 0, "opaque": true, "replaceable": false, @@ -193314,7 +186357,7 @@ ] }, { - "id": 18102, + "id": 17472, "luminance": 0, "opaque": true, "replaceable": false, @@ -193324,7 +186367,7 @@ ] }, { - "id": 18103, + "id": 17473, "luminance": 0, "opaque": true, "replaceable": false, @@ -193335,7 +186378,7 @@ ] }, { - "id": 18104, + "id": 17474, "luminance": 0, "opaque": true, "replaceable": false, @@ -193346,7 +186389,7 @@ ] }, { - "id": 18105, + "id": 17475, "luminance": 0, "opaque": true, "replaceable": false, @@ -193356,7 +186399,7 @@ ] }, { - "id": 18106, + "id": 17476, "luminance": 0, "opaque": true, "replaceable": false, @@ -193367,7 +186410,7 @@ ] }, { - "id": 18107, + "id": 17477, "luminance": 0, "opaque": true, "replaceable": false, @@ -193378,7 +186421,7 @@ ] }, { - "id": 18108, + "id": 17478, "luminance": 0, "opaque": true, "replaceable": false, @@ -193388,7 +186431,7 @@ ] }, { - "id": 18109, + "id": 17479, "luminance": 0, "opaque": true, "replaceable": false, @@ -193399,7 +186442,7 @@ ] }, { - "id": 18110, + "id": 17480, "luminance": 0, "opaque": true, "replaceable": false, @@ -193410,7 +186453,7 @@ ] }, { - "id": 18111, + "id": 17481, "luminance": 0, "opaque": true, "replaceable": false, @@ -193419,7 +186462,7 @@ ] }, { - "id": 18112, + "id": 17482, "luminance": 0, "opaque": true, "replaceable": false, @@ -193428,7 +186471,7 @@ ] }, { - "id": 18113, + "id": 17483, "luminance": 0, "opaque": true, "replaceable": false, @@ -193437,7 +186480,7 @@ ] }, { - "id": 18114, + "id": 17484, "luminance": 0, "opaque": true, "replaceable": false, @@ -193446,7 +186489,7 @@ ] }, { - "id": 18115, + "id": 17485, "luminance": 0, "opaque": true, "replaceable": false, @@ -193455,7 +186498,7 @@ ] }, { - "id": 18116, + "id": 17486, "luminance": 0, "opaque": true, "replaceable": false, @@ -193464,7 +186507,7 @@ ] }, { - "id": 18117, + "id": 17487, "luminance": 0, "opaque": true, "replaceable": false, @@ -193475,7 +186518,7 @@ ] }, { - "id": 18118, + "id": 17488, "luminance": 0, "opaque": true, "replaceable": false, @@ -193487,7 +186530,7 @@ ] }, { - "id": 18119, + "id": 17489, "luminance": 0, "opaque": true, "replaceable": false, @@ -193499,7 +186542,7 @@ ] }, { - "id": 18120, + "id": 17490, "luminance": 0, "opaque": true, "replaceable": false, @@ -193510,7 +186553,7 @@ ] }, { - "id": 18121, + "id": 17491, "luminance": 0, "opaque": true, "replaceable": false, @@ -193522,7 +186565,7 @@ ] }, { - "id": 18122, + "id": 17492, "luminance": 0, "opaque": true, "replaceable": false, @@ -193534,7 +186577,7 @@ ] }, { - "id": 18123, + "id": 17493, "luminance": 0, "opaque": true, "replaceable": false, @@ -193544,7 +186587,7 @@ ] }, { - "id": 18124, + "id": 17494, "luminance": 0, "opaque": true, "replaceable": false, @@ -193554,7 +186597,7 @@ ] }, { - "id": 18125, + "id": 17495, "luminance": 0, "opaque": true, "replaceable": false, @@ -193564,7 +186607,7 @@ ] }, { - "id": 18126, + "id": 17496, "luminance": 0, "opaque": true, "replaceable": false, @@ -193574,7 +186617,7 @@ ] }, { - "id": 18127, + "id": 17497, "luminance": 0, "opaque": true, "replaceable": false, @@ -193584,7 +186627,7 @@ ] }, { - "id": 18128, + "id": 17498, "luminance": 0, "opaque": true, "replaceable": false, @@ -193594,7 +186637,7 @@ ] }, { - "id": 18129, + "id": 17499, "luminance": 0, "opaque": true, "replaceable": false, @@ -193605,7 +186648,7 @@ ] }, { - "id": 18130, + "id": 17500, "luminance": 0, "opaque": true, "replaceable": false, @@ -193617,7 +186660,7 @@ ] }, { - "id": 18131, + "id": 17501, "luminance": 0, "opaque": true, "replaceable": false, @@ -193629,7 +186672,7 @@ ] }, { - "id": 18132, + "id": 17502, "luminance": 0, "opaque": true, "replaceable": false, @@ -193640,7 +186683,7 @@ ] }, { - "id": 18133, + "id": 17503, "luminance": 0, "opaque": true, "replaceable": false, @@ -193652,7 +186695,7 @@ ] }, { - "id": 18134, + "id": 17504, "luminance": 0, "opaque": true, "replaceable": false, @@ -193664,7 +186707,7 @@ ] }, { - "id": 18135, + "id": 17505, "luminance": 0, "opaque": true, "replaceable": false, @@ -193674,7 +186717,7 @@ ] }, { - "id": 18136, + "id": 17506, "luminance": 0, "opaque": true, "replaceable": false, @@ -193684,7 +186727,7 @@ ] }, { - "id": 18137, + "id": 17507, "luminance": 0, "opaque": true, "replaceable": false, @@ -193694,7 +186737,7 @@ ] }, { - "id": 18138, + "id": 17508, "luminance": 0, "opaque": true, "replaceable": false, @@ -193704,7 +186747,7 @@ ] }, { - "id": 18139, + "id": 17509, "luminance": 0, "opaque": true, "replaceable": false, @@ -193714,7 +186757,7 @@ ] }, { - "id": 18140, + "id": 17510, "luminance": 0, "opaque": true, "replaceable": false, @@ -193724,7 +186767,7 @@ ] }, { - "id": 18141, + "id": 17511, "luminance": 0, "opaque": true, "replaceable": false, @@ -193735,7 +186778,7 @@ ] }, { - "id": 18142, + "id": 17512, "luminance": 0, "opaque": true, "replaceable": false, @@ -193747,7 +186790,7 @@ ] }, { - "id": 18143, + "id": 17513, "luminance": 0, "opaque": true, "replaceable": false, @@ -193759,7 +186802,7 @@ ] }, { - "id": 18144, + "id": 17514, "luminance": 0, "opaque": true, "replaceable": false, @@ -193770,7 +186813,7 @@ ] }, { - "id": 18145, + "id": 17515, "luminance": 0, "opaque": true, "replaceable": false, @@ -193782,7 +186825,7 @@ ] }, { - "id": 18146, + "id": 17516, "luminance": 0, "opaque": true, "replaceable": false, @@ -193794,7 +186837,7 @@ ] }, { - "id": 18147, + "id": 17517, "luminance": 0, "opaque": true, "replaceable": false, @@ -193804,7 +186847,7 @@ ] }, { - "id": 18148, + "id": 17518, "luminance": 0, "opaque": true, "replaceable": false, @@ -193814,7 +186857,7 @@ ] }, { - "id": 18149, + "id": 17519, "luminance": 0, "opaque": true, "replaceable": false, @@ -193824,7 +186867,7 @@ ] }, { - "id": 18150, + "id": 17520, "luminance": 0, "opaque": true, "replaceable": false, @@ -193834,7 +186877,7 @@ ] }, { - "id": 18151, + "id": 17521, "luminance": 0, "opaque": true, "replaceable": false, @@ -193844,7 +186887,7 @@ ] }, { - "id": 18152, + "id": 17522, "luminance": 0, "opaque": true, "replaceable": false, @@ -193854,7 +186897,7 @@ ] }, { - "id": 18153, + "id": 17523, "luminance": 0, "opaque": true, "replaceable": false, @@ -193866,7 +186909,7 @@ ] }, { - "id": 18154, + "id": 17524, "luminance": 0, "opaque": true, "replaceable": false, @@ -193879,7 +186922,7 @@ ] }, { - "id": 18155, + "id": 17525, "luminance": 0, "opaque": true, "replaceable": false, @@ -193892,7 +186935,7 @@ ] }, { - "id": 18156, + "id": 17526, "luminance": 0, "opaque": true, "replaceable": false, @@ -193904,7 +186947,7 @@ ] }, { - "id": 18157, + "id": 17527, "luminance": 0, "opaque": true, "replaceable": false, @@ -193917,7 +186960,7 @@ ] }, { - "id": 18158, + "id": 17528, "luminance": 0, "opaque": true, "replaceable": false, @@ -193930,7 +186973,7 @@ ] }, { - "id": 18159, + "id": 17529, "luminance": 0, "opaque": true, "replaceable": false, @@ -193940,7 +186983,7 @@ ] }, { - "id": 18160, + "id": 17530, "luminance": 0, "opaque": true, "replaceable": false, @@ -193951,7 +186994,7 @@ ] }, { - "id": 18161, + "id": 17531, "luminance": 0, "opaque": true, "replaceable": false, @@ -193962,7 +187005,7 @@ ] }, { - "id": 18162, + "id": 17532, "luminance": 0, "opaque": true, "replaceable": false, @@ -193972,7 +187015,7 @@ ] }, { - "id": 18163, + "id": 17533, "luminance": 0, "opaque": true, "replaceable": false, @@ -193983,7 +187026,7 @@ ] }, { - "id": 18164, + "id": 17534, "luminance": 0, "opaque": true, "replaceable": false, @@ -193994,7 +187037,7 @@ ] }, { - "id": 18165, + "id": 17535, "luminance": 0, "opaque": true, "replaceable": false, @@ -194006,7 +187049,7 @@ ] }, { - "id": 18166, + "id": 17536, "luminance": 0, "opaque": true, "replaceable": false, @@ -194019,7 +187062,7 @@ ] }, { - "id": 18167, + "id": 17537, "luminance": 0, "opaque": true, "replaceable": false, @@ -194032,7 +187075,7 @@ ] }, { - "id": 18168, + "id": 17538, "luminance": 0, "opaque": true, "replaceable": false, @@ -194044,7 +187087,7 @@ ] }, { - "id": 18169, + "id": 17539, "luminance": 0, "opaque": true, "replaceable": false, @@ -194057,7 +187100,7 @@ ] }, { - "id": 18170, + "id": 17540, "luminance": 0, "opaque": true, "replaceable": false, @@ -194070,7 +187113,7 @@ ] }, { - "id": 18171, + "id": 17541, "luminance": 0, "opaque": true, "replaceable": false, @@ -194080,7 +187123,7 @@ ] }, { - "id": 18172, + "id": 17542, "luminance": 0, "opaque": true, "replaceable": false, @@ -194091,7 +187134,7 @@ ] }, { - "id": 18173, + "id": 17543, "luminance": 0, "opaque": true, "replaceable": false, @@ -194102,7 +187145,7 @@ ] }, { - "id": 18174, + "id": 17544, "luminance": 0, "opaque": true, "replaceable": false, @@ -194112,7 +187155,7 @@ ] }, { - "id": 18175, + "id": 17545, "luminance": 0, "opaque": true, "replaceable": false, @@ -194123,7 +187166,7 @@ ] }, { - "id": 18176, + "id": 17546, "luminance": 0, "opaque": true, "replaceable": false, @@ -194134,7 +187177,7 @@ ] }, { - "id": 18177, + "id": 17547, "luminance": 0, "opaque": true, "replaceable": false, @@ -194145,7 +187188,7 @@ ] }, { - "id": 18178, + "id": 17548, "luminance": 0, "opaque": true, "replaceable": false, @@ -194157,7 +187200,7 @@ ] }, { - "id": 18179, + "id": 17549, "luminance": 0, "opaque": true, "replaceable": false, @@ -194169,7 +187212,7 @@ ] }, { - "id": 18180, + "id": 17550, "luminance": 0, "opaque": true, "replaceable": false, @@ -194180,7 +187223,7 @@ ] }, { - "id": 18181, + "id": 17551, "luminance": 0, "opaque": true, "replaceable": false, @@ -194192,7 +187235,7 @@ ] }, { - "id": 18182, + "id": 17552, "luminance": 0, "opaque": true, "replaceable": false, @@ -194204,7 +187247,7 @@ ] }, { - "id": 18183, + "id": 17553, "luminance": 0, "opaque": true, "replaceable": false, @@ -194214,7 +187257,7 @@ ] }, { - "id": 18184, + "id": 17554, "luminance": 0, "opaque": true, "replaceable": false, @@ -194224,7 +187267,7 @@ ] }, { - "id": 18185, + "id": 17555, "luminance": 0, "opaque": true, "replaceable": false, @@ -194234,7 +187277,7 @@ ] }, { - "id": 18186, + "id": 17556, "luminance": 0, "opaque": true, "replaceable": false, @@ -194244,7 +187287,7 @@ ] }, { - "id": 18187, + "id": 17557, "luminance": 0, "opaque": true, "replaceable": false, @@ -194254,7 +187297,7 @@ ] }, { - "id": 18188, + "id": 17558, "luminance": 0, "opaque": true, "replaceable": false, @@ -194264,7 +187307,7 @@ ] }, { - "id": 18189, + "id": 17559, "luminance": 0, "opaque": true, "replaceable": false, @@ -194276,7 +187319,7 @@ ] }, { - "id": 18190, + "id": 17560, "luminance": 0, "opaque": true, "replaceable": false, @@ -194289,7 +187332,7 @@ ] }, { - "id": 18191, + "id": 17561, "luminance": 0, "opaque": true, "replaceable": false, @@ -194302,7 +187345,7 @@ ] }, { - "id": 18192, + "id": 17562, "luminance": 0, "opaque": true, "replaceable": false, @@ -194314,7 +187357,7 @@ ] }, { - "id": 18193, + "id": 17563, "luminance": 0, "opaque": true, "replaceable": false, @@ -194327,7 +187370,7 @@ ] }, { - "id": 18194, + "id": 17564, "luminance": 0, "opaque": true, "replaceable": false, @@ -194340,7 +187383,7 @@ ] }, { - "id": 18195, + "id": 17565, "luminance": 0, "opaque": true, "replaceable": false, @@ -194350,7 +187393,7 @@ ] }, { - "id": 18196, + "id": 17566, "luminance": 0, "opaque": true, "replaceable": false, @@ -194361,7 +187404,7 @@ ] }, { - "id": 18197, + "id": 17567, "luminance": 0, "opaque": true, "replaceable": false, @@ -194372,7 +187415,7 @@ ] }, { - "id": 18198, + "id": 17568, "luminance": 0, "opaque": true, "replaceable": false, @@ -194382,7 +187425,7 @@ ] }, { - "id": 18199, + "id": 17569, "luminance": 0, "opaque": true, "replaceable": false, @@ -194393,7 +187436,7 @@ ] }, { - "id": 18200, + "id": 17570, "luminance": 0, "opaque": true, "replaceable": false, @@ -194404,7 +187447,7 @@ ] }, { - "id": 18201, + "id": 17571, "luminance": 0, "opaque": true, "replaceable": false, @@ -194416,7 +187459,7 @@ ] }, { - "id": 18202, + "id": 17572, "luminance": 0, "opaque": true, "replaceable": false, @@ -194429,7 +187472,7 @@ ] }, { - "id": 18203, + "id": 17573, "luminance": 0, "opaque": true, "replaceable": false, @@ -194442,7 +187485,7 @@ ] }, { - "id": 18204, + "id": 17574, "luminance": 0, "opaque": true, "replaceable": false, @@ -194454,7 +187497,7 @@ ] }, { - "id": 18205, + "id": 17575, "luminance": 0, "opaque": true, "replaceable": false, @@ -194467,7 +187510,7 @@ ] }, { - "id": 18206, + "id": 17576, "luminance": 0, "opaque": true, "replaceable": false, @@ -194480,7 +187523,7 @@ ] }, { - "id": 18207, + "id": 17577, "luminance": 0, "opaque": true, "replaceable": false, @@ -194490,7 +187533,7 @@ ] }, { - "id": 18208, + "id": 17578, "luminance": 0, "opaque": true, "replaceable": false, @@ -194501,7 +187544,7 @@ ] }, { - "id": 18209, + "id": 17579, "luminance": 0, "opaque": true, "replaceable": false, @@ -194512,7 +187555,7 @@ ] }, { - "id": 18210, + "id": 17580, "luminance": 0, "opaque": true, "replaceable": false, @@ -194522,7 +187565,7 @@ ] }, { - "id": 18211, + "id": 17581, "luminance": 0, "opaque": true, "replaceable": false, @@ -194533,7 +187576,7 @@ ] }, { - "id": 18212, + "id": 17582, "luminance": 0, "opaque": true, "replaceable": false, @@ -194546,10 +187589,7236 @@ ] }, { - "id": 768, + "id": 770, + "name": "end_stone_brick_wall", + "translation_key": "block.minecraft.end_stone_brick_wall", + "item_id": 388, + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 17586, + "states": [ + { + "id": 17583, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140 + ] + }, + { + "id": 17584, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 17585, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 17586, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140 + ] + }, + { + "id": 17587, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 17588, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 17589, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 17590, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17591, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17592, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 17593, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17594, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17595, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 17596, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17597, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17598, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 17599, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17600, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17601, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 17602, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17603, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17604, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 17605, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17606, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17607, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 17608, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17609, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17610, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 17611, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17612, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17613, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 17614, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17615, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17616, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 17617, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17618, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17619, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 17620, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17621, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17622, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 17623, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17624, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17625, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17626, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17627, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17628, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17629, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17630, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17631, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17632, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17633, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17634, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17635, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17636, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17637, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17638, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17639, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17640, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17641, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17642, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17643, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17644, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17645, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17646, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17647, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17648, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17649, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17650, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17651, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17652, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17653, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17654, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17655, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 17656, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17657, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17658, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 17659, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17660, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17661, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17662, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17663, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17664, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17665, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17666, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17667, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17668, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17669, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17670, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17671, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17672, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17673, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17674, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17675, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17676, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17677, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17678, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17679, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17680, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17681, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17682, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17683, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17684, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17685, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17686, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17687, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17688, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17689, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17690, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17691, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 17692, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 17693, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 17694, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 17695, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 17696, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 17697, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 17698, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 17699, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 17700, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 17701, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 17702, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 17703, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 17704, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17705, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17706, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 17707, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17708, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17709, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 17710, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17711, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17712, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 17713, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17714, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17715, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 17716, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17717, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17718, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 17719, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17720, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17721, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 17722, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17723, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17724, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 17725, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17726, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17727, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 17728, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17729, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17730, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 17731, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17732, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17733, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 17734, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17735, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17736, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 17737, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17738, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17739, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17740, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17741, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17742, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17743, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17744, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17745, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17746, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17747, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17748, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17749, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17750, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17751, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17752, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17753, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17754, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17755, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17756, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17757, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17758, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17759, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17760, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17761, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17762, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17763, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 17764, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17765, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17766, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 17767, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17768, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17769, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 17770, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17771, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17772, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 17773, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17774, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17775, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17776, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17777, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17778, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17779, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17780, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17781, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17782, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17783, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17784, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17785, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17786, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17787, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17788, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17789, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17790, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17791, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17792, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17793, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17794, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17795, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17796, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17797, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17798, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17799, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 17800, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 17801, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 17802, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 17803, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 17804, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 17805, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 17806, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 17807, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 17808, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 17809, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 17810, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 17811, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 17812, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17813, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17814, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 17815, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17816, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17817, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 17818, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17819, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17820, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 17821, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17822, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17823, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 17824, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17825, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17826, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 17827, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17828, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 17829, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 17830, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17831, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17832, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 17833, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17834, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 17835, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 17836, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17837, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17838, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 17839, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17840, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17841, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 17842, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17843, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17844, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 17845, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17846, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17847, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17848, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17849, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17850, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17851, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17852, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17853, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17854, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17855, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17856, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17857, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17858, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17859, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17860, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17861, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17862, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17863, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17864, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17865, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17866, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17867, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17868, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17869, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17870, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17871, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 17872, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17873, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17874, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 17875, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17876, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 17877, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 17878, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17879, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17880, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 17881, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17882, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 17883, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17884, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17885, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17886, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17887, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17888, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17889, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17890, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17891, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17892, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17893, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17894, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17895, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17896, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17897, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17898, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 17899, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17900, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17901, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17902, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17903, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17904, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 17905, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 17906, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + } + ] + }, + { + "id": 771, + "name": "diorite_wall", + "translation_key": "block.minecraft.diorite_wall", + "item_id": 389, + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 17910, + "states": [ + { + "id": 17907, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140 + ] + }, + { + "id": 17908, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 17909, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 17910, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140 + ] + }, + { + "id": 17911, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 17912, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 17913, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 17914, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17915, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17916, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 17917, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17918, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 17919, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 17920, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17921, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17922, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 17923, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17924, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17925, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 17926, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17927, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17928, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 17929, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17930, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17931, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 17932, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17933, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17934, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 17935, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17936, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 17937, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 17938, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17939, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17940, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 17941, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17942, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 17943, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 17944, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17945, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17946, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 17947, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17948, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17949, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17950, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17951, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17952, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17953, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17954, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17955, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17956, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17957, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17958, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17959, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17960, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17961, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17962, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17963, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17964, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17965, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17966, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17967, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17968, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17969, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17970, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17971, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17972, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17973, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17974, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17975, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17976, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17977, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17978, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17979, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 17980, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17981, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17982, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 17983, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17984, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 17985, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17986, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17987, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17988, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 17989, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17990, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 17991, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17992, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17993, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17994, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 17995, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17996, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 17997, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 17998, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 17999, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 18000, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 18001, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 18002, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 18003, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 18004, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18005, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18006, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 18007, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18008, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18009, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 18010, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 18011, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 18012, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 18013, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 18014, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 18015, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 18016, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 18017, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 18018, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 18019, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 18020, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 18021, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 18022, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 18023, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 18024, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 18025, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 18026, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 18027, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 18028, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18029, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18030, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 18031, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18032, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18033, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 18034, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18035, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18036, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 18037, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18038, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18039, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 18040, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18041, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18042, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 18043, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18044, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18045, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 18046, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18047, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18048, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 18049, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18050, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18051, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 18052, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18053, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18054, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 18055, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18056, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18057, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 18058, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18059, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18060, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 18061, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18062, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18063, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18064, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18065, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18066, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18067, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18068, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18069, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18070, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18071, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18072, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18073, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18074, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18075, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18076, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18077, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18078, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18079, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18080, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18081, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18082, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18083, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18084, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18085, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18086, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18087, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 18088, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18089, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18090, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 18091, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18092, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18093, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 18094, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18095, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18096, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 18097, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18098, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18099, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18100, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18101, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18102, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18103, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18104, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18105, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18106, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18107, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18108, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18109, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18110, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18111, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18112, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18113, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18114, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18115, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18116, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18117, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18118, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18119, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18120, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18121, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18122, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18123, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 18124, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 18125, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 18126, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 18127, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 18128, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 18129, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 18130, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 18131, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 18132, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 18133, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 18134, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 18135, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 18136, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18137, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18138, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 18139, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18140, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18141, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 18142, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18143, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18144, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 18145, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18146, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18147, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 18148, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18149, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18150, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 18151, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18152, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 18153, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 18154, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18155, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18156, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 18157, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18158, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 18159, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 18160, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18161, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18162, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 18163, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18164, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18165, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 18166, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18167, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18168, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 18169, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18170, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18171, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18172, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18173, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18174, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18175, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18176, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18177, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18178, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18179, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18180, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18181, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18182, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18183, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18184, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18185, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18186, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18187, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18188, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18189, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18190, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18191, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18192, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18193, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18194, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18195, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 18196, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18197, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18198, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 18199, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18200, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 18201, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 18202, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18203, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18204, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 18205, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18206, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 18207, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18208, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18209, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18210, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18211, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18212, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18213, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18214, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18215, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18216, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18217, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18218, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18219, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18220, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18221, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18222, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 18223, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18224, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 18225, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18226, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18227, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18228, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 18229, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 18230, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + } + ] + }, + { + "id": 772, "name": "scaffolding", "translation_key": "block.minecraft.scaffolding", - "item_id": 631, + "item_id": 634, "properties": [ { "name": "bottom", @@ -194579,291 +194848,21 @@ ] } ], - "default_state_id": 18244, + "default_state_id": 18262, "states": [ - { - "id": 18213, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18214, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18215, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18216, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18217, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18218, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18219, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18220, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18221, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18222, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18223, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18224, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18225, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18226, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18227, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18228, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18229, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, - { - "id": 18230, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 228, - 229, - 230, - 231, - 232, - 233, - 234 - ] - }, { "id": 18231, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -194872,13 +194871,13 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -194887,13 +194886,13 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -194902,13 +194901,13 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -194917,13 +194916,13 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -194932,13 +194931,13 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -194947,13 +194946,13 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -194962,13 +194961,13 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -194977,13 +194976,13 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -194992,13 +194991,13 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -195007,13 +195006,13 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -195022,13 +195021,13 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -195037,13 +195036,13 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 ] }, { @@ -195052,22 +195051,292 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 228, - 229, - 230, 231, 232, 233, - 234 + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18245, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18246, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18247, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18248, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18249, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18250, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18251, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18252, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18253, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18254, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18255, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18256, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18257, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18258, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18259, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18260, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18261, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 + ] + }, + { + "id": 18262, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 231, + 232, + 233, + 234, + 235, + 236, + 237 ] } ] }, { - "id": 769, + "id": 773, "name": "loom", "translation_key": "block.minecraft.loom", - "item_id": 1139, + "item_id": 1145, "properties": [ { "name": "facing", @@ -195079,10 +195348,10 @@ ] } ], - "default_state_id": 18245, + "default_state_id": 18263, "states": [ { - "id": 18245, + "id": 18263, "luminance": 0, "opaque": true, "replaceable": false, @@ -195091,7 +195360,7 @@ ] }, { - "id": 18246, + "id": 18264, "luminance": 0, "opaque": true, "replaceable": false, @@ -195100,7 +195369,7 @@ ] }, { - "id": 18247, + "id": 18265, "luminance": 0, "opaque": true, "replaceable": false, @@ -195109,7 +195378,7 @@ ] }, { - "id": 18248, + "id": 18266, "luminance": 0, "opaque": true, "replaceable": false, @@ -195120,10 +195389,10 @@ ] }, { - "id": 770, + "id": 774, "name": "barrel", "translation_key": "block.minecraft.barrel", - "item_id": 1148, + "item_id": 1154, "properties": [ { "name": "facing", @@ -195144,224 +195413,17 @@ ] } ], - "default_state_id": 18250, + "default_state_id": 18268, "states": [ - { - "id": 18249, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 26 - }, - { - "id": 18250, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 26 - }, - { - "id": 18251, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 26 - }, - { - "id": 18252, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 26 - }, - { - "id": 18253, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 26 - }, - { - "id": 18254, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 26 - }, - { - "id": 18255, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 26 - }, - { - "id": 18256, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 26 - }, - { - "id": 18257, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 26 - }, - { - "id": 18258, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 26 - }, - { - "id": 18259, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 26 - }, - { - "id": 18260, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 26 - } - ] - }, - { - "id": 771, - "name": "smoker", - "translation_key": "block.minecraft.smoker", - "item_id": 1149, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "lit", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 18262, - "states": [ - { - "id": 18261, - "luminance": 13, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 27 - }, - { - "id": 18262, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 27 - }, - { - "id": 18263, - "luminance": 13, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 27 - }, - { - "id": 18264, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 27 - }, - { - "id": 18265, - "luminance": 13, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 27 - }, - { - "id": 18266, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 27 - }, { "id": 18267, - "luminance": 13, + "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 0 ], - "block_entity_type": 27 + "block_entity_type": 26 }, { "id": 18268, @@ -195371,15 +195433,115 @@ "collision_shapes": [ 0 ], - "block_entity_type": 27 + "block_entity_type": 26 + }, + { + "id": 18269, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 26 + }, + { + "id": 18270, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 26 + }, + { + "id": 18271, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 26 + }, + { + "id": 18272, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 26 + }, + { + "id": 18273, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 26 + }, + { + "id": 18274, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 26 + }, + { + "id": 18275, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 26 + }, + { + "id": 18276, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 26 + }, + { + "id": 18277, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 26 + }, + { + "id": 18278, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 26 } ] }, { - "id": 772, - "name": "blast_furnace", - "translation_key": "block.minecraft.blast_furnace", - "item_id": 1150, + "id": 775, + "name": "smoker", + "translation_key": "block.minecraft.smoker", + "item_id": 1155, "properties": [ { "name": "facing", @@ -195398,10 +195560,117 @@ ] } ], - "default_state_id": 18270, + "default_state_id": 18280, "states": [ { - "id": 18269, + "id": 18279, + "luminance": 13, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 27 + }, + { + "id": 18280, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 27 + }, + { + "id": 18281, + "luminance": 13, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 27 + }, + { + "id": 18282, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 27 + }, + { + "id": 18283, + "luminance": 13, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 27 + }, + { + "id": 18284, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 27 + }, + { + "id": 18285, + "luminance": 13, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 27 + }, + { + "id": 18286, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 27 + } + ] + }, + { + "id": 776, + "name": "blast_furnace", + "translation_key": "block.minecraft.blast_furnace", + "item_id": 1156, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18288, + "states": [ + { + "id": 18287, "luminance": 13, "opaque": true, "replaceable": false, @@ -195411,7 +195680,7 @@ "block_entity_type": 28 }, { - "id": 18270, + "id": 18288, "luminance": 0, "opaque": true, "replaceable": false, @@ -195421,7 +195690,7 @@ "block_entity_type": 28 }, { - "id": 18271, + "id": 18289, "luminance": 13, "opaque": true, "replaceable": false, @@ -195431,7 +195700,7 @@ "block_entity_type": 28 }, { - "id": 18272, + "id": 18290, "luminance": 0, "opaque": true, "replaceable": false, @@ -195441,7 +195710,7 @@ "block_entity_type": 28 }, { - "id": 18273, + "id": 18291, "luminance": 13, "opaque": true, "replaceable": false, @@ -195451,7 +195720,7 @@ "block_entity_type": 28 }, { - "id": 18274, + "id": 18292, "luminance": 0, "opaque": true, "replaceable": false, @@ -195461,7 +195730,7 @@ "block_entity_type": 28 }, { - "id": 18275, + "id": 18293, "luminance": 13, "opaque": true, "replaceable": false, @@ -195471,7 +195740,7 @@ "block_entity_type": 28 }, { - "id": 18276, + "id": 18294, "luminance": 0, "opaque": true, "replaceable": false, @@ -195483,15 +195752,15 @@ ] }, { - "id": 773, + "id": 777, "name": "cartography_table", "translation_key": "block.minecraft.cartography_table", - "item_id": 1151, + "item_id": 1157, "properties": [], - "default_state_id": 18277, + "default_state_id": 18295, "states": [ { - "id": 18277, + "id": 18295, "luminance": 0, "opaque": true, "replaceable": false, @@ -195502,15 +195771,15 @@ ] }, { - "id": 774, + "id": 778, "name": "fletching_table", "translation_key": "block.minecraft.fletching_table", - "item_id": 1152, + "item_id": 1158, "properties": [], - "default_state_id": 18278, + "default_state_id": 18296, "states": [ { - "id": 18278, + "id": 18296, "luminance": 0, "opaque": true, "replaceable": false, @@ -195521,10 +195790,10 @@ ] }, { - "id": 775, + "id": 779, "name": "grindstone", "translation_key": "block.minecraft.grindstone", - "item_id": 1153, + "item_id": 1159, "properties": [ { "name": "face", @@ -195544,179 +195813,179 @@ ] } ], - "default_state_id": 18283, + "default_state_id": 18301, "states": [ { - "id": 18279, + "id": 18297, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 235, - 236, - 237, 238, 239, 240, - 241 + 241, + 242, + 243, + 244 ] }, { - "id": 18280, + "id": 18298, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 235, - 236, - 237, 238, 239, 240, - 241 + 241, + 242, + 243, + 244 ] }, { - "id": 18281, + "id": 18299, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 242, - 243, - 244, 245, 246, 247, - 248 - ] - }, - { - "id": 18282, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 242, - 243, - 244, - 245, - 246, - 247, - 248 - ] - }, - { - "id": 18283, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ + 248, 249, 250, - 251, - 252, - 253 + 251 ] }, { - "id": 18284, + "id": 18300, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ + 245, + 246, + 247, + 248, + 249, + 250, + 251 + ] + }, + { + "id": 18301, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 252, + 253, 254, 255, - 256, - 257, - 258 + 256 ] }, { - "id": 18285, + "id": 18302, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ + 257, + 258, 259, 260, - 261, - 262, - 263 + 261 ] }, { - "id": 18286, + "id": 18303, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ + 262, + 263, 264, 265, - 266, + 266 + ] + }, + { + "id": 18304, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ 267, - 268 - ] - }, - { - "id": 18287, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ + 268, 269, 270, - 271, - 272, - 273 + 271 ] }, { - "id": 18288, + "id": 18305, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 269, - 270, - 271, 272, - 273 - ] - }, - { - "id": 18289, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ + 273, 274, 275, - 276, - 277, - 278 + 276 ] }, { - "id": 18290, + "id": 18306, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ + 272, + 273, 274, 275, - 276, + 276 + ] + }, + { + "id": 18307, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ 277, - 278 + 278, + 279, + 280, + 281 + ] + }, + { + "id": 18308, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 277, + 278, + 279, + 280, + 281 ] } ] }, { - "id": 776, + "id": 780, "name": "lectern", "translation_key": "block.minecraft.lectern", - "item_id": 645, + "item_id": 648, "properties": [ { "name": "facing", @@ -195742,196 +196011,196 @@ ] } ], - "default_state_id": 18294, + "default_state_id": 18312, "states": [ { - "id": 18291, + "id": 18309, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18292, + "id": 18310, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18293, + "id": 18311, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18294, + "id": 18312, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18295, + "id": 18313, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18296, + "id": 18314, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18297, + "id": 18315, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18298, + "id": 18316, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18299, + "id": 18317, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18300, + "id": 18318, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18301, + "id": 18319, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18302, + "id": 18320, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18303, + "id": 18321, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18304, + "id": 18322, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18305, + "id": 18323, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 }, { - "id": 18306, + "id": 18324, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 279 + 282 ], "block_entity_type": 29 } ] }, { - "id": 777, + "id": 781, "name": "smithing_table", "translation_key": "block.minecraft.smithing_table", - "item_id": 1154, + "item_id": 1160, "properties": [], - "default_state_id": 18307, + "default_state_id": 18325, "states": [ { - "id": 18307, + "id": 18325, "luminance": 0, "opaque": true, "replaceable": false, @@ -195942,10 +196211,10 @@ ] }, { - "id": 778, + "id": 782, "name": "stonecutter", "translation_key": "block.minecraft.stonecutter", - "item_id": 1155, + "item_id": 1161, "properties": [ { "name": "facing", @@ -195957,51 +196226,51 @@ ] } ], - "default_state_id": 18308, + "default_state_id": 18326, "states": [ { - "id": 18308, + "id": 18326, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 280 + 283 ] }, { - "id": 18309, + "id": 18327, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 280 + 283 ] }, { - "id": 18310, + "id": 18328, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 280 + 283 ] }, { - "id": 18311, + "id": 18329, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 280 + 283 ] } ] }, { - "id": 779, + "id": 783, "name": "bell", "translation_key": "block.minecraft.bell", - "item_id": 1156, + "item_id": 1162, "properties": [ { "name": "attachment", @@ -196029,217 +196298,15 @@ ] } ], - "default_state_id": 18313, + "default_state_id": 18331, "states": [ - { - "id": 18312, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 281 - ], - "block_entity_type": 30 - }, - { - "id": 18313, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 281 - ], - "block_entity_type": 30 - }, - { - "id": 18314, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 281 - ], - "block_entity_type": 30 - }, - { - "id": 18315, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 281 - ], - "block_entity_type": 30 - }, - { - "id": 18316, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 282 - ], - "block_entity_type": 30 - }, - { - "id": 18317, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 282 - ], - "block_entity_type": 30 - }, - { - "id": 18318, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 282 - ], - "block_entity_type": 30 - }, - { - "id": 18319, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 282 - ], - "block_entity_type": 30 - }, - { - "id": 18320, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 283, - 284, - 285 - ], - "block_entity_type": 30 - }, - { - "id": 18321, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 283, - 284, - 285 - ], - "block_entity_type": 30 - }, - { - "id": 18322, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 283, - 284, - 285 - ], - "block_entity_type": 30 - }, - { - "id": 18323, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 283, - 284, - 285 - ], - "block_entity_type": 30 - }, - { - "id": 18324, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 283, - 284, - 285 - ], - "block_entity_type": 30 - }, - { - "id": 18325, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 283, - 284, - 285 - ], - "block_entity_type": 30 - }, - { - "id": 18326, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 283, - 284, - 285 - ], - "block_entity_type": 30 - }, - { - "id": 18327, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 283, - 284, - 285 - ], - "block_entity_type": 30 - }, - { - "id": 18328, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 283, - 284, - 286 - ], - "block_entity_type": 30 - }, - { - "id": 18329, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 283, - 284, - 286 - ], - "block_entity_type": 30 - }, { "id": 18330, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 287 + 284 ], "block_entity_type": 30 }, @@ -196249,9 +196316,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 287 + 284 ], "block_entity_type": 30 }, @@ -196261,9 +196326,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 288 + 284 ], "block_entity_type": 30 }, @@ -196273,9 +196336,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 288 + 284 ], "block_entity_type": 30 }, @@ -196285,9 +196346,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 289 + 285 ], "block_entity_type": 30 }, @@ -196297,9 +196356,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 289 + 285 ], "block_entity_type": 30 }, @@ -196309,9 +196366,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 290 + 285 ], "block_entity_type": 30 }, @@ -196321,9 +196376,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 290 + 285 ], "block_entity_type": 30 }, @@ -196333,9 +196386,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 290 + 286, + 287, + 288 ], "block_entity_type": 30 }, @@ -196345,9 +196398,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 290 + 286, + 287, + 288 ], "block_entity_type": 30 }, @@ -196357,9 +196410,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 291 + 286, + 287, + 288 ], "block_entity_type": 30 }, @@ -196369,9 +196422,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 291 + 286, + 287, + 288 ], "block_entity_type": 30 }, @@ -196381,9 +196434,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, - 291 + 286, + 287, + 288 ], "block_entity_type": 30 }, @@ -196393,19 +196446,235 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 283, - 284, + 286, + 287, + 288 + ], + "block_entity_type": 30 + }, + { + "id": 18344, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 288 + ], + "block_entity_type": 30 + }, + { + "id": 18345, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 288 + ], + "block_entity_type": 30 + }, + { + "id": 18346, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 289 + ], + "block_entity_type": 30 + }, + { + "id": 18347, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 289 + ], + "block_entity_type": 30 + }, + { + "id": 18348, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 290 + ], + "block_entity_type": 30 + }, + { + "id": 18349, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 290 + ], + "block_entity_type": 30 + }, + { + "id": 18350, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, 291 ], "block_entity_type": 30 + }, + { + "id": 18351, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 291 + ], + "block_entity_type": 30 + }, + { + "id": 18352, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 292 + ], + "block_entity_type": 30 + }, + { + "id": 18353, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 292 + ], + "block_entity_type": 30 + }, + { + "id": 18354, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 293 + ], + "block_entity_type": 30 + }, + { + "id": 18355, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 293 + ], + "block_entity_type": 30 + }, + { + "id": 18356, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 293 + ], + "block_entity_type": 30 + }, + { + "id": 18357, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 293 + ], + "block_entity_type": 30 + }, + { + "id": 18358, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 294 + ], + "block_entity_type": 30 + }, + { + "id": 18359, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 294 + ], + "block_entity_type": 30 + }, + { + "id": 18360, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 294 + ], + "block_entity_type": 30 + }, + { + "id": 18361, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 286, + 287, + 294 + ], + "block_entity_type": 30 } ] }, { - "id": 780, + "id": 784, "name": "lantern", "translation_key": "block.minecraft.lantern", - "item_id": 1157, + "item_id": 1163, "properties": [ { "name": "hanging", @@ -196422,55 +196691,55 @@ ] } ], - "default_state_id": 18347, + "default_state_id": 18365, "states": [ { - "id": 18344, + "id": 18362, "luminance": 15, "opaque": false, "replaceable": false, "collision_shapes": [ - 292, - 293 + 295, + 296 ] }, { - "id": 18345, + "id": 18363, "luminance": 15, "opaque": false, "replaceable": false, "collision_shapes": [ - 292, - 293 + 295, + 296 ] }, { - "id": 18346, + "id": 18364, "luminance": 15, "opaque": false, "replaceable": false, "collision_shapes": [ - 294, - 295 + 297, + 298 ] }, { - "id": 18347, + "id": 18365, "luminance": 15, "opaque": false, "replaceable": false, "collision_shapes": [ - 294, - 295 + 297, + 298 ] } ] }, { - "id": 781, + "id": 785, "name": "soul_lantern", "translation_key": "block.minecraft.soul_lantern", - "item_id": 1158, + "item_id": 1164, "properties": [ { "name": "hanging", @@ -196487,55 +196756,55 @@ ] } ], - "default_state_id": 18351, + "default_state_id": 18369, "states": [ { - "id": 18348, + "id": 18366, "luminance": 10, "opaque": false, "replaceable": false, "collision_shapes": [ - 292, - 293 + 295, + 296 ] }, { - "id": 18349, + "id": 18367, "luminance": 10, "opaque": false, "replaceable": false, "collision_shapes": [ - 292, - 293 + 295, + 296 ] }, { - "id": 18350, + "id": 18368, "luminance": 10, "opaque": false, "replaceable": false, "collision_shapes": [ - 294, - 295 + 297, + 298 ] }, { - "id": 18351, + "id": 18369, "luminance": 10, "opaque": false, "replaceable": false, "collision_shapes": [ - 294, - 295 + 297, + 298 ] } ] }, { - "id": 782, + "id": 786, "name": "campfire", "translation_key": "block.minecraft.campfire", - "item_id": 1161, + "item_id": 1167, "properties": [ { "name": "facing", @@ -196568,195 +196837,15 @@ ] } ], - "default_state_id": 18355, + "default_state_id": 18373, "states": [ - { - "id": 18352, - "luminance": 15, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18353, - "luminance": 15, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18354, - "luminance": 15, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18355, - "luminance": 15, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18356, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18357, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18358, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18359, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18360, - "luminance": 15, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18361, - "luminance": 15, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18362, - "luminance": 15, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18363, - "luminance": 15, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18364, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18365, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18366, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18367, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18368, - "luminance": 15, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18369, - "luminance": 15, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, { "id": 18370, "luminance": 15, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -196766,27 +196855,27 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, { "id": 18372, - "luminance": 0, + "luminance": 15, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, { "id": 18373, - "luminance": 0, + "luminance": 15, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -196796,7 +196885,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -196806,27 +196895,27 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, { "id": 18376, - "luminance": 15, + "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, { "id": 18377, - "luminance": 15, + "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -196836,7 +196925,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -196846,27 +196935,27 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, { "id": 18380, - "luminance": 0, + "luminance": 15, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, { "id": 18381, - "luminance": 0, + "luminance": 15, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -196876,7 +196965,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -196886,17 +196975,197 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18384, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18385, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18386, + "luminance": 15, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18387, + "luminance": 15, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18388, + "luminance": 15, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18389, + "luminance": 15, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18390, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18391, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18392, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18393, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18394, + "luminance": 15, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18395, + "luminance": 15, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18396, + "luminance": 15, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18397, + "luminance": 15, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18398, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18399, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18400, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18401, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 ], "block_entity_type": 32 } ] }, { - "id": 783, + "id": 787, "name": "soul_campfire", "translation_key": "block.minecraft.soul_campfire", - "item_id": 1162, + "item_id": 1168, "properties": [ { "name": "facing", @@ -196929,195 +197198,15 @@ ] } ], - "default_state_id": 18387, + "default_state_id": 18405, "states": [ - { - "id": 18384, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18385, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18386, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18387, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18388, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18389, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18390, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18391, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18392, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18393, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18394, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18395, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18396, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18397, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18398, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18399, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18400, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, - { - "id": 18401, - "luminance": 10, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 296 - ], - "block_entity_type": 32 - }, { "id": 18402, "luminance": 10, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -197127,27 +197216,27 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, { "id": 18404, - "luminance": 0, + "luminance": 10, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, { "id": 18405, - "luminance": 0, + "luminance": 10, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -197157,7 +197246,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -197167,27 +197256,27 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, { "id": 18408, - "luminance": 10, + "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, { "id": 18409, - "luminance": 10, + "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -197197,7 +197286,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -197207,27 +197296,27 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, { "id": 18412, - "luminance": 0, + "luminance": 10, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, { "id": 18413, - "luminance": 0, + "luminance": 10, "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -197237,7 +197326,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 ], "block_entity_type": 32 }, @@ -197247,17 +197336,197 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 296 + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18416, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18417, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18418, + "luminance": 10, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18419, + "luminance": 10, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18420, + "luminance": 10, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18421, + "luminance": 10, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18422, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18423, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18424, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18425, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18426, + "luminance": 10, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18427, + "luminance": 10, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18428, + "luminance": 10, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18429, + "luminance": 10, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18430, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18431, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18432, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 + ], + "block_entity_type": 32 + }, + { + "id": 18433, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 299 ], "block_entity_type": 32 } ] }, { - "id": 784, + "id": 788, "name": "sweet_berry_bush", "translation_key": "block.minecraft.sweet_berry_bush", - "item_id": 1159, + "item_id": 1165, "properties": [ { "name": "age", @@ -197269,316 +197538,43 @@ ] } ], - "default_state_id": 18416, - "states": [ - { - "id": 18416, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18417, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18418, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18419, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 785, - "name": "warped_stem", - "translation_key": "block.minecraft.warped_stem", - "item_id": 120, - "properties": [ - { - "name": "axis", - "values": [ - "x", - "y", - "z" - ] - } - ], - "default_state_id": 18421, - "states": [ - { - "id": 18420, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 18421, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 18422, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 786, - "name": "stripped_warped_stem", - "translation_key": "block.minecraft.stripped_warped_stem", - "item_id": 131, - "properties": [ - { - "name": "axis", - "values": [ - "x", - "y", - "z" - ] - } - ], - "default_state_id": 18424, - "states": [ - { - "id": 18423, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 18424, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 18425, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 787, - "name": "warped_hyphae", - "translation_key": "block.minecraft.warped_hyphae", - "item_id": 152, - "properties": [ - { - "name": "axis", - "values": [ - "x", - "y", - "z" - ] - } - ], - "default_state_id": 18427, - "states": [ - { - "id": 18426, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 18427, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 18428, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 788, - "name": "stripped_warped_hyphae", - "translation_key": "block.minecraft.stripped_warped_hyphae", - "item_id": 141, - "properties": [ - { - "name": "axis", - "values": [ - "x", - "y", - "z" - ] - } - ], - "default_state_id": 18430, - "states": [ - { - "id": 18429, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 18430, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 18431, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 789, - "name": "warped_nylium", - "translation_key": "block.minecraft.warped_nylium", - "item_id": 21, - "properties": [], - "default_state_id": 18432, - "states": [ - { - "id": 18432, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 790, - "name": "warped_fungus", - "translation_key": "block.minecraft.warped_fungus", - "item_id": 213, - "properties": [], - "default_state_id": 18433, - "states": [ - { - "id": 18433, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 791, - "name": "warped_wart_block", - "translation_key": "block.minecraft.warped_wart_block", - "item_id": 494, - "properties": [], "default_state_id": 18434, "states": [ { "id": 18434, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 792, - "name": "warped_roots", - "translation_key": "block.minecraft.warped_roots", - "item_id": 215, - "properties": [], - "default_state_id": 18435, - "states": [ + "collision_shapes": [] + }, { "id": 18435, "luminance": 0, "opaque": false, - "replaceable": true, + "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 793, - "name": "nether_sprouts", - "translation_key": "block.minecraft.nether_sprouts", - "item_id": 216, - "properties": [], - "default_state_id": 18436, - "states": [ + }, { "id": 18436, "luminance": 0, "opaque": false, - "replaceable": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18437, + "luminance": 0, + "opaque": false, + "replaceable": false, "collision_shapes": [] } ] }, { - "id": 794, - "name": "crimson_stem", - "translation_key": "block.minecraft.crimson_stem", - "item_id": 119, + "id": 789, + "name": "warped_stem", + "translation_key": "block.minecraft.warped_stem", + "item_id": 121, "properties": [ { "name": "axis", @@ -197589,17 +197585,8 @@ ] } ], - "default_state_id": 18438, + "default_state_id": 18439, "states": [ - { - "id": 18437, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 18438, "luminance": 0, @@ -197617,14 +197604,23 @@ "collision_shapes": [ 0 ] + }, + { + "id": 18440, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { - "id": 795, - "name": "stripped_crimson_stem", - "translation_key": "block.minecraft.stripped_crimson_stem", - "item_id": 130, + "id": 790, + "name": "stripped_warped_stem", + "translation_key": "block.minecraft.stripped_warped_stem", + "item_id": 132, "properties": [ { "name": "axis", @@ -197635,17 +197631,8 @@ ] } ], - "default_state_id": 18441, + "default_state_id": 18442, "states": [ - { - "id": 18440, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 18441, "luminance": 0, @@ -197663,14 +197650,23 @@ "collision_shapes": [ 0 ] + }, + { + "id": 18443, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { - "id": 796, - "name": "crimson_hyphae", - "translation_key": "block.minecraft.crimson_hyphae", - "item_id": 151, + "id": 791, + "name": "warped_hyphae", + "translation_key": "block.minecraft.warped_hyphae", + "item_id": 153, "properties": [ { "name": "axis", @@ -197681,17 +197677,8 @@ ] } ], - "default_state_id": 18444, + "default_state_id": 18445, "states": [ - { - "id": 18443, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 18444, "luminance": 0, @@ -197709,14 +197696,23 @@ "collision_shapes": [ 0 ] + }, + { + "id": 18446, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] } ] }, { - "id": 797, - "name": "stripped_crimson_hyphae", - "translation_key": "block.minecraft.stripped_crimson_hyphae", - "item_id": 140, + "id": 792, + "name": "stripped_warped_hyphae", + "translation_key": "block.minecraft.stripped_warped_hyphae", + "item_id": 142, "properties": [ { "name": "axis", @@ -197727,17 +197723,8 @@ ] } ], - "default_state_id": 18447, + "default_state_id": 18448, "states": [ - { - "id": 18446, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, { "id": 18447, "luminance": 0, @@ -197755,17 +197742,7 @@ "collision_shapes": [ 0 ] - } - ] - }, - { - "id": 798, - "name": "crimson_nylium", - "translation_key": "block.minecraft.crimson_nylium", - "item_id": 20, - "properties": [], - "default_state_id": 18449, - "states": [ + }, { "id": 18449, "luminance": 0, @@ -197778,16 +197755,35 @@ ] }, { - "id": 799, - "name": "crimson_fungus", - "translation_key": "block.minecraft.crimson_fungus", - "item_id": 212, + "id": 793, + "name": "warped_nylium", + "translation_key": "block.minecraft.warped_nylium", + "item_id": 21, "properties": [], "default_state_id": 18450, "states": [ { "id": 18450, "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 794, + "name": "warped_fungus", + "translation_key": "block.minecraft.warped_fungus", + "item_id": 215, + "properties": [], + "default_state_id": 18451, + "states": [ + { + "id": 18451, + "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] @@ -197795,16 +197791,188 @@ ] }, { - "id": 800, - "name": "shroomlight", - "translation_key": "block.minecraft.shroomlight", - "item_id": 1163, + "id": 795, + "name": "warped_wart_block", + "translation_key": "block.minecraft.warped_wart_block", + "item_id": 496, "properties": [], - "default_state_id": 18451, + "default_state_id": 18452, "states": [ { - "id": 18451, - "luminance": 15, + "id": 18452, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 796, + "name": "warped_roots", + "translation_key": "block.minecraft.warped_roots", + "item_id": 217, + "properties": [], + "default_state_id": 18453, + "states": [ + { + "id": 18453, + "luminance": 0, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + } + ] + }, + { + "id": 797, + "name": "nether_sprouts", + "translation_key": "block.minecraft.nether_sprouts", + "item_id": 218, + "properties": [], + "default_state_id": 18454, + "states": [ + { + "id": 18454, + "luminance": 0, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + } + ] + }, + { + "id": 798, + "name": "crimson_stem", + "translation_key": "block.minecraft.crimson_stem", + "item_id": 120, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 18456, + "states": [ + { + "id": 18455, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 18456, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 18457, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 799, + "name": "stripped_crimson_stem", + "translation_key": "block.minecraft.stripped_crimson_stem", + "item_id": 131, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 18459, + "states": [ + { + "id": 18458, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 18459, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 18460, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 800, + "name": "crimson_hyphae", + "translation_key": "block.minecraft.crimson_hyphae", + "item_id": 152, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 18462, + "states": [ + { + "id": 18461, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 18462, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 18463, + "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ @@ -197815,9 +197983,110 @@ }, { "id": 801, + "name": "stripped_crimson_hyphae", + "translation_key": "block.minecraft.stripped_crimson_hyphae", + "item_id": 141, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 18465, + "states": [ + { + "id": 18464, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 18465, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 18466, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 802, + "name": "crimson_nylium", + "translation_key": "block.minecraft.crimson_nylium", + "item_id": 20, + "properties": [], + "default_state_id": 18467, + "states": [ + { + "id": 18467, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 803, + "name": "crimson_fungus", + "translation_key": "block.minecraft.crimson_fungus", + "item_id": 214, + "properties": [], + "default_state_id": 18468, + "states": [ + { + "id": 18468, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 804, + "name": "shroomlight", + "translation_key": "block.minecraft.shroomlight", + "item_id": 1169, + "properties": [], + "default_state_id": 18469, + "states": [ + { + "id": 18469, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 805, "name": "weeping_vines", "translation_key": "block.minecraft.weeping_vines", - "item_id": 217, + "item_id": 219, "properties": [ { "name": "age", @@ -197851,134 +198120,8 @@ ] } ], - "default_state_id": 18452, + "default_state_id": 18470, "states": [ - { - "id": 18452, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18453, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18454, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18455, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18456, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18457, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18458, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18459, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18460, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18461, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18462, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18463, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18464, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18465, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18466, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18467, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18468, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18469, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 18470, "luminance": 0, @@ -198034,66 +198177,14 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 802, - "name": "weeping_vines_plant", - "translation_key": "block.minecraft.weeping_vines_plant", - "item_id": 0, - "properties": [], - "default_state_id": 18478, - "states": [ + }, { "id": 18478, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 803, - "name": "twisting_vines", - "translation_key": "block.minecraft.twisting_vines", - "item_id": 218, - "properties": [ - { - "name": "age", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15", - "16", - "17", - "18", - "19", - "20", - "21", - "22", - "23", - "24", - "25" - ] - } - ], - "default_state_id": 18479, - "states": [ + }, { "id": 18479, "luminance": 0, @@ -198212,14 +198303,66 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - }, + } + ] + }, + { + "id": 806, + "name": "weeping_vines_plant", + "translation_key": "block.minecraft.weeping_vines_plant", + "item_id": 0, + "properties": [], + "default_state_id": 18496, + "states": [ { "id": 18496, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] - }, + } + ] + }, + { + "id": 807, + "name": "twisting_vines", + "translation_key": "block.minecraft.twisting_vines", + "item_id": 220, + "properties": [ + { + "name": "age", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25" + ] + } + ], + "default_state_id": 18497, + "states": [ { "id": 18497, "luminance": 0, @@ -198275,257 +198418,119 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 804, - "name": "twisting_vines_plant", - "translation_key": "block.minecraft.twisting_vines_plant", - "item_id": 0, - "properties": [], - "default_state_id": 18505, - "states": [ + }, { "id": 18505, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 805, - "name": "crimson_roots", - "translation_key": "block.minecraft.crimson_roots", - "item_id": 214, - "properties": [], - "default_state_id": 18506, - "states": [ + }, { "id": 18506, "luminance": 0, "opaque": false, - "replaceable": true, + "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 806, - "name": "crimson_planks", - "translation_key": "block.minecraft.crimson_planks", - "item_id": 32, - "properties": [], - "default_state_id": 18507, - "states": [ + }, { "id": 18507, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 807, - "name": "warped_planks", - "translation_key": "block.minecraft.warped_planks", - "item_id": 33, - "properties": [], - "default_state_id": 18508, - "states": [ + "collision_shapes": [] + }, { "id": 18508, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 808, - "name": "crimson_slab", - "translation_key": "block.minecraft.crimson_slab", - "item_id": 238, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] + "collision_shapes": [] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 18512, - "states": [ { "id": 18509, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 201 - ] + "collision_shapes": [] }, { "id": 18510, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 201 - ] + "collision_shapes": [] }, { "id": 18511, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 51 - ] + "collision_shapes": [] }, { "id": 18512, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 51 - ] + "collision_shapes": [] }, { "id": 18513, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] + "collision_shapes": [] }, { "id": 18514, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 809, - "name": "warped_slab", - "translation_key": "block.minecraft.warped_slab", - "item_id": 239, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] + "collision_shapes": [] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 18518, - "states": [ { "id": 18515, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 201 - ] + "collision_shapes": [] }, { "id": 18516, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 201 - ] + "collision_shapes": [] }, { "id": 18517, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 51 - ] + "collision_shapes": [] }, { "id": 18518, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 51 - ] + "collision_shapes": [] }, { "id": 18519, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] + "collision_shapes": [] }, { "id": 18520, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 810, - "name": "crimson_pressure_plate", - "translation_key": "block.minecraft.crimson_pressure_plate", - "item_id": 682, - "properties": [ - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 18522, - "states": [ + "collision_shapes": [] + }, { "id": 18521, "luminance": 0, @@ -198542,11 +198547,243 @@ } ] }, + { + "id": 808, + "name": "twisting_vines_plant", + "translation_key": "block.minecraft.twisting_vines_plant", + "item_id": 0, + "properties": [], + "default_state_id": 18523, + "states": [ + { + "id": 18523, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 809, + "name": "crimson_roots", + "translation_key": "block.minecraft.crimson_roots", + "item_id": 216, + "properties": [], + "default_state_id": 18524, + "states": [ + { + "id": 18524, + "luminance": 0, + "opaque": false, + "replaceable": true, + "collision_shapes": [] + } + ] + }, + { + "id": 810, + "name": "crimson_planks", + "translation_key": "block.minecraft.crimson_planks", + "item_id": 32, + "properties": [], + "default_state_id": 18525, + "states": [ + { + "id": 18525, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, { "id": 811, - "name": "warped_pressure_plate", - "translation_key": "block.minecraft.warped_pressure_plate", - "item_id": 683, + "name": "warped_planks", + "translation_key": "block.minecraft.warped_planks", + "item_id": 33, + "properties": [], + "default_state_id": 18526, + "states": [ + { + "id": 18526, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 812, + "name": "crimson_slab", + "translation_key": "block.minecraft.crimson_slab", + "item_id": 240, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18530, + "states": [ + { + "id": 18527, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 18528, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 18529, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18530, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18531, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 18532, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 813, + "name": "warped_slab", + "translation_key": "block.minecraft.warped_slab", + "item_id": 241, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18536, + "states": [ + { + "id": 18533, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 18534, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 18535, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18536, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 18537, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 18538, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 814, + "name": "crimson_pressure_plate", + "translation_key": "block.minecraft.crimson_pressure_plate", + "item_id": 686, "properties": [ { "name": "powered", @@ -198556,17 +198793,17 @@ ] } ], - "default_state_id": 18524, + "default_state_id": 18540, "states": [ { - "id": 18523, + "id": 18539, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 18524, + "id": 18540, "luminance": 0, "opaque": false, "replaceable": false, @@ -198575,10 +198812,42 @@ ] }, { - "id": 812, + "id": 815, + "name": "warped_pressure_plate", + "translation_key": "block.minecraft.warped_pressure_plate", + "item_id": 687, + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18542, + "states": [ + { + "id": 18541, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18542, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 816, "name": "crimson_fence", "translation_key": "block.minecraft.crimson_fence", - "item_id": 296, + "item_id": 298, "properties": [ { "name": "east", @@ -198616,193 +198885,15 @@ ] } ], - "default_state_id": 18556, + "default_state_id": 18574, "states": [ - { - "id": 18525, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76, - 77 - ] - }, - { - "id": 18526, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78, - 79 - ] - }, - { - "id": 18527, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76, - 77 - ] - }, - { - "id": 18528, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78, - 79 - ] - }, - { - "id": 18529, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76 - ] - }, - { - "id": 18530, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 80, - 79 - ] - }, - { - "id": 18531, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76 - ] - }, - { - "id": 18532, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 80, - 79 - ] - }, - { - "id": 18533, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 77 - ] - }, - { - "id": 18534, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 81, - 79 - ] - }, - { - "id": 18535, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 77 - ] - }, - { - "id": 18536, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 81, - 79 - ] - }, - { - "id": 18537, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18538, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 82 - ] - }, - { - "id": 18539, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18540, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 82 - ] - }, - { - "id": 18541, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 76, - 77 - ] - }, - { - "id": 18542, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78 - ] - }, { "id": 18543, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 83, + 75, 76, 77 ] @@ -198813,7 +198904,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 78, + 79 ] }, { @@ -198822,8 +198914,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83, - 76 + 75, + 76, + 77 ] }, { @@ -198832,7 +198925,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 80 + 78, + 79 ] }, { @@ -198841,7 +198935,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83, + 75, 76 ] }, @@ -198851,7 +198945,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 80 + 80, + 79 ] }, { @@ -198860,8 +198955,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83, - 77 + 75, + 76 ] }, { @@ -198870,7 +198965,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 81 + 80, + 79 ] }, { @@ -198879,7 +198975,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83, + 75, 77 ] }, @@ -198889,7 +198985,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 81 + 81, + 79 ] }, { @@ -198898,7 +198995,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83 + 75, + 77 ] }, { @@ -198907,7 +199005,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 84 + 81, + 79 ] }, { @@ -198916,7 +199015,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83 + 75 ] }, { @@ -198924,6 +199023,176 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 82 + ] + }, + { + "id": 18557, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75 + ] + }, + { + "id": 18558, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 82 + ] + }, + { + "id": 18559, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76, + 77 + ] + }, + { + "id": 18560, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18561, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76, + 77 + ] + }, + { + "id": 18562, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18563, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76 + ] + }, + { + "id": 18564, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 80 + ] + }, + { + "id": 18565, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76 + ] + }, + { + "id": 18566, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 80 + ] + }, + { + "id": 18567, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 77 + ] + }, + { + "id": 18568, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 81 + ] + }, + { + "id": 18569, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 77 + ] + }, + { + "id": 18570, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 81 + ] + }, + { + "id": 18571, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83 + ] + }, + { + "id": 18572, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 84 + ] + }, + { + "id": 18573, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83 + ] + }, + { + "id": 18574, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 84 ] @@ -198931,10 +199200,10 @@ ] }, { - "id": 813, + "id": 817, "name": "warped_fence", "translation_key": "block.minecraft.warped_fence", - "item_id": 297, + "item_id": 299, "properties": [ { "name": "east", @@ -198972,193 +199241,15 @@ ] } ], - "default_state_id": 18588, + "default_state_id": 18606, "states": [ - { - "id": 18557, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76, - 77 - ] - }, - { - "id": 18558, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78, - 79 - ] - }, - { - "id": 18559, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76, - 77 - ] - }, - { - "id": 18560, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78, - 79 - ] - }, - { - "id": 18561, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76 - ] - }, - { - "id": 18562, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 80, - 79 - ] - }, - { - "id": 18563, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 76 - ] - }, - { - "id": 18564, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 80, - 79 - ] - }, - { - "id": 18565, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 77 - ] - }, - { - "id": 18566, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 81, - 79 - ] - }, - { - "id": 18567, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75, - 77 - ] - }, - { - "id": 18568, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 81, - 79 - ] - }, - { - "id": 18569, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18570, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 82 - ] - }, - { - "id": 18571, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18572, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 82 - ] - }, - { - "id": 18573, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 83, - 76, - 77 - ] - }, - { - "id": 18574, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 78 - ] - }, { "id": 18575, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 83, + 75, 76, 77 ] @@ -199169,7 +199260,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 78 + 78, + 79 ] }, { @@ -199178,8 +199270,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83, - 76 + 75, + 76, + 77 ] }, { @@ -199188,7 +199281,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 80 + 78, + 79 ] }, { @@ -199197,7 +199291,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83, + 75, 76 ] }, @@ -199207,7 +199301,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 80 + 80, + 79 ] }, { @@ -199216,8 +199311,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83, - 77 + 75, + 76 ] }, { @@ -199226,7 +199321,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 81 + 80, + 79 ] }, { @@ -199235,7 +199331,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83, + 75, 77 ] }, @@ -199245,7 +199341,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 81 + 81, + 79 ] }, { @@ -199254,7 +199351,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83 + 75, + 77 ] }, { @@ -199263,7 +199361,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 84 + 81, + 79 ] }, { @@ -199272,7 +199371,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 83 + 75 ] }, { @@ -199280,6 +199379,176 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 82 + ] + }, + { + "id": 18589, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75 + ] + }, + { + "id": 18590, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 82 + ] + }, + { + "id": 18591, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76, + 77 + ] + }, + { + "id": 18592, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18593, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76, + 77 + ] + }, + { + "id": 18594, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18595, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76 + ] + }, + { + "id": 18596, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 80 + ] + }, + { + "id": 18597, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 76 + ] + }, + { + "id": 18598, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 80 + ] + }, + { + "id": 18599, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 77 + ] + }, + { + "id": 18600, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 81 + ] + }, + { + "id": 18601, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83, + 77 + ] + }, + { + "id": 18602, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 81 + ] + }, + { + "id": 18603, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83 + ] + }, + { + "id": 18604, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 84 + ] + }, + { + "id": 18605, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 83 + ] + }, + { + "id": 18606, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 84 ] @@ -199287,10 +199556,10 @@ ] }, { - "id": 814, + "id": 818, "name": "crimson_trapdoor", "translation_key": "block.minecraft.crimson_trapdoor", - "item_id": 706, + "item_id": 710, "properties": [ { "name": "facing", @@ -199330,177 +199599,15 @@ ] } ], - "default_state_id": 18604, + "default_state_id": 18622, "states": [ - { - "id": 18589, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18590, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18591, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18592, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18593, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 18594, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 18595, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 18596, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 18597, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18598, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18599, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18600, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18601, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 18602, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 18603, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 18604, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 18605, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 18606, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, { "id": 18607, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -199509,7 +199616,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -199518,7 +199625,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 65 ] }, { @@ -199527,7 +199634,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 65 ] }, { @@ -199554,7 +199661,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 92 ] }, { @@ -199563,7 +199670,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 92 ] }, { @@ -199572,7 +199679,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -199581,7 +199688,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -199590,7 +199697,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 65 ] }, { @@ -199599,7 +199706,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 65 ] }, { @@ -199626,7 +199733,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 93 ] }, { @@ -199635,7 +199742,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 93 ] }, { @@ -199644,7 +199751,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -199653,7 +199760,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -199662,7 +199769,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 67 ] }, { @@ -199671,7 +199778,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 67 ] }, { @@ -199698,7 +199805,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 92 ] }, { @@ -199707,7 +199814,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 92 ] }, { @@ -199716,7 +199823,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -199725,7 +199832,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -199734,7 +199841,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 67 ] }, { @@ -199743,7 +199850,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 67 ] }, { @@ -199770,7 +199877,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 93 ] }, { @@ -199779,7 +199886,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 93 ] }, { @@ -199788,7 +199895,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -199797,7 +199904,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -199806,7 +199913,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 66 ] }, { @@ -199815,7 +199922,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 66 ] }, { @@ -199842,7 +199949,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 92 ] }, { @@ -199851,7 +199958,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 92 ] }, { @@ -199860,7 +199967,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -199869,7 +199976,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -199878,7 +199985,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 66 ] }, { @@ -199887,7 +199994,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 66 ] }, { @@ -199907,14 +200014,176 @@ "collision_shapes": [ 93 ] + }, + { + "id": 18653, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 18654, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 18655, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18656, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18657, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18658, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18659, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 18660, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 18661, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 18662, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 18663, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18664, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18665, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18666, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18667, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 18668, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 18669, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 18670, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] } ] }, { - "id": 815, + "id": 819, "name": "warped_trapdoor", "translation_key": "block.minecraft.warped_trapdoor", - "item_id": 707, + "item_id": 711, "properties": [ { "name": "facing", @@ -199954,177 +200223,15 @@ ] } ], - "default_state_id": 18668, + "default_state_id": 18686, "states": [ - { - "id": 18653, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18654, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18655, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18656, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18657, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 18658, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 18659, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 18660, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 92 - ] - }, - { - "id": 18661, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18662, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18663, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18664, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18665, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 18666, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 18667, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 18668, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 93 - ] - }, - { - "id": 18669, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, - { - "id": 18670, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 67 - ] - }, { "id": 18671, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -200133,7 +200240,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -200142,7 +200249,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 65 ] }, { @@ -200151,7 +200258,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 65 ] }, { @@ -200178,7 +200285,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 92 ] }, { @@ -200187,7 +200294,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 92 ] }, { @@ -200196,7 +200303,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -200205,7 +200312,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 65 ] }, { @@ -200214,7 +200321,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 65 ] }, { @@ -200223,7 +200330,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 65 ] }, { @@ -200250,7 +200357,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 93 ] }, { @@ -200259,7 +200366,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 93 ] }, { @@ -200268,7 +200375,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -200277,7 +200384,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -200286,7 +200393,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 67 ] }, { @@ -200295,7 +200402,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 67 ] }, { @@ -200322,7 +200429,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 92 ] }, { @@ -200331,7 +200438,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 92 ] }, { @@ -200340,7 +200447,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -200349,7 +200456,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 67 ] }, { @@ -200358,7 +200465,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 67 ] }, { @@ -200367,7 +200474,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 67 ] }, { @@ -200394,7 +200501,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 93 ] }, { @@ -200403,7 +200510,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 93 ] }, { @@ -200412,7 +200519,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -200421,7 +200528,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -200430,7 +200537,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 66 ] }, { @@ -200439,7 +200546,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 92 + 66 ] }, { @@ -200466,7 +200573,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 92 ] }, { @@ -200475,7 +200582,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 92 ] }, { @@ -200484,7 +200591,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -200493,7 +200600,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -200502,7 +200609,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 66 ] }, { @@ -200511,7 +200618,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 93 + 66 ] }, { @@ -200531,14 +200638,176 @@ "collision_shapes": [ 93 ] + }, + { + "id": 18717, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 18718, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 18719, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18720, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18721, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18722, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18723, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 18724, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 18725, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 18726, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 92 + ] + }, + { + "id": 18727, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18728, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18729, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18730, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 18731, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 18732, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 18733, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] + }, + { + "id": 18734, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 93 + ] } ] }, { - "id": 816, + "id": 820, "name": "crimson_fence_gate", "translation_key": "block.minecraft.crimson_fence_gate", - "item_id": 717, + "item_id": 721, "properties": [ { "name": "facing", @@ -200571,257 +200840,257 @@ ] } ], - "default_state_id": 18724, + "default_state_id": 18742, "states": [ - { - "id": 18717, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18718, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18719, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18720, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18721, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18722, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18723, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18724, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18725, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18726, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18727, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18728, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18729, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18730, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18731, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18732, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18733, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18734, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, { "id": 18735, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78 - ] + "collision_shapes": [] }, { "id": 18736, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78 - ] + "collision_shapes": [] }, { "id": 18737, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 75 + ] }, { "id": 18738, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 75 + ] }, { "id": 18739, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78 - ] + "collision_shapes": [] }, { "id": 18740, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78 - ] + "collision_shapes": [] }, { "id": 18741, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 75 + ] }, { "id": 18742, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 75 + ] }, { "id": 18743, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78 - ] + "collision_shapes": [] }, { "id": 18744, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78 - ] + "collision_shapes": [] }, { "id": 18745, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 75 + ] }, { "id": 18746, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 75 + ] }, { "id": 18747, "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18748, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18749, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75 + ] + }, + { + "id": 18750, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75 + ] + }, + { + "id": 18751, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18752, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18753, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 78 ] }, { - "id": 18748, + "id": 18754, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18755, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18756, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18757, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18758, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18759, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18760, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18761, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18762, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18763, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18764, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18765, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18766, "luminance": 0, "opaque": true, "replaceable": false, @@ -200832,10 +201101,10 @@ ] }, { - "id": 817, + "id": 821, "name": "warped_fence_gate", "translation_key": "block.minecraft.warped_fence_gate", - "item_id": 718, + "item_id": 722, "properties": [ { "name": "facing", @@ -200868,257 +201137,257 @@ ] } ], - "default_state_id": 18756, + "default_state_id": 18774, "states": [ - { - "id": 18749, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18750, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18751, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18752, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18753, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18754, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18755, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18756, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18757, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18758, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18759, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18760, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18761, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18762, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18763, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18764, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 75 - ] - }, - { - "id": 18765, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18766, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, { "id": 18767, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78 - ] + "collision_shapes": [] }, { "id": 18768, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78 - ] + "collision_shapes": [] }, { "id": 18769, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 75 + ] }, { "id": 18770, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 75 + ] }, { "id": 18771, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78 - ] + "collision_shapes": [] }, { "id": 18772, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78 - ] + "collision_shapes": [] }, { "id": 18773, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 75 + ] }, { "id": 18774, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 75 + ] }, { "id": 18775, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78 - ] + "collision_shapes": [] }, { "id": 18776, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 78 - ] + "collision_shapes": [] }, { "id": 18777, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 75 + ] }, { "id": 18778, "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 75 + ] }, { "id": 18779, "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18780, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18781, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75 + ] + }, + { + "id": 18782, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 75 + ] + }, + { + "id": 18783, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18784, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18785, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 78 ] }, { - "id": 18780, + "id": 18786, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18787, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18788, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18789, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18790, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18791, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18792, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18793, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18794, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18795, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18796, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18797, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 78 + ] + }, + { + "id": 18798, "luminance": 0, "opaque": true, "replaceable": false, @@ -201129,10 +201398,10 @@ ] }, { - "id": 818, + "id": 822, "name": "crimson_stairs", "translation_key": "block.minecraft.crimson_stairs", - "item_id": 369, + "item_id": 371, "properties": [ { "name": "facing", @@ -201168,208 +201437,16 @@ ] } ], - "default_state_id": 18792, + "default_state_id": 18810, "states": [ - { - "id": 18781, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 18782, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 18783, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 18784, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 18785, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 18786, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 18787, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 18788, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 18789, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 18790, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 18791, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 18792, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 18793, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 18794, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 18795, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 18796, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 18797, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 18798, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, { "id": 18799, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 49 + 41, + 42 ] }, { @@ -201378,8 +201455,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 49 + 41, + 42 ] }, { @@ -201388,8 +201465,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 43, + 44, + 45 ] }, { @@ -201398,8 +201476,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 43, + 44, + 45 ] }, { @@ -201408,9 +201487,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 41, + 46, + 47 ] }, { @@ -201419,9 +201498,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 41, + 46, + 47 ] }, { @@ -201430,8 +201509,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, + 48, + 42, 49 ] }, @@ -201441,8 +201520,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, + 48, + 42, 49 ] }, @@ -201452,9 +201531,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, + 44, 50, - 49 + 45 ] }, { @@ -201463,9 +201542,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, + 44, 50, - 49 + 45 ] }, { @@ -201474,9 +201553,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 51, + 52 ] }, { @@ -201485,9 +201563,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 51, + 52 ] }, { @@ -201497,7 +201574,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42 + 50, + 49 ] }, { @@ -201507,7 +201585,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42 + 50, + 49 ] }, { @@ -201517,8 +201596,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 52, + 45 ] }, { @@ -201528,8 +201607,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 52, + 45 ] }, { @@ -201539,8 +201618,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 53 ] }, { @@ -201550,8 +201628,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 53 ] }, { @@ -201561,7 +201638,7 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 49 ] }, { @@ -201571,7 +201648,7 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 49 ] }, { @@ -201580,8 +201657,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 47 + 54, + 52 ] }, { @@ -201590,8 +201667,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 47 + 54, + 52 ] }, { @@ -201600,8 +201677,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 54, + 44, + 53 ] }, { @@ -201610,8 +201688,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 54, + 44, + 53 ] }, { @@ -201642,9 +201721,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 + 46, + 50, + 49 ] }, { @@ -201653,9 +201732,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 + 46, + 50, + 49 ] }, { @@ -201686,9 +201765,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 51, + 42 ] }, { @@ -201697,9 +201775,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 51, + 42 ] }, { @@ -201709,7 +201786,8 @@ "replaceable": false, "collision_shapes": [ 51, - 50 + 42, + 49 ] }, { @@ -201719,7 +201797,8 @@ "replaceable": false, "collision_shapes": [ 51, - 50 + 42, + 49 ] }, { @@ -201751,8 +201830,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 45 ] }, { @@ -201762,8 +201840,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 45 ] }, { @@ -201792,8 +201869,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 53 + 43, + 56 ] }, { @@ -201802,8 +201879,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 53 + 43, + 56 ] }, { @@ -201812,8 +201889,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 43, + 46, + 49 ] }, { @@ -201822,8 +201900,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 43, + 46, + 49 ] }, { @@ -201832,9 +201911,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 43, + 44, + 45 ] }, { @@ -201843,9 +201922,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 43, + 44, + 45 ] }, { @@ -201854,9 +201933,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 55, + 52, + 45 ] }, { @@ -201865,9 +201944,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 55, + 52, + 45 ] }, { @@ -201876,9 +201955,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -201887,9 +201966,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -201898,9 +201977,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 51, + 50 ] }, { @@ -201909,9 +201987,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 51, + 50 ] }, { @@ -201921,7 +201998,8 @@ "replaceable": false, "collision_shapes": [ 51, - 56 + 50, + 45 ] }, { @@ -201931,7 +202009,8 @@ "replaceable": false, "collision_shapes": [ 51, - 56 + 50, + 45 ] }, { @@ -201941,8 +202020,8 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 50, + 49 ] }, { @@ -201952,8 +202031,8 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 50, + 49 ] }, { @@ -201963,8 +202042,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 47 ] }, { @@ -201974,8 +202052,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 47 ] }, { @@ -201985,7 +202062,7 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 53 ] }, { @@ -201995,7 +202072,7 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 53 ] }, { @@ -202003,13 +202080,205 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 18860, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 18861, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 18862, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 18863, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 18864, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 18865, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 18866, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 18867, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 18868, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 18869, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 18870, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 18871, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 18872, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 18873, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 18874, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 18875, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 18876, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 18877, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 51, 45 ] }, { - "id": 18860, + "id": 18878, "luminance": 0, "opaque": true, "replaceable": false, @@ -202021,10 +202290,10 @@ ] }, { - "id": 819, + "id": 823, "name": "warped_stairs", "translation_key": "block.minecraft.warped_stairs", - "item_id": 370, + "item_id": 372, "properties": [ { "name": "facing", @@ -202060,208 +202329,16 @@ ] } ], - "default_state_id": 18872, + "default_state_id": 18890, "states": [ - { - "id": 18861, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 18862, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 18863, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 18864, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 18865, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 18866, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 18867, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 18868, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 18869, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 18870, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 18871, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 18872, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 18873, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 18874, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 18875, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 18876, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 18877, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 18878, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, { "id": 18879, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 49 + 41, + 42 ] }, { @@ -202270,8 +202347,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 49 + 41, + 42 ] }, { @@ -202280,8 +202357,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 43, + 44, + 45 ] }, { @@ -202290,8 +202368,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 43, + 44, + 45 ] }, { @@ -202300,9 +202379,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 41, + 46, + 47 ] }, { @@ -202311,9 +202390,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 41, + 46, + 47 ] }, { @@ -202322,8 +202401,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, + 48, + 42, 49 ] }, @@ -202333,8 +202412,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, + 48, + 42, 49 ] }, @@ -202344,9 +202423,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, + 44, 50, - 49 + 45 ] }, { @@ -202355,9 +202434,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, + 44, 50, - 49 + 45 ] }, { @@ -202366,9 +202445,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 51, + 52 ] }, { @@ -202377,9 +202455,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 51, + 52 ] }, { @@ -202389,7 +202466,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42 + 50, + 49 ] }, { @@ -202399,7 +202477,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42 + 50, + 49 ] }, { @@ -202409,8 +202488,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 52, + 45 ] }, { @@ -202420,8 +202499,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 52, + 45 ] }, { @@ -202431,8 +202510,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 53 ] }, { @@ -202442,8 +202520,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 53 ] }, { @@ -202453,7 +202530,7 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 49 ] }, { @@ -202463,7 +202540,7 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 49 ] }, { @@ -202472,8 +202549,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 47 + 54, + 52 ] }, { @@ -202482,8 +202559,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 47 + 54, + 52 ] }, { @@ -202492,8 +202569,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 54, + 44, + 53 ] }, { @@ -202502,8 +202580,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 54, + 44, + 53 ] }, { @@ -202534,9 +202613,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 + 46, + 50, + 49 ] }, { @@ -202545,9 +202624,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 + 46, + 50, + 49 ] }, { @@ -202578,9 +202657,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 51, + 42 ] }, { @@ -202589,9 +202667,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 51, + 42 ] }, { @@ -202601,7 +202678,8 @@ "replaceable": false, "collision_shapes": [ 51, - 50 + 42, + 49 ] }, { @@ -202611,7 +202689,8 @@ "replaceable": false, "collision_shapes": [ 51, - 50 + 42, + 49 ] }, { @@ -202643,8 +202722,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 45 ] }, { @@ -202654,8 +202732,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 45 ] }, { @@ -202684,8 +202761,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 53 + 43, + 56 ] }, { @@ -202694,8 +202771,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 53 + 43, + 56 ] }, { @@ -202704,8 +202781,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 43, + 46, + 49 ] }, { @@ -202714,8 +202792,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 43, + 46, + 49 ] }, { @@ -202724,9 +202803,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 43, + 44, + 45 ] }, { @@ -202735,9 +202814,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 43, + 44, + 45 ] }, { @@ -202746,9 +202825,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 55, + 52, + 45 ] }, { @@ -202757,9 +202836,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 55, + 52, + 45 ] }, { @@ -202768,9 +202847,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -202779,9 +202858,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -202790,9 +202869,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 51, + 50 ] }, { @@ -202801,9 +202879,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 51, + 50 ] }, { @@ -202813,7 +202890,8 @@ "replaceable": false, "collision_shapes": [ 51, - 56 + 50, + 45 ] }, { @@ -202823,7 +202901,8 @@ "replaceable": false, "collision_shapes": [ 51, - 56 + 50, + 45 ] }, { @@ -202833,8 +202912,8 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 50, + 49 ] }, { @@ -202844,8 +202923,8 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 50, + 49 ] }, { @@ -202855,8 +202934,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 47 ] }, { @@ -202866,8 +202944,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 47 ] }, { @@ -202877,7 +202954,7 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 53 ] }, { @@ -202887,7 +202964,7 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 53 ] }, { @@ -202895,13 +202972,205 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 18940, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 18941, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 18942, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 18943, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 18944, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 18945, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 18946, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 18947, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 18948, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 18949, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 18950, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 18951, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 18952, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 18953, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 18954, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 18955, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 18956, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 18957, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 51, 45 ] }, { - "id": 18940, + "id": 18958, "luminance": 0, "opaque": true, "replaceable": false, @@ -202913,10 +203182,10 @@ ] }, { - "id": 820, + "id": 824, "name": "crimson_button", "translation_key": "block.minecraft.crimson_button", - "item_id": 667, + "item_id": 671, "properties": [ { "name": "face", @@ -202943,134 +203212,8 @@ ] } ], - "default_state_id": 18950, + "default_state_id": 18968, "states": [ - { - "id": 18941, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18942, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18943, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18944, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18945, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18946, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18947, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18948, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18949, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18950, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18951, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18952, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18953, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18954, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18955, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18956, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18957, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 18958, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, { "id": 18959, "luminance": 0, @@ -203112,42 +203255,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [] - } - ] - }, - { - "id": 821, - "name": "warped_button", - "translation_key": "block.minecraft.warped_button", - "item_id": 668, - "properties": [ - { - "name": "face", - "values": [ - "floor", - "wall", - "ceiling" - ] }, - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 18974, - "states": [ { "id": 18965, "luminance": 0, @@ -203273,7 +203381,42 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + } + ] + }, + { + "id": 825, + "name": "warped_button", + "translation_key": "block.minecraft.warped_button", + "item_id": 672, + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 18992, + "states": [ { "id": 18983, "luminance": 0, @@ -203315,14 +203458,140 @@ "opaque": false, "replaceable": false, "collision_shapes": [] + }, + { + "id": 18989, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18990, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18991, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18992, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18993, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18994, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18995, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18996, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18997, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18998, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 18999, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 19000, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 19001, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 19002, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 19003, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 19004, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 19005, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 19006, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] } ] }, { - "id": 822, + "id": 826, "name": "crimson_door", "translation_key": "block.minecraft.crimson_door", - "item_id": 694, + "item_id": 698, "properties": [ { "name": "facing", @@ -203362,177 +203631,15 @@ ] } ], - "default_state_id": 19000, + "default_state_id": 19018, "states": [ - { - "id": 18989, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 18990, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 18991, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18992, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18993, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 18994, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 18995, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18996, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 18997, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 18998, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 64 - ] - }, - { - "id": 18999, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 19000, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 19001, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 19002, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 19003, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 19004, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 65 - ] - }, - { - "id": 19005, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, - { - "id": 19006, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 66 - ] - }, { "id": 19007, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 64 ] }, { @@ -203541,7 +203648,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 64 ] }, { @@ -203550,7 +203657,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -203559,7 +203666,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -203568,7 +203675,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 66 ] }, { @@ -203577,7 +203684,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 66 ] }, { @@ -203586,7 +203693,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 65 ] }, { @@ -203595,7 +203702,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 65 ] }, { @@ -203604,7 +203711,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 64 ] }, { @@ -203613,7 +203720,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 64 ] }, { @@ -203622,7 +203729,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -203631,7 +203738,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -203640,7 +203747,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 66 ] }, { @@ -203649,7 +203756,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 66 ] }, { @@ -203712,7 +203819,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -203721,7 +203828,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -203730,7 +203837,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -203739,7 +203846,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -203784,7 +203891,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -203793,7 +203900,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -203820,7 +203927,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -203829,7 +203936,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -203838,7 +203945,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 66 ] }, { @@ -203847,7 +203954,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 66 ] }, { @@ -203856,7 +203963,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 67 ] }, { @@ -203865,7 +203972,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 67 ] }, { @@ -203874,7 +203981,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 66 ] }, { @@ -203883,7 +203990,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 66 ] }, { @@ -203892,7 +203999,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -203901,7 +204008,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -203910,7 +204017,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 66 ] }, { @@ -203919,7 +204026,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 66 ] }, { @@ -203928,7 +204035,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 67 ] }, { @@ -203937,64 +204044,16 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 - ] - } - ] - }, - { - "id": 823, - "name": "warped_door", - "translation_key": "block.minecraft.warped_door", - "item_id": 695, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" + 67 ] }, - { - "name": "half", - "values": [ - "upper", - "lower" - ] - }, - { - "name": "hinge", - "values": [ - "left", - "right" - ] - }, - { - "name": "open", - "values": [ - "true", - "false" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 19064, - "states": [ { "id": 19053, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -204003,7 +204062,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 66 ] }, { @@ -204012,7 +204071,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -204021,7 +204080,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -204030,7 +204089,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -204039,7 +204098,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -204084,7 +204143,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -204093,7 +204152,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -204102,7 +204161,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -204111,7 +204170,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -204138,7 +204197,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -204147,16 +204206,64 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 + ] + } + ] + }, + { + "id": 827, + "name": "warped_door", + "translation_key": "block.minecraft.warped_door", + "item_id": 699, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" ] }, + { + "name": "half", + "values": [ + "upper", + "lower" + ] + }, + { + "name": "hinge", + "values": [ + "left", + "right" + ] + }, + { + "name": "open", + "values": [ + "true", + "false" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19082, + "states": [ { "id": 19071, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 64 ] }, { @@ -204165,7 +204272,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 64 ] }, { @@ -204174,7 +204281,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -204183,7 +204290,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -204192,7 +204299,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 66 ] }, { @@ -204201,7 +204308,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 66 ] }, { @@ -204210,7 +204317,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 65 ] }, { @@ -204219,7 +204326,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 65 ] }, { @@ -204228,7 +204335,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 64 ] }, { @@ -204237,7 +204344,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 64 ] }, { @@ -204246,7 +204353,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -204255,7 +204362,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -204264,7 +204371,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 66 ] }, { @@ -204273,7 +204380,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 66 ] }, { @@ -204336,7 +204443,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -204345,7 +204452,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -204354,7 +204461,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -204363,7 +204470,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 67 ] }, { @@ -204408,7 +204515,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -204417,7 +204524,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 66 + 64 ] }, { @@ -204444,7 +204551,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -204453,7 +204560,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -204462,7 +204569,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 66 ] }, { @@ -204471,7 +204578,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 66 ] }, { @@ -204480,7 +204587,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 67 ] }, { @@ -204489,7 +204596,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 67 ] }, { @@ -204498,7 +204605,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 66 ] }, { @@ -204507,7 +204614,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 67 + 66 ] }, { @@ -204516,7 +204623,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -204525,7 +204632,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 65 ] }, { @@ -204534,7 +204641,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 66 ] }, { @@ -204543,7 +204650,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 65 + 66 ] }, { @@ -204552,7 +204659,7 @@ "opaque": false, "replaceable": false, "collision_shapes": [ - 64 + 67 ] }, { @@ -204560,6 +204667,168 @@ "luminance": 0, "opaque": false, "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 19117, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 19118, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 66 + ] + }, + { + "id": 19119, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 19120, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 19121, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 19122, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 19123, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 19124, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 19125, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 19126, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 19127, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 19128, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 67 + ] + }, + { + "id": 19129, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 19130, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 19131, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 19132, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 65 + ] + }, + { + "id": 19133, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 64 + ] + }, + { + "id": 19134, + "luminance": 0, + "opaque": false, + "replaceable": false, "collision_shapes": [ 64 ] @@ -204567,11 +204836,11 @@ ] }, { - "id": 824, + "id": 828, "name": "crimson_sign", "translation_key": "block.minecraft.crimson_sign", - "item_id": 851, - "wall_variant_id": 826, + "item_id": 855, + "wall_variant_id": 830, "properties": [ { "name": "rotation", @@ -204602,152 +204871,8 @@ ] } ], - "default_state_id": 19118, + "default_state_id": 19136, "states": [ - { - "id": 19117, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19118, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19119, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19120, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19121, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19122, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19123, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19124, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19125, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19126, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19127, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19128, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19129, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19130, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19131, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19132, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19133, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, - { - "id": 19134, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [], - "block_entity_type": 7 - }, { "id": 19135, "luminance": 0, @@ -204859,47 +204984,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 825, - "name": "warped_sign", - "translation_key": "block.minecraft.warped_sign", - "item_id": 852, - "wall_variant_id": 827, - "properties": [ - { - "name": "rotation", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5", - "6", - "7", - "8", - "9", - "10", - "11", - "12", - "13", - "14", - "15" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 19150, - "states": [ { "id": 19149, "luminance": 0, @@ -205043,7 +205128,47 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + } + ] + }, + { + "id": 829, + "name": "warped_sign", + "translation_key": "block.minecraft.warped_sign", + "item_id": 856, + "wall_variant_id": 831, + "properties": [ + { + "name": "rotation", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19168, + "states": [ { "id": 19167, "luminance": 0, @@ -205155,34 +205280,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 826, - "name": "crimson_wall_sign", - "translation_key": "block.minecraft.crimson_sign", - "item_id": 851, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 19182, - "states": [ { "id": 19181, "luminance": 0, @@ -205246,34 +205344,7 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 - } - ] - }, - { - "id": 827, - "name": "warped_wall_sign", - "translation_key": "block.minecraft.warped_sign", - "item_id": 852, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 19190, - "states": [ { "id": 19189, "luminance": 0, @@ -205337,14 +205408,212 @@ "replaceable": false, "collision_shapes": [], "block_entity_type": 7 + }, + { + "id": 19197, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19198, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 } ] }, { - "id": 828, + "id": 830, + "name": "crimson_wall_sign", + "translation_key": "block.minecraft.crimson_sign", + "item_id": 855, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19200, + "states": [ + { + "id": 19199, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19200, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19201, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19202, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19203, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19204, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19205, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19206, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + } + ] + }, + { + "id": 831, + "name": "warped_wall_sign", + "translation_key": "block.minecraft.warped_sign", + "item_id": 856, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19208, + "states": [ + { + "id": 19207, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19208, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19209, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19210, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19211, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19212, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19213, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + }, + { + "id": 19214, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [], + "block_entity_type": 7 + } + ] + }, + { + "id": 832, "name": "structure_block", "translation_key": "block.minecraft.structure_block", - "item_id": 750, + "item_id": 754, "properties": [ { "name": "mode", @@ -205356,10 +205625,10 @@ ] } ], - "default_state_id": 19198, + "default_state_id": 19216, "states": [ { - "id": 19197, + "id": 19215, "luminance": 0, "opaque": true, "replaceable": false, @@ -205369,7 +205638,7 @@ "block_entity_type": 20 }, { - "id": 19198, + "id": 19216, "luminance": 0, "opaque": true, "replaceable": false, @@ -205379,7 +205648,7 @@ "block_entity_type": 20 }, { - "id": 19199, + "id": 19217, "luminance": 0, "opaque": true, "replaceable": false, @@ -205389,7 +205658,7 @@ "block_entity_type": 20 }, { - "id": 19200, + "id": 19218, "luminance": 0, "opaque": true, "replaceable": false, @@ -205401,10 +205670,10 @@ ] }, { - "id": 829, + "id": 833, "name": "jigsaw", "translation_key": "block.minecraft.jigsaw", - "item_id": 751, + "item_id": 755, "properties": [ { "name": "orientation", @@ -205424,10 +205693,10 @@ ] } ], - "default_state_id": 19211, + "default_state_id": 19229, "states": [ { - "id": 19201, + "id": 19219, "luminance": 0, "opaque": true, "replaceable": false, @@ -205437,7 +205706,7 @@ "block_entity_type": 31 }, { - "id": 19202, + "id": 19220, "luminance": 0, "opaque": true, "replaceable": false, @@ -205447,7 +205716,7 @@ "block_entity_type": 31 }, { - "id": 19203, + "id": 19221, "luminance": 0, "opaque": true, "replaceable": false, @@ -205457,7 +205726,7 @@ "block_entity_type": 31 }, { - "id": 19204, + "id": 19222, "luminance": 0, "opaque": true, "replaceable": false, @@ -205467,7 +205736,7 @@ "block_entity_type": 31 }, { - "id": 19205, + "id": 19223, "luminance": 0, "opaque": true, "replaceable": false, @@ -205477,7 +205746,7 @@ "block_entity_type": 31 }, { - "id": 19206, + "id": 19224, "luminance": 0, "opaque": true, "replaceable": false, @@ -205487,7 +205756,7 @@ "block_entity_type": 31 }, { - "id": 19207, + "id": 19225, "luminance": 0, "opaque": true, "replaceable": false, @@ -205497,7 +205766,7 @@ "block_entity_type": 31 }, { - "id": 19208, + "id": 19226, "luminance": 0, "opaque": true, "replaceable": false, @@ -205507,7 +205776,7 @@ "block_entity_type": 31 }, { - "id": 19209, + "id": 19227, "luminance": 0, "opaque": true, "replaceable": false, @@ -205517,7 +205786,7 @@ "block_entity_type": 31 }, { - "id": 19210, + "id": 19228, "luminance": 0, "opaque": true, "replaceable": false, @@ -205527,7 +205796,7 @@ "block_entity_type": 31 }, { - "id": 19211, + "id": 19229, "luminance": 0, "opaque": true, "replaceable": false, @@ -205537,7 +205806,7 @@ "block_entity_type": 31 }, { - "id": 19212, + "id": 19230, "luminance": 0, "opaque": true, "replaceable": false, @@ -205549,10 +205818,10 @@ ] }, { - "id": 830, + "id": 834, "name": "composter", "translation_key": "block.minecraft.composter", - "item_id": 1147, + "item_id": 1153, "properties": [ { "name": "level", @@ -205569,132 +205838,132 @@ ] } ], - "default_state_id": 19213, + "default_state_id": 19231, "states": [ { - "id": 19213, + "id": 19231, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 297, - 298, - 299, - 300 + 300, + 301, + 302, + 303 ] }, { - "id": 19214, + "id": 19232, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 297, - 298, - 299, - 300 + 300, + 301, + 302, + 303 ] }, { - "id": 19215, + "id": 19233, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 297, - 298, - 299, - 300 + 300, + 301, + 302, + 303 ] }, { - "id": 19216, + "id": 19234, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 297, - 298, - 299, - 300 + 300, + 301, + 302, + 303 ] }, { - "id": 19217, + "id": 19235, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 297, - 298, - 299, - 300 + 300, + 301, + 302, + 303 ] }, { - "id": 19218, + "id": 19236, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 297, - 298, - 299, - 300 + 300, + 301, + 302, + 303 ] }, { - "id": 19219, + "id": 19237, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 297, - 298, - 299, - 300 + 300, + 301, + 302, + 303 ] }, { - "id": 19220, + "id": 19238, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 297, - 298, - 299, - 300 + 300, + 301, + 302, + 303 ] }, { - "id": 19221, + "id": 19239, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 70, - 297, - 298, - 299, - 300 + 300, + 301, + 302, + 303 ] } ] }, { - "id": 831, + "id": 835, "name": "target", "translation_key": "block.minecraft.target", - "item_id": 646, + "item_id": 649, "properties": [ { "name": "power", @@ -205718,10 +205987,10 @@ ] } ], - "default_state_id": 19222, + "default_state_id": 19240, "states": [ { - "id": 19222, + "id": 19240, "luminance": 0, "opaque": true, "replaceable": false, @@ -205730,7 +205999,7 @@ ] }, { - "id": 19223, + "id": 19241, "luminance": 0, "opaque": true, "replaceable": false, @@ -205739,7 +206008,7 @@ ] }, { - "id": 19224, + "id": 19242, "luminance": 0, "opaque": true, "replaceable": false, @@ -205748,7 +206017,7 @@ ] }, { - "id": 19225, + "id": 19243, "luminance": 0, "opaque": true, "replaceable": false, @@ -205757,7 +206026,7 @@ ] }, { - "id": 19226, + "id": 19244, "luminance": 0, "opaque": true, "replaceable": false, @@ -205766,7 +206035,7 @@ ] }, { - "id": 19227, + "id": 19245, "luminance": 0, "opaque": true, "replaceable": false, @@ -205775,7 +206044,7 @@ ] }, { - "id": 19228, + "id": 19246, "luminance": 0, "opaque": true, "replaceable": false, @@ -205784,7 +206053,7 @@ ] }, { - "id": 19229, + "id": 19247, "luminance": 0, "opaque": true, "replaceable": false, @@ -205793,7 +206062,7 @@ ] }, { - "id": 19230, + "id": 19248, "luminance": 0, "opaque": true, "replaceable": false, @@ -205802,7 +206071,7 @@ ] }, { - "id": 19231, + "id": 19249, "luminance": 0, "opaque": true, "replaceable": false, @@ -205811,7 +206080,7 @@ ] }, { - "id": 19232, + "id": 19250, "luminance": 0, "opaque": true, "replaceable": false, @@ -205820,7 +206089,7 @@ ] }, { - "id": 19233, + "id": 19251, "luminance": 0, "opaque": true, "replaceable": false, @@ -205829,7 +206098,7 @@ ] }, { - "id": 19234, + "id": 19252, "luminance": 0, "opaque": true, "replaceable": false, @@ -205838,7 +206107,7 @@ ] }, { - "id": 19235, + "id": 19253, "luminance": 0, "opaque": true, "replaceable": false, @@ -205847,7 +206116,7 @@ ] }, { - "id": 19236, + "id": 19254, "luminance": 0, "opaque": true, "replaceable": false, @@ -205856,7 +206125,7 @@ ] }, { - "id": 19237, + "id": 19255, "luminance": 0, "opaque": true, "replaceable": false, @@ -205867,10 +206136,10 @@ ] }, { - "id": 832, + "id": 836, "name": "bee_nest", "translation_key": "block.minecraft.bee_nest", - "item_id": 1165, + "item_id": 1171, "properties": [ { "name": "facing", @@ -205893,188 +206162,8 @@ ] } ], - "default_state_id": 19238, + "default_state_id": 19256, "states": [ - { - "id": 19238, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19239, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19240, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19241, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19242, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19243, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19244, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19245, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19246, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19247, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19248, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19249, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19250, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19251, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19252, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19253, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19254, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, - { - "id": 19255, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ], - "block_entity_type": 33 - }, { "id": 19256, "luminance": 0, @@ -206134,38 +206223,7 @@ 0 ], "block_entity_type": 33 - } - ] - }, - { - "id": 833, - "name": "beehive", - "translation_key": "block.minecraft.beehive", - "item_id": 1166, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] }, - { - "name": "honey_level", - "values": [ - "0", - "1", - "2", - "3", - "4", - "5" - ] - } - ], - "default_state_id": 19262, - "states": [ { "id": 19262, "luminance": 0, @@ -206345,7 +206403,38 @@ 0 ], "block_entity_type": 33 + } + ] + }, + { + "id": 837, + "name": "beehive", + "translation_key": "block.minecraft.beehive", + "item_id": 1172, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] }, + { + "name": "honey_level", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + } + ], + "default_state_id": 19280, + "states": [ { "id": 19280, "luminance": 0, @@ -206405,19 +206494,199 @@ 0 ], "block_entity_type": 33 + }, + { + "id": 19286, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19287, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19288, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19289, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19290, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19291, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19292, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19293, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19294, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19295, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19296, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19297, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19298, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19299, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19300, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19301, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19302, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 + }, + { + "id": 19303, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ], + "block_entity_type": 33 } ] }, { - "id": 834, + "id": 838, "name": "honey_block", "translation_key": "block.minecraft.honey_block", - "item_id": 640, + "item_id": 643, "properties": [], - "default_state_id": 19286, + "default_state_id": 19304, "states": [ { - "id": 19286, + "id": 19304, "luminance": 0, "opaque": false, "replaceable": false, @@ -206428,15 +206697,15 @@ ] }, { - "id": 835, + "id": 839, "name": "honeycomb_block", "translation_key": "block.minecraft.honeycomb_block", - "item_id": 1168, + "item_id": 1174, "properties": [], - "default_state_id": 19287, + "default_state_id": 19305, "states": [ { - "id": 19287, + "id": 19305, "luminance": 0, "opaque": true, "replaceable": false, @@ -206447,15 +206716,15 @@ ] }, { - "id": 836, + "id": 840, "name": "netherite_block", "translation_key": "block.minecraft.netherite_block", - "item_id": 77, + "item_id": 78, "properties": [], - "default_state_id": 19288, + "default_state_id": 19306, "states": [ { - "id": 19288, + "id": 19306, "luminance": 0, "opaque": true, "replaceable": false, @@ -206466,15 +206735,15 @@ ] }, { - "id": 837, + "id": 841, "name": "ancient_debris", "translation_key": "block.minecraft.ancient_debris", - "item_id": 66, + "item_id": 67, "properties": [], - "default_state_id": 19289, + "default_state_id": 19307, "states": [ { - "id": 19289, + "id": 19307, "luminance": 0, "opaque": true, "replaceable": false, @@ -206485,15 +206754,15 @@ ] }, { - "id": 838, + "id": 842, "name": "crying_obsidian", "translation_key": "block.minecraft.crying_obsidian", - "item_id": 1170, + "item_id": 1176, "properties": [], - "default_state_id": 19290, + "default_state_id": 19308, "states": [ { - "id": 19290, + "id": 19308, "luminance": 10, "opaque": true, "replaceable": false, @@ -206504,10 +206773,10 @@ ] }, { - "id": 839, + "id": 843, "name": "respawn_anchor", "translation_key": "block.minecraft.respawn_anchor", - "item_id": 1183, + "item_id": 1189, "properties": [ { "name": "charges", @@ -206520,10 +206789,10 @@ ] } ], - "default_state_id": 19291, + "default_state_id": 19309, "states": [ { - "id": 19291, + "id": 19309, "luminance": 0, "opaque": true, "replaceable": false, @@ -206532,7 +206801,7 @@ ] }, { - "id": 19292, + "id": 19310, "luminance": 3, "opaque": true, "replaceable": false, @@ -206541,7 +206810,7 @@ ] }, { - "id": 19293, + "id": 19311, "luminance": 7, "opaque": true, "replaceable": false, @@ -206550,7 +206819,7 @@ ] }, { - "id": 19294, + "id": 19312, "luminance": 11, "opaque": true, "replaceable": false, @@ -206559,7 +206828,7 @@ ] }, { - "id": 19295, + "id": 19313, "luminance": 15, "opaque": true, "replaceable": false, @@ -206570,15 +206839,15 @@ ] }, { - "id": 840, + "id": 844, "name": "potted_crimson_fungus", "translation_key": "block.minecraft.potted_crimson_fungus", "item_id": 0, "properties": [], - "default_state_id": 19296, + "default_state_id": 19314, "states": [ { - "id": 19296, + "id": 19314, "luminance": 0, "opaque": false, "replaceable": false, @@ -206588,92 +206857,73 @@ } ] }, - { - "id": 841, - "name": "potted_warped_fungus", - "translation_key": "block.minecraft.potted_warped_fungus", - "item_id": 0, - "properties": [], - "default_state_id": 19297, - "states": [ - { - "id": 19297, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 156 - ] - } - ] - }, - { - "id": 842, - "name": "potted_crimson_roots", - "translation_key": "block.minecraft.potted_crimson_roots", - "item_id": 0, - "properties": [], - "default_state_id": 19298, - "states": [ - { - "id": 19298, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 156 - ] - } - ] - }, - { - "id": 843, - "name": "potted_warped_roots", - "translation_key": "block.minecraft.potted_warped_roots", - "item_id": 0, - "properties": [], - "default_state_id": 19299, - "states": [ - { - "id": 19299, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 156 - ] - } - ] - }, - { - "id": 844, - "name": "lodestone", - "translation_key": "block.minecraft.lodestone", - "item_id": 1169, - "properties": [], - "default_state_id": 19300, - "states": [ - { - "id": 19300, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, { "id": 845, - "name": "blackstone", - "translation_key": "block.minecraft.blackstone", - "item_id": 1171, + "name": "potted_warped_fungus", + "translation_key": "block.minecraft.potted_warped_fungus", + "item_id": 0, "properties": [], - "default_state_id": 19301, + "default_state_id": 19315, "states": [ { - "id": 19301, + "id": 19315, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 156 + ] + } + ] + }, + { + "id": 846, + "name": "potted_crimson_roots", + "translation_key": "block.minecraft.potted_crimson_roots", + "item_id": 0, + "properties": [], + "default_state_id": 19316, + "states": [ + { + "id": 19316, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 156 + ] + } + ] + }, + { + "id": 847, + "name": "potted_warped_roots", + "translation_key": "block.minecraft.potted_warped_roots", + "item_id": 0, + "properties": [], + "default_state_id": 19317, + "states": [ + { + "id": 19317, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 156 + ] + } + ] + }, + { + "id": 848, + "name": "lodestone", + "translation_key": "block.minecraft.lodestone", + "item_id": 1175, + "properties": [], + "default_state_id": 19318, + "states": [ + { + "id": 19318, "luminance": 0, "opaque": true, "replaceable": false, @@ -206684,10 +206934,29 @@ ] }, { - "id": 846, + "id": 849, + "name": "blackstone", + "translation_key": "block.minecraft.blackstone", + "item_id": 1177, + "properties": [], + "default_state_id": 19319, + "states": [ + { + "id": 19319, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 850, "name": "blackstone_stairs", "translation_key": "block.minecraft.blackstone_stairs", - "item_id": 1173, + "item_id": 1179, "properties": [ { "name": "facing", @@ -206723,208 +206992,16 @@ ] } ], - "default_state_id": 19313, + "default_state_id": 19331, "states": [ - { - "id": 19302, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 19303, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 19304, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 19305, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 19306, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 19307, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 19308, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 19309, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 19310, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 19311, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 19312, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 19313, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 19314, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 19315, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 19316, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 19317, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 19318, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 19319, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, { "id": 19320, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 49 + 41, + 42 ] }, { @@ -206933,8 +207010,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 49 + 41, + 42 ] }, { @@ -206943,8 +207020,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 43, + 44, + 45 ] }, { @@ -206953,8 +207031,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 52 + 43, + 44, + 45 ] }, { @@ -206963,9 +207042,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 41, + 46, + 47 ] }, { @@ -206974,9 +207053,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 41, + 46, + 47 ] }, { @@ -206985,8 +207064,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, + 48, + 42, 49 ] }, @@ -206996,8 +207075,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 46, + 48, + 42, 49 ] }, @@ -207007,9 +207086,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, + 44, 50, - 49 + 45 ] }, { @@ -207018,9 +207097,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, + 44, 50, - 49 + 45 ] }, { @@ -207029,9 +207108,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 51, + 52 ] }, { @@ -207040,9 +207118,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 55, - 52, - 45 + 51, + 52 ] }, { @@ -207052,7 +207129,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42 + 50, + 49 ] }, { @@ -207062,7 +207140,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42 + 50, + 49 ] }, { @@ -207072,8 +207151,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 52, + 45 ] }, { @@ -207083,8 +207162,8 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 52, + 45 ] }, { @@ -207094,8 +207173,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 53 ] }, { @@ -207105,8 +207183,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 45 + 53 ] }, { @@ -207116,7 +207193,7 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 49 ] }, { @@ -207126,7 +207203,7 @@ "replaceable": false, "collision_shapes": [ 51, - 45 + 49 ] }, { @@ -207135,8 +207212,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 47 + 54, + 52 ] }, { @@ -207145,8 +207222,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 47 + 54, + 52 ] }, { @@ -207155,8 +207232,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 54, + 44, + 53 ] }, { @@ -207165,8 +207243,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 56 + 54, + 44, + 53 ] }, { @@ -207197,9 +207276,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 + 46, + 50, + 49 ] }, { @@ -207208,9 +207287,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 + 46, + 50, + 49 ] }, { @@ -207241,9 +207320,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 51, + 42 ] }, { @@ -207252,9 +207330,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 48, - 42, - 49 + 51, + 42 ] }, { @@ -207264,7 +207341,8 @@ "replaceable": false, "collision_shapes": [ 51, - 50 + 42, + 49 ] }, { @@ -207274,7 +207352,8 @@ "replaceable": false, "collision_shapes": [ 51, - 50 + 42, + 49 ] }, { @@ -207306,8 +207385,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 45 ] }, { @@ -207317,8 +207395,7 @@ "replaceable": false, "collision_shapes": [ 51, - 50, - 49 + 45 ] }, { @@ -207347,8 +207424,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 53 + 43, + 56 ] }, { @@ -207357,8 +207434,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 53 + 43, + 56 ] }, { @@ -207367,8 +207444,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 43, + 46, + 49 ] }, { @@ -207377,8 +207455,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 57, - 50 + 43, + 46, + 49 ] }, { @@ -207387,9 +207466,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 43, + 44, + 45 ] }, { @@ -207398,9 +207477,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 43, + 44, + 45 ] }, { @@ -207409,9 +207488,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 55, + 52, + 45 ] }, { @@ -207420,9 +207499,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 54, - 44, - 53 + 55, + 52, + 45 ] }, { @@ -207431,9 +207510,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -207442,9 +207521,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 44, - 50, - 45 + 48, + 42, + 49 ] }, { @@ -207453,9 +207532,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 51, + 50 ] }, { @@ -207464,9 +207542,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 46, - 50, - 49 + 51, + 50 ] }, { @@ -207476,7 +207553,8 @@ "replaceable": false, "collision_shapes": [ 51, - 56 + 50, + 45 ] }, { @@ -207486,7 +207564,8 @@ "replaceable": false, "collision_shapes": [ 51, - 56 + 50, + 45 ] }, { @@ -207496,8 +207575,8 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 50, + 49 ] }, { @@ -207507,8 +207586,8 @@ "replaceable": false, "collision_shapes": [ 51, - 52, - 45 + 50, + 49 ] }, { @@ -207518,8 +207597,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 47 ] }, { @@ -207529,8 +207607,7 @@ "replaceable": false, "collision_shapes": [ 51, - 42, - 49 + 47 ] }, { @@ -207540,7 +207617,7 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 53 ] }, { @@ -207550,7 +207627,7 @@ "replaceable": false, "collision_shapes": [ 51, - 49 + 53 ] }, { @@ -207559,8 +207636,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 45 + 57, + 50 ] }, { @@ -207569,74 +207646,19 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 51, - 45 - ] - } - ] - }, - { - "id": 847, - "name": "blackstone_wall", - "translation_key": "block.minecraft.blackstone_wall", - "item_id": 388, - "properties": [ - { - "name": "east", - "values": [ - "none", - "low", - "tall" + 57, + 50 ] }, - { - "name": "north", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - }, - { - "name": "west", - "values": [ - "none", - "low", - "tall" - ] - } - ], - "default_state_id": 19385, - "states": [ { "id": 19382, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 140 + 41, + 46, + 47 ] }, { @@ -207645,9 +207667,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 41, + 46, + 47 ] }, { @@ -207656,9 +207678,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 54, + 44, + 53 ] }, { @@ -207667,7 +207689,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140 + 54, + 44, + 53 ] }, { @@ -207676,9 +207700,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 44, + 50, + 45 ] }, { @@ -207687,9 +207711,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 44, + 50, + 45 ] }, { @@ -207697,7 +207721,11 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 46, + 50, + 49 + ] }, { "id": 19389, @@ -207705,7 +207733,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144 + 46, + 50, + 49 ] }, { @@ -207714,7 +207744,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144 + 51, + 56 ] }, { @@ -207722,7 +207753,10 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] + "collision_shapes": [ + 51, + 56 + ] }, { "id": 19392, @@ -207730,7 +207764,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144 + 51, + 52, + 45 ] }, { @@ -207739,7 +207775,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144 + 51, + 52, + 45 ] }, { @@ -207748,8 +207786,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145 + 51, + 42, + 49 ] }, { @@ -207758,10 +207797,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 145 + 51, + 42, + 49 ] }, { @@ -207770,10 +207808,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 145 + 51, + 49 ] }, { @@ -207782,8 +207818,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145 + 51, + 49 ] }, { @@ -207792,10 +207828,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 145 + 51, + 45 ] }, { @@ -207804,4522 +207838,16 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 19400, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 19401, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 19402, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 19403, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 19404, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 19405, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 19406, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 19407, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 19408, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 19409, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 19410, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 19411, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 19412, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 19413, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 19414, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 19415, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 19416, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 19417, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 19418, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 19419, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 19420, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 19421, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 19422, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 19423, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 19424, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 19425, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 19426, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 19427, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 19428, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 19429, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 19430, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 19431, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19432, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19433, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 19434, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19435, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19436, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 19437, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19438, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19439, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 19440, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19441, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19442, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 19443, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19444, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19445, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 19446, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19447, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19448, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 19449, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19450, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19451, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 19452, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19453, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19454, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 19455, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 19456, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 19457, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 19458, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 19459, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 19460, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 19461, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 19462, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 19463, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 19464, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 19465, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 19466, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 19467, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19468, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19469, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 19470, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19471, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19472, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 19473, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19474, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19475, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 19476, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19477, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19478, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 19479, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19480, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19481, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 19482, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19483, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19484, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 19485, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19486, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19487, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 19488, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19489, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 19490, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 19491, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 19492, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 19493, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 19494, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 19495, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 19496, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 19497, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 19498, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 19499, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 19500, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 19501, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 19502, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 19503, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19504, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19505, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 19506, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19507, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19508, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 19509, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19510, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19511, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 19512, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19513, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19514, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 19515, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19516, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19517, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 19518, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19519, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19520, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 19521, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19522, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19523, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 19524, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19525, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19526, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 19527, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19528, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19529, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 19530, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19531, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19532, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 19533, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19534, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19535, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 19536, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19537, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19538, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19539, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19540, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19541, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19542, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19543, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19544, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19545, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19546, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19547, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19548, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19549, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19550, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19551, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19552, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19553, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19554, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19555, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19556, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19557, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19558, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19559, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19560, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19561, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19562, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 19563, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19564, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19565, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 19566, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19567, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19568, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 19569, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19570, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19571, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 19572, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19573, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19574, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19575, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19576, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19577, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19578, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19579, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19580, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19581, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19582, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19583, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19584, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19585, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19586, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19587, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19588, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19589, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19590, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19591, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19592, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19593, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19594, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19595, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19596, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19597, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19598, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 19599, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 19600, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 19601, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 19602, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 19603, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 19604, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 19605, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 19606, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 19607, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 19608, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 19609, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 19610, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 19611, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19612, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19613, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 19614, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19615, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19616, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 19617, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19618, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19619, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 19620, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19621, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19622, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 19623, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19624, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19625, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 19626, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19627, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 19628, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 19629, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19630, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19631, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 19632, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19633, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 19634, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 19635, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19636, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19637, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 19638, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19639, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19640, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 19641, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19642, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19643, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 19644, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19645, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19646, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19647, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19648, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19649, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19650, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19651, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19652, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19653, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19654, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19655, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19656, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19657, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19658, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19659, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19660, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19661, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19662, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19663, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19664, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19665, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19666, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19667, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19668, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19669, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19670, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 19671, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19672, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19673, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 19674, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19675, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 19676, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 19677, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19678, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19679, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 19680, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19681, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 19682, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19683, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19684, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19685, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19686, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19687, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19688, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19689, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19690, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19691, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19692, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19693, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19694, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19695, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19696, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19697, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 19698, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19699, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 19700, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19701, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19702, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19703, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 19704, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 19705, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - } - ] - }, - { - "id": 848, - "name": "blackstone_slab", - "translation_key": "block.minecraft.blackstone_slab", - "item_id": 1172, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 19709, - "states": [ - { - "id": 19706, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 19707, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 19708, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 19709, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 19710, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 19711, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 849, - "name": "polished_blackstone", - "translation_key": "block.minecraft.polished_blackstone", - "item_id": 1175, - "properties": [], - "default_state_id": 19712, - "states": [ - { - "id": 19712, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 850, - "name": "polished_blackstone_bricks", - "translation_key": "block.minecraft.polished_blackstone_bricks", - "item_id": 1179, - "properties": [], - "default_state_id": 19713, - "states": [ - { - "id": 19713, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 + 51, + 45 ] } ] }, { "id": 851, - "name": "cracked_polished_blackstone_bricks", - "translation_key": "block.minecraft.cracked_polished_blackstone_bricks", - "item_id": 1182, - "properties": [], - "default_state_id": 19714, - "states": [ - { - "id": 19714, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 852, - "name": "chiseled_polished_blackstone", - "translation_key": "block.minecraft.chiseled_polished_blackstone", - "item_id": 1178, - "properties": [], - "default_state_id": 19715, - "states": [ - { - "id": 19715, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 853, - "name": "polished_blackstone_brick_slab", - "translation_key": "block.minecraft.polished_blackstone_brick_slab", - "item_id": 1180, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 19719, - "states": [ - { - "id": 19716, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 19717, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 19718, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 19719, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 19720, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 19721, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 854, - "name": "polished_blackstone_brick_stairs", - "translation_key": "block.minecraft.polished_blackstone_brick_stairs", - "item_id": 1181, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 19733, - "states": [ - { - "id": 19722, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 19723, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 19724, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 19725, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 19726, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 19727, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 19728, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 19729, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 19730, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 19731, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 19732, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 19733, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 19734, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 19735, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 19736, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 19737, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 19738, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 19739, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 19740, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 19741, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 19742, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 19743, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 19744, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 19745, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 19746, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 19747, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 19748, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 19749, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 19750, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 19751, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 19752, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 19753, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 19754, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 19755, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 19756, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 19757, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 19758, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 19759, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 19760, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 19761, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 19762, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 19763, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 19764, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 19765, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 19766, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 19767, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 19768, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 19769, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 19770, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 19771, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 19772, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 19773, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 19774, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 19775, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 19776, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 19777, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 19778, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 19779, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 19780, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 19781, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 19782, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 19783, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 19784, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 19785, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 19786, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 19787, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 19788, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 19789, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 19790, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 19791, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 19792, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 19793, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 19794, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 19795, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 19796, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 19797, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 19798, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 19799, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 19800, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 19801, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - } - ] - }, - { - "id": 855, - "name": "polished_blackstone_brick_wall", - "translation_key": "block.minecraft.polished_blackstone_brick_wall", + "name": "blackstone_wall", + "translation_key": "block.minecraft.blackstone_wall", "item_id": 390, "properties": [ { @@ -212369,10 +207897,10 @@ ] } ], - "default_state_id": 19805, + "default_state_id": 19403, "states": [ { - "id": 19802, + "id": 19400, "luminance": 0, "opaque": true, "replaceable": false, @@ -212381,7 +207909,7 @@ ] }, { - "id": 19803, + "id": 19401, "luminance": 0, "opaque": true, "replaceable": false, @@ -212392,7 +207920,7 @@ ] }, { - "id": 19804, + "id": 19402, "luminance": 0, "opaque": true, "replaceable": false, @@ -212403,7 +207931,7 @@ ] }, { - "id": 19805, + "id": 19403, "luminance": 0, "opaque": true, "replaceable": false, @@ -212412,7 +207940,7 @@ ] }, { - "id": 19806, + "id": 19404, "luminance": 0, "opaque": true, "replaceable": false, @@ -212423,7 +207951,7 @@ ] }, { - "id": 19807, + "id": 19405, "luminance": 0, "opaque": true, "replaceable": false, @@ -212434,14 +207962,14 @@ ] }, { - "id": 19808, + "id": 19406, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 19809, + "id": 19407, "luminance": 0, "opaque": true, "replaceable": false, @@ -212450,7 +207978,7 @@ ] }, { - "id": 19810, + "id": 19408, "luminance": 0, "opaque": true, "replaceable": false, @@ -212459,14 +207987,14 @@ ] }, { - "id": 19811, + "id": 19409, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 19812, + "id": 19410, "luminance": 0, "opaque": true, "replaceable": false, @@ -212475,7 +208003,7 @@ ] }, { - "id": 19813, + "id": 19411, "luminance": 0, "opaque": true, "replaceable": false, @@ -212484,7 +208012,7 @@ ] }, { - "id": 19814, + "id": 19412, "luminance": 0, "opaque": true, "replaceable": false, @@ -212494,7 +208022,7 @@ ] }, { - "id": 19815, + "id": 19413, "luminance": 0, "opaque": true, "replaceable": false, @@ -212506,7 +208034,7 @@ ] }, { - "id": 19816, + "id": 19414, "luminance": 0, "opaque": true, "replaceable": false, @@ -212518,7 +208046,7 @@ ] }, { - "id": 19817, + "id": 19415, "luminance": 0, "opaque": true, "replaceable": false, @@ -212528,7 +208056,7 @@ ] }, { - "id": 19818, + "id": 19416, "luminance": 0, "opaque": true, "replaceable": false, @@ -212540,7 +208068,7 @@ ] }, { - "id": 19819, + "id": 19417, "luminance": 0, "opaque": true, "replaceable": false, @@ -212552,7 +208080,7 @@ ] }, { - "id": 19820, + "id": 19418, "luminance": 0, "opaque": true, "replaceable": false, @@ -212561,7 +208089,7 @@ ] }, { - "id": 19821, + "id": 19419, "luminance": 0, "opaque": true, "replaceable": false, @@ -212571,7 +208099,7 @@ ] }, { - "id": 19822, + "id": 19420, "luminance": 0, "opaque": true, "replaceable": false, @@ -212581,7 +208109,7 @@ ] }, { - "id": 19823, + "id": 19421, "luminance": 0, "opaque": true, "replaceable": false, @@ -212590,7 +208118,7 @@ ] }, { - "id": 19824, + "id": 19422, "luminance": 0, "opaque": true, "replaceable": false, @@ -212600,7 +208128,7 @@ ] }, { - "id": 19825, + "id": 19423, "luminance": 0, "opaque": true, "replaceable": false, @@ -212610,7 +208138,7 @@ ] }, { - "id": 19826, + "id": 19424, "luminance": 0, "opaque": true, "replaceable": false, @@ -212620,7 +208148,7 @@ ] }, { - "id": 19827, + "id": 19425, "luminance": 0, "opaque": true, "replaceable": false, @@ -212632,7 +208160,7 @@ ] }, { - "id": 19828, + "id": 19426, "luminance": 0, "opaque": true, "replaceable": false, @@ -212644,7 +208172,7 @@ ] }, { - "id": 19829, + "id": 19427, "luminance": 0, "opaque": true, "replaceable": false, @@ -212654,7 +208182,7 @@ ] }, { - "id": 19830, + "id": 19428, "luminance": 0, "opaque": true, "replaceable": false, @@ -212666,7 +208194,7 @@ ] }, { - "id": 19831, + "id": 19429, "luminance": 0, "opaque": true, "replaceable": false, @@ -212678,7 +208206,7 @@ ] }, { - "id": 19832, + "id": 19430, "luminance": 0, "opaque": true, "replaceable": false, @@ -212687,7 +208215,7 @@ ] }, { - "id": 19833, + "id": 19431, "luminance": 0, "opaque": true, "replaceable": false, @@ -212697,7 +208225,7 @@ ] }, { - "id": 19834, + "id": 19432, "luminance": 0, "opaque": true, "replaceable": false, @@ -212707,7 +208235,7 @@ ] }, { - "id": 19835, + "id": 19433, "luminance": 0, "opaque": true, "replaceable": false, @@ -212716,7 +208244,7 @@ ] }, { - "id": 19836, + "id": 19434, "luminance": 0, "opaque": true, "replaceable": false, @@ -212726,7 +208254,7 @@ ] }, { - "id": 19837, + "id": 19435, "luminance": 0, "opaque": true, "replaceable": false, @@ -212736,7 +208264,7 @@ ] }, { - "id": 19838, + "id": 19436, "luminance": 0, "opaque": true, "replaceable": false, @@ -212746,7 +208274,7 @@ ] }, { - "id": 19839, + "id": 19437, "luminance": 0, "opaque": true, "replaceable": false, @@ -212758,7 +208286,7 @@ ] }, { - "id": 19840, + "id": 19438, "luminance": 0, "opaque": true, "replaceable": false, @@ -212770,7 +208298,7 @@ ] }, { - "id": 19841, + "id": 19439, "luminance": 0, "opaque": true, "replaceable": false, @@ -212780,7 +208308,7 @@ ] }, { - "id": 19842, + "id": 19440, "luminance": 0, "opaque": true, "replaceable": false, @@ -212792,7 +208320,7 @@ ] }, { - "id": 19843, + "id": 19441, "luminance": 0, "opaque": true, "replaceable": false, @@ -212804,7 +208332,7 @@ ] }, { - "id": 19844, + "id": 19442, "luminance": 0, "opaque": true, "replaceable": false, @@ -212813,7 +208341,7 @@ ] }, { - "id": 19845, + "id": 19443, "luminance": 0, "opaque": true, "replaceable": false, @@ -212823,7 +208351,7 @@ ] }, { - "id": 19846, + "id": 19444, "luminance": 0, "opaque": true, "replaceable": false, @@ -212833,7 +208361,7 @@ ] }, { - "id": 19847, + "id": 19445, "luminance": 0, "opaque": true, "replaceable": false, @@ -212842,7 +208370,7 @@ ] }, { - "id": 19848, + "id": 19446, "luminance": 0, "opaque": true, "replaceable": false, @@ -212852,7 +208380,7 @@ ] }, { - "id": 19849, + "id": 19447, "luminance": 0, "opaque": true, "replaceable": false, @@ -212862,7 +208390,7 @@ ] }, { - "id": 19850, + "id": 19448, "luminance": 0, "opaque": true, "replaceable": false, @@ -212873,7 +208401,7 @@ ] }, { - "id": 19851, + "id": 19449, "luminance": 0, "opaque": true, "replaceable": false, @@ -212886,7 +208414,7 @@ ] }, { - "id": 19852, + "id": 19450, "luminance": 0, "opaque": true, "replaceable": false, @@ -212899,7 +208427,7 @@ ] }, { - "id": 19853, + "id": 19451, "luminance": 0, "opaque": true, "replaceable": false, @@ -212910,7 +208438,7 @@ ] }, { - "id": 19854, + "id": 19452, "luminance": 0, "opaque": true, "replaceable": false, @@ -212923,7 +208451,7 @@ ] }, { - "id": 19855, + "id": 19453, "luminance": 0, "opaque": true, "replaceable": false, @@ -212936,7 +208464,7 @@ ] }, { - "id": 19856, + "id": 19454, "luminance": 0, "opaque": true, "replaceable": false, @@ -212945,7 +208473,7 @@ ] }, { - "id": 19857, + "id": 19455, "luminance": 0, "opaque": true, "replaceable": false, @@ -212956,7 +208484,7 @@ ] }, { - "id": 19858, + "id": 19456, "luminance": 0, "opaque": true, "replaceable": false, @@ -212967,7 +208495,7 @@ ] }, { - "id": 19859, + "id": 19457, "luminance": 0, "opaque": true, "replaceable": false, @@ -212976,7 +208504,7 @@ ] }, { - "id": 19860, + "id": 19458, "luminance": 0, "opaque": true, "replaceable": false, @@ -212987,7 +208515,7 @@ ] }, { - "id": 19861, + "id": 19459, "luminance": 0, "opaque": true, "replaceable": false, @@ -212998,7 +208526,7 @@ ] }, { - "id": 19862, + "id": 19460, "luminance": 0, "opaque": true, "replaceable": false, @@ -213009,7 +208537,7 @@ ] }, { - "id": 19863, + "id": 19461, "luminance": 0, "opaque": true, "replaceable": false, @@ -213022,7 +208550,7 @@ ] }, { - "id": 19864, + "id": 19462, "luminance": 0, "opaque": true, "replaceable": false, @@ -213035,7 +208563,7 @@ ] }, { - "id": 19865, + "id": 19463, "luminance": 0, "opaque": true, "replaceable": false, @@ -213046,7 +208574,7 @@ ] }, { - "id": 19866, + "id": 19464, "luminance": 0, "opaque": true, "replaceable": false, @@ -213059,7 +208587,7 @@ ] }, { - "id": 19867, + "id": 19465, "luminance": 0, "opaque": true, "replaceable": false, @@ -213072,7 +208600,7 @@ ] }, { - "id": 19868, + "id": 19466, "luminance": 0, "opaque": true, "replaceable": false, @@ -213081,7 +208609,7 @@ ] }, { - "id": 19869, + "id": 19467, "luminance": 0, "opaque": true, "replaceable": false, @@ -213092,7 +208620,7 @@ ] }, { - "id": 19870, + "id": 19468, "luminance": 0, "opaque": true, "replaceable": false, @@ -213103,7 +208631,7 @@ ] }, { - "id": 19871, + "id": 19469, "luminance": 0, "opaque": true, "replaceable": false, @@ -213112,7 +208640,7 @@ ] }, { - "id": 19872, + "id": 19470, "luminance": 0, "opaque": true, "replaceable": false, @@ -213123,7 +208651,7 @@ ] }, { - "id": 19873, + "id": 19471, "luminance": 0, "opaque": true, "replaceable": false, @@ -213134,7 +208662,7 @@ ] }, { - "id": 19874, + "id": 19472, "luminance": 0, "opaque": true, "replaceable": false, @@ -213144,7 +208672,7 @@ ] }, { - "id": 19875, + "id": 19473, "luminance": 0, "opaque": true, "replaceable": false, @@ -213156,7 +208684,7 @@ ] }, { - "id": 19876, + "id": 19474, "luminance": 0, "opaque": true, "replaceable": false, @@ -213168,7 +208696,7 @@ ] }, { - "id": 19877, + "id": 19475, "luminance": 0, "opaque": true, "replaceable": false, @@ -213178,7 +208706,7 @@ ] }, { - "id": 19878, + "id": 19476, "luminance": 0, "opaque": true, "replaceable": false, @@ -213190,7 +208718,7 @@ ] }, { - "id": 19879, + "id": 19477, "luminance": 0, "opaque": true, "replaceable": false, @@ -213202,7 +208730,7 @@ ] }, { - "id": 19880, + "id": 19478, "luminance": 0, "opaque": true, "replaceable": false, @@ -213211,7 +208739,7 @@ ] }, { - "id": 19881, + "id": 19479, "luminance": 0, "opaque": true, "replaceable": false, @@ -213221,7 +208749,7 @@ ] }, { - "id": 19882, + "id": 19480, "luminance": 0, "opaque": true, "replaceable": false, @@ -213231,7 +208759,7 @@ ] }, { - "id": 19883, + "id": 19481, "luminance": 0, "opaque": true, "replaceable": false, @@ -213240,7 +208768,7 @@ ] }, { - "id": 19884, + "id": 19482, "luminance": 0, "opaque": true, "replaceable": false, @@ -213250,7 +208778,7 @@ ] }, { - "id": 19885, + "id": 19483, "luminance": 0, "opaque": true, "replaceable": false, @@ -213260,7 +208788,7 @@ ] }, { - "id": 19886, + "id": 19484, "luminance": 0, "opaque": true, "replaceable": false, @@ -213271,7 +208799,7 @@ ] }, { - "id": 19887, + "id": 19485, "luminance": 0, "opaque": true, "replaceable": false, @@ -213284,7 +208812,7 @@ ] }, { - "id": 19888, + "id": 19486, "luminance": 0, "opaque": true, "replaceable": false, @@ -213297,7 +208825,7 @@ ] }, { - "id": 19889, + "id": 19487, "luminance": 0, "opaque": true, "replaceable": false, @@ -213308,7 +208836,7 @@ ] }, { - "id": 19890, + "id": 19488, "luminance": 0, "opaque": true, "replaceable": false, @@ -213321,7 +208849,7 @@ ] }, { - "id": 19891, + "id": 19489, "luminance": 0, "opaque": true, "replaceable": false, @@ -213334,7 +208862,7 @@ ] }, { - "id": 19892, + "id": 19490, "luminance": 0, "opaque": true, "replaceable": false, @@ -213343,7 +208871,7 @@ ] }, { - "id": 19893, + "id": 19491, "luminance": 0, "opaque": true, "replaceable": false, @@ -213354,7 +208882,7 @@ ] }, { - "id": 19894, + "id": 19492, "luminance": 0, "opaque": true, "replaceable": false, @@ -213365,7 +208893,7 @@ ] }, { - "id": 19895, + "id": 19493, "luminance": 0, "opaque": true, "replaceable": false, @@ -213374,7 +208902,7 @@ ] }, { - "id": 19896, + "id": 19494, "luminance": 0, "opaque": true, "replaceable": false, @@ -213385,7 +208913,7 @@ ] }, { - "id": 19897, + "id": 19495, "luminance": 0, "opaque": true, "replaceable": false, @@ -213396,7 +208924,7 @@ ] }, { - "id": 19898, + "id": 19496, "luminance": 0, "opaque": true, "replaceable": false, @@ -213407,7 +208935,7 @@ ] }, { - "id": 19899, + "id": 19497, "luminance": 0, "opaque": true, "replaceable": false, @@ -213420,7 +208948,7 @@ ] }, { - "id": 19900, + "id": 19498, "luminance": 0, "opaque": true, "replaceable": false, @@ -213433,7 +208961,7 @@ ] }, { - "id": 19901, + "id": 19499, "luminance": 0, "opaque": true, "replaceable": false, @@ -213444,7 +208972,7 @@ ] }, { - "id": 19902, + "id": 19500, "luminance": 0, "opaque": true, "replaceable": false, @@ -213457,7 +208985,7 @@ ] }, { - "id": 19903, + "id": 19501, "luminance": 0, "opaque": true, "replaceable": false, @@ -213470,7 +208998,7 @@ ] }, { - "id": 19904, + "id": 19502, "luminance": 0, "opaque": true, "replaceable": false, @@ -213479,7 +209007,7 @@ ] }, { - "id": 19905, + "id": 19503, "luminance": 0, "opaque": true, "replaceable": false, @@ -213490,7 +209018,7 @@ ] }, { - "id": 19906, + "id": 19504, "luminance": 0, "opaque": true, "replaceable": false, @@ -213501,7 +209029,7 @@ ] }, { - "id": 19907, + "id": 19505, "luminance": 0, "opaque": true, "replaceable": false, @@ -213510,7 +209038,7 @@ ] }, { - "id": 19908, + "id": 19506, "luminance": 0, "opaque": true, "replaceable": false, @@ -213521,7 +209049,7 @@ ] }, { - "id": 19909, + "id": 19507, "luminance": 0, "opaque": true, "replaceable": false, @@ -213532,7 +209060,7 @@ ] }, { - "id": 19910, + "id": 19508, "luminance": 0, "opaque": true, "replaceable": false, @@ -213542,7 +209070,7 @@ ] }, { - "id": 19911, + "id": 19509, "luminance": 0, "opaque": true, "replaceable": false, @@ -213553,7 +209081,7 @@ ] }, { - "id": 19912, + "id": 19510, "luminance": 0, "opaque": true, "replaceable": false, @@ -213564,7 +209092,7 @@ ] }, { - "id": 19913, + "id": 19511, "luminance": 0, "opaque": true, "replaceable": false, @@ -213574,7 +209102,7 @@ ] }, { - "id": 19914, + "id": 19512, "luminance": 0, "opaque": true, "replaceable": false, @@ -213585,7 +209113,7 @@ ] }, { - "id": 19915, + "id": 19513, "luminance": 0, "opaque": true, "replaceable": false, @@ -213596,7 +209124,7 @@ ] }, { - "id": 19916, + "id": 19514, "luminance": 0, "opaque": true, "replaceable": false, @@ -213605,7 +209133,7 @@ ] }, { - "id": 19917, + "id": 19515, "luminance": 0, "opaque": true, "replaceable": false, @@ -213614,7 +209142,7 @@ ] }, { - "id": 19918, + "id": 19516, "luminance": 0, "opaque": true, "replaceable": false, @@ -213623,7 +209151,7 @@ ] }, { - "id": 19919, + "id": 19517, "luminance": 0, "opaque": true, "replaceable": false, @@ -213632,7 +209160,7 @@ ] }, { - "id": 19920, + "id": 19518, "luminance": 0, "opaque": true, "replaceable": false, @@ -213641,7 +209169,7 @@ ] }, { - "id": 19921, + "id": 19519, "luminance": 0, "opaque": true, "replaceable": false, @@ -213650,7 +209178,7 @@ ] }, { - "id": 19922, + "id": 19520, "luminance": 0, "opaque": true, "replaceable": false, @@ -213661,7 +209189,7 @@ ] }, { - "id": 19923, + "id": 19521, "luminance": 0, "opaque": true, "replaceable": false, @@ -213673,7 +209201,7 @@ ] }, { - "id": 19924, + "id": 19522, "luminance": 0, "opaque": true, "replaceable": false, @@ -213685,7 +209213,7 @@ ] }, { - "id": 19925, + "id": 19523, "luminance": 0, "opaque": true, "replaceable": false, @@ -213696,7 +209224,7 @@ ] }, { - "id": 19926, + "id": 19524, "luminance": 0, "opaque": true, "replaceable": false, @@ -213708,7 +209236,7 @@ ] }, { - "id": 19927, + "id": 19525, "luminance": 0, "opaque": true, "replaceable": false, @@ -213720,7 +209248,7 @@ ] }, { - "id": 19928, + "id": 19526, "luminance": 0, "opaque": true, "replaceable": false, @@ -213730,7 +209258,7 @@ ] }, { - "id": 19929, + "id": 19527, "luminance": 0, "opaque": true, "replaceable": false, @@ -213740,7 +209268,7 @@ ] }, { - "id": 19930, + "id": 19528, "luminance": 0, "opaque": true, "replaceable": false, @@ -213750,7 +209278,7 @@ ] }, { - "id": 19931, + "id": 19529, "luminance": 0, "opaque": true, "replaceable": false, @@ -213760,7 +209288,7 @@ ] }, { - "id": 19932, + "id": 19530, "luminance": 0, "opaque": true, "replaceable": false, @@ -213770,7 +209298,7 @@ ] }, { - "id": 19933, + "id": 19531, "luminance": 0, "opaque": true, "replaceable": false, @@ -213780,7 +209308,7 @@ ] }, { - "id": 19934, + "id": 19532, "luminance": 0, "opaque": true, "replaceable": false, @@ -213791,7 +209319,7 @@ ] }, { - "id": 19935, + "id": 19533, "luminance": 0, "opaque": true, "replaceable": false, @@ -213803,7 +209331,7 @@ ] }, { - "id": 19936, + "id": 19534, "luminance": 0, "opaque": true, "replaceable": false, @@ -213815,7 +209343,7 @@ ] }, { - "id": 19937, + "id": 19535, "luminance": 0, "opaque": true, "replaceable": false, @@ -213826,7 +209354,7 @@ ] }, { - "id": 19938, + "id": 19536, "luminance": 0, "opaque": true, "replaceable": false, @@ -213838,7 +209366,7 @@ ] }, { - "id": 19939, + "id": 19537, "luminance": 0, "opaque": true, "replaceable": false, @@ -213850,7 +209378,7 @@ ] }, { - "id": 19940, + "id": 19538, "luminance": 0, "opaque": true, "replaceable": false, @@ -213860,7 +209388,7 @@ ] }, { - "id": 19941, + "id": 19539, "luminance": 0, "opaque": true, "replaceable": false, @@ -213870,7 +209398,7 @@ ] }, { - "id": 19942, + "id": 19540, "luminance": 0, "opaque": true, "replaceable": false, @@ -213880,7 +209408,7 @@ ] }, { - "id": 19943, + "id": 19541, "luminance": 0, "opaque": true, "replaceable": false, @@ -213890,7 +209418,7 @@ ] }, { - "id": 19944, + "id": 19542, "luminance": 0, "opaque": true, "replaceable": false, @@ -213900,7 +209428,7 @@ ] }, { - "id": 19945, + "id": 19543, "luminance": 0, "opaque": true, "replaceable": false, @@ -213910,7 +209438,7 @@ ] }, { - "id": 19946, + "id": 19544, "luminance": 0, "opaque": true, "replaceable": false, @@ -213921,7 +209449,7 @@ ] }, { - "id": 19947, + "id": 19545, "luminance": 0, "opaque": true, "replaceable": false, @@ -213933,7 +209461,7 @@ ] }, { - "id": 19948, + "id": 19546, "luminance": 0, "opaque": true, "replaceable": false, @@ -213945,7 +209473,7 @@ ] }, { - "id": 19949, + "id": 19547, "luminance": 0, "opaque": true, "replaceable": false, @@ -213956,7 +209484,7 @@ ] }, { - "id": 19950, + "id": 19548, "luminance": 0, "opaque": true, "replaceable": false, @@ -213968,7 +209496,7 @@ ] }, { - "id": 19951, + "id": 19549, "luminance": 0, "opaque": true, "replaceable": false, @@ -213980,7 +209508,7 @@ ] }, { - "id": 19952, + "id": 19550, "luminance": 0, "opaque": true, "replaceable": false, @@ -213990,7 +209518,7 @@ ] }, { - "id": 19953, + "id": 19551, "luminance": 0, "opaque": true, "replaceable": false, @@ -214000,7 +209528,7 @@ ] }, { - "id": 19954, + "id": 19552, "luminance": 0, "opaque": true, "replaceable": false, @@ -214010,7 +209538,7 @@ ] }, { - "id": 19955, + "id": 19553, "luminance": 0, "opaque": true, "replaceable": false, @@ -214020,7 +209548,7 @@ ] }, { - "id": 19956, + "id": 19554, "luminance": 0, "opaque": true, "replaceable": false, @@ -214030,7 +209558,7 @@ ] }, { - "id": 19957, + "id": 19555, "luminance": 0, "opaque": true, "replaceable": false, @@ -214040,7 +209568,7 @@ ] }, { - "id": 19958, + "id": 19556, "luminance": 0, "opaque": true, "replaceable": false, @@ -214052,7 +209580,7 @@ ] }, { - "id": 19959, + "id": 19557, "luminance": 0, "opaque": true, "replaceable": false, @@ -214065,7 +209593,7 @@ ] }, { - "id": 19960, + "id": 19558, "luminance": 0, "opaque": true, "replaceable": false, @@ -214078,7 +209606,7 @@ ] }, { - "id": 19961, + "id": 19559, "luminance": 0, "opaque": true, "replaceable": false, @@ -214090,7 +209618,7 @@ ] }, { - "id": 19962, + "id": 19560, "luminance": 0, "opaque": true, "replaceable": false, @@ -214103,7 +209631,7 @@ ] }, { - "id": 19963, + "id": 19561, "luminance": 0, "opaque": true, "replaceable": false, @@ -214116,7 +209644,7 @@ ] }, { - "id": 19964, + "id": 19562, "luminance": 0, "opaque": true, "replaceable": false, @@ -214126,7 +209654,7 @@ ] }, { - "id": 19965, + "id": 19563, "luminance": 0, "opaque": true, "replaceable": false, @@ -214137,7 +209665,7 @@ ] }, { - "id": 19966, + "id": 19564, "luminance": 0, "opaque": true, "replaceable": false, @@ -214148,7 +209676,7 @@ ] }, { - "id": 19967, + "id": 19565, "luminance": 0, "opaque": true, "replaceable": false, @@ -214158,7 +209686,7 @@ ] }, { - "id": 19968, + "id": 19566, "luminance": 0, "opaque": true, "replaceable": false, @@ -214169,7 +209697,7 @@ ] }, { - "id": 19969, + "id": 19567, "luminance": 0, "opaque": true, "replaceable": false, @@ -214180,7 +209708,7 @@ ] }, { - "id": 19970, + "id": 19568, "luminance": 0, "opaque": true, "replaceable": false, @@ -214192,7 +209720,7 @@ ] }, { - "id": 19971, + "id": 19569, "luminance": 0, "opaque": true, "replaceable": false, @@ -214205,7 +209733,7 @@ ] }, { - "id": 19972, + "id": 19570, "luminance": 0, "opaque": true, "replaceable": false, @@ -214218,7 +209746,7 @@ ] }, { - "id": 19973, + "id": 19571, "luminance": 0, "opaque": true, "replaceable": false, @@ -214230,7 +209758,7 @@ ] }, { - "id": 19974, + "id": 19572, "luminance": 0, "opaque": true, "replaceable": false, @@ -214243,7 +209771,7 @@ ] }, { - "id": 19975, + "id": 19573, "luminance": 0, "opaque": true, "replaceable": false, @@ -214256,7 +209784,7 @@ ] }, { - "id": 19976, + "id": 19574, "luminance": 0, "opaque": true, "replaceable": false, @@ -214266,7 +209794,7 @@ ] }, { - "id": 19977, + "id": 19575, "luminance": 0, "opaque": true, "replaceable": false, @@ -214277,7 +209805,7 @@ ] }, { - "id": 19978, + "id": 19576, "luminance": 0, "opaque": true, "replaceable": false, @@ -214288,7 +209816,7 @@ ] }, { - "id": 19979, + "id": 19577, "luminance": 0, "opaque": true, "replaceable": false, @@ -214298,7 +209826,7 @@ ] }, { - "id": 19980, + "id": 19578, "luminance": 0, "opaque": true, "replaceable": false, @@ -214309,7 +209837,7 @@ ] }, { - "id": 19981, + "id": 19579, "luminance": 0, "opaque": true, "replaceable": false, @@ -214320,7 +209848,7 @@ ] }, { - "id": 19982, + "id": 19580, "luminance": 0, "opaque": true, "replaceable": false, @@ -214331,7 +209859,7 @@ ] }, { - "id": 19983, + "id": 19581, "luminance": 0, "opaque": true, "replaceable": false, @@ -214343,7 +209871,7 @@ ] }, { - "id": 19984, + "id": 19582, "luminance": 0, "opaque": true, "replaceable": false, @@ -214355,7 +209883,7 @@ ] }, { - "id": 19985, + "id": 19583, "luminance": 0, "opaque": true, "replaceable": false, @@ -214366,7 +209894,7 @@ ] }, { - "id": 19986, + "id": 19584, "luminance": 0, "opaque": true, "replaceable": false, @@ -214378,7 +209906,7 @@ ] }, { - "id": 19987, + "id": 19585, "luminance": 0, "opaque": true, "replaceable": false, @@ -214390,7 +209918,7 @@ ] }, { - "id": 19988, + "id": 19586, "luminance": 0, "opaque": true, "replaceable": false, @@ -214400,7 +209928,7 @@ ] }, { - "id": 19989, + "id": 19587, "luminance": 0, "opaque": true, "replaceable": false, @@ -214410,7 +209938,7 @@ ] }, { - "id": 19990, + "id": 19588, "luminance": 0, "opaque": true, "replaceable": false, @@ -214420,7 +209948,7 @@ ] }, { - "id": 19991, + "id": 19589, "luminance": 0, "opaque": true, "replaceable": false, @@ -214430,7 +209958,7 @@ ] }, { - "id": 19992, + "id": 19590, "luminance": 0, "opaque": true, "replaceable": false, @@ -214440,7 +209968,7 @@ ] }, { - "id": 19993, + "id": 19591, "luminance": 0, "opaque": true, "replaceable": false, @@ -214450,7 +209978,7 @@ ] }, { - "id": 19994, + "id": 19592, "luminance": 0, "opaque": true, "replaceable": false, @@ -214462,7 +209990,7 @@ ] }, { - "id": 19995, + "id": 19593, "luminance": 0, "opaque": true, "replaceable": false, @@ -214475,7 +210003,7 @@ ] }, { - "id": 19996, + "id": 19594, "luminance": 0, "opaque": true, "replaceable": false, @@ -214488,7 +210016,7 @@ ] }, { - "id": 19997, + "id": 19595, "luminance": 0, "opaque": true, "replaceable": false, @@ -214500,7 +210028,7 @@ ] }, { - "id": 19998, + "id": 19596, "luminance": 0, "opaque": true, "replaceable": false, @@ -214513,7 +210041,7 @@ ] }, { - "id": 19999, + "id": 19597, "luminance": 0, "opaque": true, "replaceable": false, @@ -214526,7 +210054,7 @@ ] }, { - "id": 20000, + "id": 19598, "luminance": 0, "opaque": true, "replaceable": false, @@ -214536,7 +210064,7 @@ ] }, { - "id": 20001, + "id": 19599, "luminance": 0, "opaque": true, "replaceable": false, @@ -214547,7 +210075,7 @@ ] }, { - "id": 20002, + "id": 19600, "luminance": 0, "opaque": true, "replaceable": false, @@ -214558,7 +210086,7 @@ ] }, { - "id": 20003, + "id": 19601, "luminance": 0, "opaque": true, "replaceable": false, @@ -214568,7 +210096,7 @@ ] }, { - "id": 20004, + "id": 19602, "luminance": 0, "opaque": true, "replaceable": false, @@ -214579,7 +210107,7 @@ ] }, { - "id": 20005, + "id": 19603, "luminance": 0, "opaque": true, "replaceable": false, @@ -214590,7 +210118,7 @@ ] }, { - "id": 20006, + "id": 19604, "luminance": 0, "opaque": true, "replaceable": false, @@ -214602,7 +210130,7 @@ ] }, { - "id": 20007, + "id": 19605, "luminance": 0, "opaque": true, "replaceable": false, @@ -214615,7 +210143,7 @@ ] }, { - "id": 20008, + "id": 19606, "luminance": 0, "opaque": true, "replaceable": false, @@ -214628,7 +210156,7 @@ ] }, { - "id": 20009, + "id": 19607, "luminance": 0, "opaque": true, "replaceable": false, @@ -214640,7 +210168,7 @@ ] }, { - "id": 20010, + "id": 19608, "luminance": 0, "opaque": true, "replaceable": false, @@ -214653,7 +210181,7 @@ ] }, { - "id": 20011, + "id": 19609, "luminance": 0, "opaque": true, "replaceable": false, @@ -214666,7 +210194,7 @@ ] }, { - "id": 20012, + "id": 19610, "luminance": 0, "opaque": true, "replaceable": false, @@ -214676,7 +210204,7 @@ ] }, { - "id": 20013, + "id": 19611, "luminance": 0, "opaque": true, "replaceable": false, @@ -214687,7 +210215,7 @@ ] }, { - "id": 20014, + "id": 19612, "luminance": 0, "opaque": true, "replaceable": false, @@ -214698,7 +210226,7 @@ ] }, { - "id": 20015, + "id": 19613, "luminance": 0, "opaque": true, "replaceable": false, @@ -214708,7 +210236,7 @@ ] }, { - "id": 20016, + "id": 19614, "luminance": 0, "opaque": true, "replaceable": false, @@ -214719,7 +210247,7 @@ ] }, { - "id": 20017, + "id": 19615, "luminance": 0, "opaque": true, "replaceable": false, @@ -214730,7 +210258,7 @@ ] }, { - "id": 20018, + "id": 19616, "luminance": 0, "opaque": true, "replaceable": false, @@ -214740,7 +210268,7 @@ ] }, { - "id": 20019, + "id": 19617, "luminance": 0, "opaque": true, "replaceable": false, @@ -214751,7 +210279,7 @@ ] }, { - "id": 20020, + "id": 19618, "luminance": 0, "opaque": true, "replaceable": false, @@ -214762,7 +210290,7 @@ ] }, { - "id": 20021, + "id": 19619, "luminance": 0, "opaque": true, "replaceable": false, @@ -214772,7 +210300,7 @@ ] }, { - "id": 20022, + "id": 19620, "luminance": 0, "opaque": true, "replaceable": false, @@ -214783,7 +210311,7 @@ ] }, { - "id": 20023, + "id": 19621, "luminance": 0, "opaque": true, "replaceable": false, @@ -214794,7 +210322,7 @@ ] }, { - "id": 20024, + "id": 19622, "luminance": 0, "opaque": true, "replaceable": false, @@ -214803,7 +210331,7 @@ ] }, { - "id": 20025, + "id": 19623, "luminance": 0, "opaque": true, "replaceable": false, @@ -214812,7 +210340,7 @@ ] }, { - "id": 20026, + "id": 19624, "luminance": 0, "opaque": true, "replaceable": false, @@ -214821,7 +210349,7 @@ ] }, { - "id": 20027, + "id": 19625, "luminance": 0, "opaque": true, "replaceable": false, @@ -214830,7 +210358,7 @@ ] }, { - "id": 20028, + "id": 19626, "luminance": 0, "opaque": true, "replaceable": false, @@ -214839,7 +210367,7 @@ ] }, { - "id": 20029, + "id": 19627, "luminance": 0, "opaque": true, "replaceable": false, @@ -214848,7 +210376,7 @@ ] }, { - "id": 20030, + "id": 19628, "luminance": 0, "opaque": true, "replaceable": false, @@ -214859,7 +210387,7 @@ ] }, { - "id": 20031, + "id": 19629, "luminance": 0, "opaque": true, "replaceable": false, @@ -214871,7 +210399,7 @@ ] }, { - "id": 20032, + "id": 19630, "luminance": 0, "opaque": true, "replaceable": false, @@ -214883,7 +210411,7 @@ ] }, { - "id": 20033, + "id": 19631, "luminance": 0, "opaque": true, "replaceable": false, @@ -214894,7 +210422,7 @@ ] }, { - "id": 20034, + "id": 19632, "luminance": 0, "opaque": true, "replaceable": false, @@ -214906,7 +210434,7 @@ ] }, { - "id": 20035, + "id": 19633, "luminance": 0, "opaque": true, "replaceable": false, @@ -214918,7 +210446,7 @@ ] }, { - "id": 20036, + "id": 19634, "luminance": 0, "opaque": true, "replaceable": false, @@ -214928,7 +210456,7 @@ ] }, { - "id": 20037, + "id": 19635, "luminance": 0, "opaque": true, "replaceable": false, @@ -214938,7 +210466,7 @@ ] }, { - "id": 20038, + "id": 19636, "luminance": 0, "opaque": true, "replaceable": false, @@ -214948,7 +210476,7 @@ ] }, { - "id": 20039, + "id": 19637, "luminance": 0, "opaque": true, "replaceable": false, @@ -214958,7 +210486,7 @@ ] }, { - "id": 20040, + "id": 19638, "luminance": 0, "opaque": true, "replaceable": false, @@ -214968,7 +210496,7 @@ ] }, { - "id": 20041, + "id": 19639, "luminance": 0, "opaque": true, "replaceable": false, @@ -214978,7 +210506,7 @@ ] }, { - "id": 20042, + "id": 19640, "luminance": 0, "opaque": true, "replaceable": false, @@ -214989,7 +210517,7 @@ ] }, { - "id": 20043, + "id": 19641, "luminance": 0, "opaque": true, "replaceable": false, @@ -215001,7 +210529,7 @@ ] }, { - "id": 20044, + "id": 19642, "luminance": 0, "opaque": true, "replaceable": false, @@ -215013,7 +210541,7 @@ ] }, { - "id": 20045, + "id": 19643, "luminance": 0, "opaque": true, "replaceable": false, @@ -215024,7 +210552,7 @@ ] }, { - "id": 20046, + "id": 19644, "luminance": 0, "opaque": true, "replaceable": false, @@ -215036,7 +210564,7 @@ ] }, { - "id": 20047, + "id": 19645, "luminance": 0, "opaque": true, "replaceable": false, @@ -215048,7 +210576,7 @@ ] }, { - "id": 20048, + "id": 19646, "luminance": 0, "opaque": true, "replaceable": false, @@ -215058,7 +210586,7 @@ ] }, { - "id": 20049, + "id": 19647, "luminance": 0, "opaque": true, "replaceable": false, @@ -215068,7 +210596,7 @@ ] }, { - "id": 20050, + "id": 19648, "luminance": 0, "opaque": true, "replaceable": false, @@ -215078,7 +210606,7 @@ ] }, { - "id": 20051, + "id": 19649, "luminance": 0, "opaque": true, "replaceable": false, @@ -215088,7 +210616,7 @@ ] }, { - "id": 20052, + "id": 19650, "luminance": 0, "opaque": true, "replaceable": false, @@ -215098,7 +210626,7 @@ ] }, { - "id": 20053, + "id": 19651, "luminance": 0, "opaque": true, "replaceable": false, @@ -215108,7 +210636,7 @@ ] }, { - "id": 20054, + "id": 19652, "luminance": 0, "opaque": true, "replaceable": false, @@ -215119,7 +210647,7 @@ ] }, { - "id": 20055, + "id": 19653, "luminance": 0, "opaque": true, "replaceable": false, @@ -215131,7 +210659,7 @@ ] }, { - "id": 20056, + "id": 19654, "luminance": 0, "opaque": true, "replaceable": false, @@ -215143,7 +210671,7 @@ ] }, { - "id": 20057, + "id": 19655, "luminance": 0, "opaque": true, "replaceable": false, @@ -215154,7 +210682,7 @@ ] }, { - "id": 20058, + "id": 19656, "luminance": 0, "opaque": true, "replaceable": false, @@ -215166,7 +210694,7 @@ ] }, { - "id": 20059, + "id": 19657, "luminance": 0, "opaque": true, "replaceable": false, @@ -215178,7 +210706,7 @@ ] }, { - "id": 20060, + "id": 19658, "luminance": 0, "opaque": true, "replaceable": false, @@ -215188,7 +210716,7 @@ ] }, { - "id": 20061, + "id": 19659, "luminance": 0, "opaque": true, "replaceable": false, @@ -215198,7 +210726,7 @@ ] }, { - "id": 20062, + "id": 19660, "luminance": 0, "opaque": true, "replaceable": false, @@ -215208,7 +210736,7 @@ ] }, { - "id": 20063, + "id": 19661, "luminance": 0, "opaque": true, "replaceable": false, @@ -215218,7 +210746,7 @@ ] }, { - "id": 20064, + "id": 19662, "luminance": 0, "opaque": true, "replaceable": false, @@ -215228,7 +210756,7 @@ ] }, { - "id": 20065, + "id": 19663, "luminance": 0, "opaque": true, "replaceable": false, @@ -215238,7 +210766,7 @@ ] }, { - "id": 20066, + "id": 19664, "luminance": 0, "opaque": true, "replaceable": false, @@ -215250,7 +210778,7 @@ ] }, { - "id": 20067, + "id": 19665, "luminance": 0, "opaque": true, "replaceable": false, @@ -215263,7 +210791,7 @@ ] }, { - "id": 20068, + "id": 19666, "luminance": 0, "opaque": true, "replaceable": false, @@ -215276,7 +210804,7 @@ ] }, { - "id": 20069, + "id": 19667, "luminance": 0, "opaque": true, "replaceable": false, @@ -215288,7 +210816,7 @@ ] }, { - "id": 20070, + "id": 19668, "luminance": 0, "opaque": true, "replaceable": false, @@ -215301,7 +210829,7 @@ ] }, { - "id": 20071, + "id": 19669, "luminance": 0, "opaque": true, "replaceable": false, @@ -215314,7 +210842,7 @@ ] }, { - "id": 20072, + "id": 19670, "luminance": 0, "opaque": true, "replaceable": false, @@ -215324,7 +210852,7 @@ ] }, { - "id": 20073, + "id": 19671, "luminance": 0, "opaque": true, "replaceable": false, @@ -215335,7 +210863,7 @@ ] }, { - "id": 20074, + "id": 19672, "luminance": 0, "opaque": true, "replaceable": false, @@ -215346,7 +210874,7 @@ ] }, { - "id": 20075, + "id": 19673, "luminance": 0, "opaque": true, "replaceable": false, @@ -215356,7 +210884,7 @@ ] }, { - "id": 20076, + "id": 19674, "luminance": 0, "opaque": true, "replaceable": false, @@ -215367,7 +210895,7 @@ ] }, { - "id": 20077, + "id": 19675, "luminance": 0, "opaque": true, "replaceable": false, @@ -215378,7 +210906,7 @@ ] }, { - "id": 20078, + "id": 19676, "luminance": 0, "opaque": true, "replaceable": false, @@ -215390,7 +210918,7 @@ ] }, { - "id": 20079, + "id": 19677, "luminance": 0, "opaque": true, "replaceable": false, @@ -215403,7 +210931,7 @@ ] }, { - "id": 20080, + "id": 19678, "luminance": 0, "opaque": true, "replaceable": false, @@ -215416,7 +210944,7 @@ ] }, { - "id": 20081, + "id": 19679, "luminance": 0, "opaque": true, "replaceable": false, @@ -215428,7 +210956,7 @@ ] }, { - "id": 20082, + "id": 19680, "luminance": 0, "opaque": true, "replaceable": false, @@ -215441,7 +210969,7 @@ ] }, { - "id": 20083, + "id": 19681, "luminance": 0, "opaque": true, "replaceable": false, @@ -215454,7 +210982,7 @@ ] }, { - "id": 20084, + "id": 19682, "luminance": 0, "opaque": true, "replaceable": false, @@ -215464,7 +210992,7 @@ ] }, { - "id": 20085, + "id": 19683, "luminance": 0, "opaque": true, "replaceable": false, @@ -215475,7 +211003,7 @@ ] }, { - "id": 20086, + "id": 19684, "luminance": 0, "opaque": true, "replaceable": false, @@ -215486,7 +211014,7 @@ ] }, { - "id": 20087, + "id": 19685, "luminance": 0, "opaque": true, "replaceable": false, @@ -215496,7 +211024,7 @@ ] }, { - "id": 20088, + "id": 19686, "luminance": 0, "opaque": true, "replaceable": false, @@ -215507,7 +211035,7 @@ ] }, { - "id": 20089, + "id": 19687, "luminance": 0, "opaque": true, "replaceable": false, @@ -215518,7 +211046,7 @@ ] }, { - "id": 20090, + "id": 19688, "luminance": 0, "opaque": true, "replaceable": false, @@ -215529,7 +211057,7 @@ ] }, { - "id": 20091, + "id": 19689, "luminance": 0, "opaque": true, "replaceable": false, @@ -215541,7 +211069,7 @@ ] }, { - "id": 20092, + "id": 19690, "luminance": 0, "opaque": true, "replaceable": false, @@ -215553,7 +211081,7 @@ ] }, { - "id": 20093, + "id": 19691, "luminance": 0, "opaque": true, "replaceable": false, @@ -215564,7 +211092,7 @@ ] }, { - "id": 20094, + "id": 19692, "luminance": 0, "opaque": true, "replaceable": false, @@ -215576,7 +211104,7 @@ ] }, { - "id": 20095, + "id": 19693, "luminance": 0, "opaque": true, "replaceable": false, @@ -215588,7 +211116,7 @@ ] }, { - "id": 20096, + "id": 19694, "luminance": 0, "opaque": true, "replaceable": false, @@ -215598,7 +211126,7 @@ ] }, { - "id": 20097, + "id": 19695, "luminance": 0, "opaque": true, "replaceable": false, @@ -215608,7 +211136,7 @@ ] }, { - "id": 20098, + "id": 19696, "luminance": 0, "opaque": true, "replaceable": false, @@ -215618,7 +211146,7 @@ ] }, { - "id": 20099, + "id": 19697, "luminance": 0, "opaque": true, "replaceable": false, @@ -215628,7 +211156,7 @@ ] }, { - "id": 20100, + "id": 19698, "luminance": 0, "opaque": true, "replaceable": false, @@ -215638,7 +211166,7 @@ ] }, { - "id": 20101, + "id": 19699, "luminance": 0, "opaque": true, "replaceable": false, @@ -215648,7 +211176,7 @@ ] }, { - "id": 20102, + "id": 19700, "luminance": 0, "opaque": true, "replaceable": false, @@ -215660,7 +211188,7 @@ ] }, { - "id": 20103, + "id": 19701, "luminance": 0, "opaque": true, "replaceable": false, @@ -215673,7 +211201,7 @@ ] }, { - "id": 20104, + "id": 19702, "luminance": 0, "opaque": true, "replaceable": false, @@ -215686,7 +211214,7 @@ ] }, { - "id": 20105, + "id": 19703, "luminance": 0, "opaque": true, "replaceable": false, @@ -215698,7 +211226,7 @@ ] }, { - "id": 20106, + "id": 19704, "luminance": 0, "opaque": true, "replaceable": false, @@ -215711,7 +211239,7 @@ ] }, { - "id": 20107, + "id": 19705, "luminance": 0, "opaque": true, "replaceable": false, @@ -215724,7 +211252,7 @@ ] }, { - "id": 20108, + "id": 19706, "luminance": 0, "opaque": true, "replaceable": false, @@ -215734,7 +211262,7 @@ ] }, { - "id": 20109, + "id": 19707, "luminance": 0, "opaque": true, "replaceable": false, @@ -215745,7 +211273,7 @@ ] }, { - "id": 20110, + "id": 19708, "luminance": 0, "opaque": true, "replaceable": false, @@ -215756,7 +211284,7 @@ ] }, { - "id": 20111, + "id": 19709, "luminance": 0, "opaque": true, "replaceable": false, @@ -215766,7 +211294,7 @@ ] }, { - "id": 20112, + "id": 19710, "luminance": 0, "opaque": true, "replaceable": false, @@ -215777,7 +211305,7 @@ ] }, { - "id": 20113, + "id": 19711, "luminance": 0, "opaque": true, "replaceable": false, @@ -215788,7 +211316,7 @@ ] }, { - "id": 20114, + "id": 19712, "luminance": 0, "opaque": true, "replaceable": false, @@ -215800,7 +211328,7 @@ ] }, { - "id": 20115, + "id": 19713, "luminance": 0, "opaque": true, "replaceable": false, @@ -215813,7 +211341,7 @@ ] }, { - "id": 20116, + "id": 19714, "luminance": 0, "opaque": true, "replaceable": false, @@ -215826,7 +211354,7 @@ ] }, { - "id": 20117, + "id": 19715, "luminance": 0, "opaque": true, "replaceable": false, @@ -215838,7 +211366,7 @@ ] }, { - "id": 20118, + "id": 19716, "luminance": 0, "opaque": true, "replaceable": false, @@ -215851,7 +211379,7 @@ ] }, { - "id": 20119, + "id": 19717, "luminance": 0, "opaque": true, "replaceable": false, @@ -215864,7 +211392,7 @@ ] }, { - "id": 20120, + "id": 19718, "luminance": 0, "opaque": true, "replaceable": false, @@ -215874,7 +211402,7 @@ ] }, { - "id": 20121, + "id": 19719, "luminance": 0, "opaque": true, "replaceable": false, @@ -215885,7 +211413,7 @@ ] }, { - "id": 20122, + "id": 19720, "luminance": 0, "opaque": true, "replaceable": false, @@ -215896,7 +211424,7 @@ ] }, { - "id": 20123, + "id": 19721, "luminance": 0, "opaque": true, "replaceable": false, @@ -215906,7 +211434,7 @@ ] }, { - "id": 20124, + "id": 19722, "luminance": 0, "opaque": true, "replaceable": false, @@ -215917,7 +211445,7 @@ ] }, { - "id": 20125, + "id": 19723, "luminance": 0, "opaque": true, "replaceable": false, @@ -215930,15 +211458,152 @@ ] }, { - "id": 856, - "name": "gilded_blackstone", - "translation_key": "block.minecraft.gilded_blackstone", - "item_id": 1174, - "properties": [], - "default_state_id": 20126, + "id": 852, + "name": "blackstone_slab", + "translation_key": "block.minecraft.blackstone_slab", + "item_id": 1178, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19727, "states": [ { - "id": 20126, + "id": 19724, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 19725, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 19726, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19727, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19728, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19729, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 853, + "name": "polished_blackstone", + "translation_key": "block.minecraft.polished_blackstone", + "item_id": 1181, + "properties": [], + "default_state_id": 19730, + "states": [ + { + "id": 19730, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 854, + "name": "polished_blackstone_bricks", + "translation_key": "block.minecraft.polished_blackstone_bricks", + "item_id": 1185, + "properties": [], + "default_state_id": 19731, + "states": [ + { + "id": 19731, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 855, + "name": "cracked_polished_blackstone_bricks", + "translation_key": "block.minecraft.cracked_polished_blackstone_bricks", + "item_id": 1188, + "properties": [], + "default_state_id": 19732, + "states": [ + { + "id": 19732, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 856, + "name": "chiseled_polished_blackstone", + "translation_key": "block.minecraft.chiseled_polished_blackstone", + "item_id": 1184, + "properties": [], + "default_state_id": 19733, + "states": [ + { + "id": 19733, "luminance": 0, "opaque": true, "replaceable": false, @@ -215950,9 +211615,89 @@ }, { "id": 857, - "name": "polished_blackstone_stairs", - "translation_key": "block.minecraft.polished_blackstone_stairs", - "item_id": 1177, + "name": "polished_blackstone_brick_slab", + "translation_key": "block.minecraft.polished_blackstone_brick_slab", + "item_id": 1186, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 19737, + "states": [ + { + "id": 19734, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 19735, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 19736, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19737, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 19738, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 19739, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 858, + "name": "polished_blackstone_brick_stairs", + "translation_key": "block.minecraft.polished_blackstone_brick_stairs", + "item_id": 1187, "properties": [ { "name": "facing", @@ -215988,10 +211733,10 @@ ] } ], - "default_state_id": 20138, + "default_state_id": 19751, "states": [ { - "id": 20127, + "id": 19740, "luminance": 0, "opaque": true, "replaceable": false, @@ -216001,7 +211746,7 @@ ] }, { - "id": 20128, + "id": 19741, "luminance": 0, "opaque": true, "replaceable": false, @@ -216011,7 +211756,7 @@ ] }, { - "id": 20129, + "id": 19742, "luminance": 0, "opaque": true, "replaceable": false, @@ -216022,7 +211767,7 @@ ] }, { - "id": 20130, + "id": 19743, "luminance": 0, "opaque": true, "replaceable": false, @@ -216033,7 +211778,7 @@ ] }, { - "id": 20131, + "id": 19744, "luminance": 0, "opaque": true, "replaceable": false, @@ -216044,7 +211789,7 @@ ] }, { - "id": 20132, + "id": 19745, "luminance": 0, "opaque": true, "replaceable": false, @@ -216055,7 +211800,7 @@ ] }, { - "id": 20133, + "id": 19746, "luminance": 0, "opaque": true, "replaceable": false, @@ -216066,7 +211811,7 @@ ] }, { - "id": 20134, + "id": 19747, "luminance": 0, "opaque": true, "replaceable": false, @@ -216077,7 +211822,7 @@ ] }, { - "id": 20135, + "id": 19748, "luminance": 0, "opaque": true, "replaceable": false, @@ -216088,7 +211833,7 @@ ] }, { - "id": 20136, + "id": 19749, "luminance": 0, "opaque": true, "replaceable": false, @@ -216099,7 +211844,7 @@ ] }, { - "id": 20137, + "id": 19750, "luminance": 0, "opaque": true, "replaceable": false, @@ -216109,7 +211854,7 @@ ] }, { - "id": 20138, + "id": 19751, "luminance": 0, "opaque": true, "replaceable": false, @@ -216119,7 +211864,7 @@ ] }, { - "id": 20139, + "id": 19752, "luminance": 0, "opaque": true, "replaceable": false, @@ -216130,7 +211875,7 @@ ] }, { - "id": 20140, + "id": 19753, "luminance": 0, "opaque": true, "replaceable": false, @@ -216141,7 +211886,7 @@ ] }, { - "id": 20141, + "id": 19754, "luminance": 0, "opaque": true, "replaceable": false, @@ -216152,7 +211897,7 @@ ] }, { - "id": 20142, + "id": 19755, "luminance": 0, "opaque": true, "replaceable": false, @@ -216163,7 +211908,7 @@ ] }, { - "id": 20143, + "id": 19756, "luminance": 0, "opaque": true, "replaceable": false, @@ -216173,7 +211918,7 @@ ] }, { - "id": 20144, + "id": 19757, "luminance": 0, "opaque": true, "replaceable": false, @@ -216183,7 +211928,7 @@ ] }, { - "id": 20145, + "id": 19758, "luminance": 0, "opaque": true, "replaceable": false, @@ -216193,7 +211938,7 @@ ] }, { - "id": 20146, + "id": 19759, "luminance": 0, "opaque": true, "replaceable": false, @@ -216203,7 +211948,7 @@ ] }, { - "id": 20147, + "id": 19760, "luminance": 0, "opaque": true, "replaceable": false, @@ -216213,7 +211958,7 @@ ] }, { - "id": 20148, + "id": 19761, "luminance": 0, "opaque": true, "replaceable": false, @@ -216223,7 +211968,7 @@ ] }, { - "id": 20149, + "id": 19762, "luminance": 0, "opaque": true, "replaceable": false, @@ -216234,7 +211979,7 @@ ] }, { - "id": 20150, + "id": 19763, "luminance": 0, "opaque": true, "replaceable": false, @@ -216245,7 +211990,7 @@ ] }, { - "id": 20151, + "id": 19764, "luminance": 0, "opaque": true, "replaceable": false, @@ -216256,7 +212001,7 @@ ] }, { - "id": 20152, + "id": 19765, "luminance": 0, "opaque": true, "replaceable": false, @@ -216267,7 +212012,7 @@ ] }, { - "id": 20153, + "id": 19766, "luminance": 0, "opaque": true, "replaceable": false, @@ -216278,7 +212023,7 @@ ] }, { - "id": 20154, + "id": 19767, "luminance": 0, "opaque": true, "replaceable": false, @@ -216289,7 +212034,7 @@ ] }, { - "id": 20155, + "id": 19768, "luminance": 0, "opaque": true, "replaceable": false, @@ -216300,7 +212045,7 @@ ] }, { - "id": 20156, + "id": 19769, "luminance": 0, "opaque": true, "replaceable": false, @@ -216311,7 +212056,7 @@ ] }, { - "id": 20157, + "id": 19770, "luminance": 0, "opaque": true, "replaceable": false, @@ -216321,7 +212066,7 @@ ] }, { - "id": 20158, + "id": 19771, "luminance": 0, "opaque": true, "replaceable": false, @@ -216331,7 +212076,7 @@ ] }, { - "id": 20159, + "id": 19772, "luminance": 0, "opaque": true, "replaceable": false, @@ -216342,7 +212087,7 @@ ] }, { - "id": 20160, + "id": 19773, "luminance": 0, "opaque": true, "replaceable": false, @@ -216353,7 +212098,7 @@ ] }, { - "id": 20161, + "id": 19774, "luminance": 0, "opaque": true, "replaceable": false, @@ -216364,7 +212109,7 @@ ] }, { - "id": 20162, + "id": 19775, "luminance": 0, "opaque": true, "replaceable": false, @@ -216375,7 +212120,7 @@ ] }, { - "id": 20163, + "id": 19776, "luminance": 0, "opaque": true, "replaceable": false, @@ -216385,7 +212130,7 @@ ] }, { - "id": 20164, + "id": 19777, "luminance": 0, "opaque": true, "replaceable": false, @@ -216395,7 +212140,7 @@ ] }, { - "id": 20165, + "id": 19778, "luminance": 0, "opaque": true, "replaceable": false, @@ -216405,7 +212150,7 @@ ] }, { - "id": 20166, + "id": 19779, "luminance": 0, "opaque": true, "replaceable": false, @@ -216415,7 +212160,7 @@ ] }, { - "id": 20167, + "id": 19780, "luminance": 0, "opaque": true, "replaceable": false, @@ -216425,7 +212170,7 @@ ] }, { - "id": 20168, + "id": 19781, "luminance": 0, "opaque": true, "replaceable": false, @@ -216435,7 +212180,7 @@ ] }, { - "id": 20169, + "id": 19782, "luminance": 0, "opaque": true, "replaceable": false, @@ -216446,7 +212191,7 @@ ] }, { - "id": 20170, + "id": 19783, "luminance": 0, "opaque": true, "replaceable": false, @@ -216457,7 +212202,7 @@ ] }, { - "id": 20171, + "id": 19784, "luminance": 0, "opaque": true, "replaceable": false, @@ -216468,7 +212213,7 @@ ] }, { - "id": 20172, + "id": 19785, "luminance": 0, "opaque": true, "replaceable": false, @@ -216479,7 +212224,7 @@ ] }, { - "id": 20173, + "id": 19786, "luminance": 0, "opaque": true, "replaceable": false, @@ -216490,7 +212235,7 @@ ] }, { - "id": 20174, + "id": 19787, "luminance": 0, "opaque": true, "replaceable": false, @@ -216501,7 +212246,7 @@ ] }, { - "id": 20175, + "id": 19788, "luminance": 0, "opaque": true, "replaceable": false, @@ -216512,7 +212257,7 @@ ] }, { - "id": 20176, + "id": 19789, "luminance": 0, "opaque": true, "replaceable": false, @@ -216523,7 +212268,7 @@ ] }, { - "id": 20177, + "id": 19790, "luminance": 0, "opaque": true, "replaceable": false, @@ -216533,7 +212278,7 @@ ] }, { - "id": 20178, + "id": 19791, "luminance": 0, "opaque": true, "replaceable": false, @@ -216543,7 +212288,7 @@ ] }, { - "id": 20179, + "id": 19792, "luminance": 0, "opaque": true, "replaceable": false, @@ -216554,7 +212299,7 @@ ] }, { - "id": 20180, + "id": 19793, "luminance": 0, "opaque": true, "replaceable": false, @@ -216565,7 +212310,7 @@ ] }, { - "id": 20181, + "id": 19794, "luminance": 0, "opaque": true, "replaceable": false, @@ -216576,7 +212321,7 @@ ] }, { - "id": 20182, + "id": 19795, "luminance": 0, "opaque": true, "replaceable": false, @@ -216587,7 +212332,7 @@ ] }, { - "id": 20183, + "id": 19796, "luminance": 0, "opaque": true, "replaceable": false, @@ -216597,7 +212342,7 @@ ] }, { - "id": 20184, + "id": 19797, "luminance": 0, "opaque": true, "replaceable": false, @@ -216607,7 +212352,7 @@ ] }, { - "id": 20185, + "id": 19798, "luminance": 0, "opaque": true, "replaceable": false, @@ -216617,7 +212362,7 @@ ] }, { - "id": 20186, + "id": 19799, "luminance": 0, "opaque": true, "replaceable": false, @@ -216627,7 +212372,7 @@ ] }, { - "id": 20187, + "id": 19800, "luminance": 0, "opaque": true, "replaceable": false, @@ -216637,7 +212382,7 @@ ] }, { - "id": 20188, + "id": 19801, "luminance": 0, "opaque": true, "replaceable": false, @@ -216647,7 +212392,7 @@ ] }, { - "id": 20189, + "id": 19802, "luminance": 0, "opaque": true, "replaceable": false, @@ -216658,7 +212403,7 @@ ] }, { - "id": 20190, + "id": 19803, "luminance": 0, "opaque": true, "replaceable": false, @@ -216669,7 +212414,7 @@ ] }, { - "id": 20191, + "id": 19804, "luminance": 0, "opaque": true, "replaceable": false, @@ -216680,7 +212425,7 @@ ] }, { - "id": 20192, + "id": 19805, "luminance": 0, "opaque": true, "replaceable": false, @@ -216691,7 +212436,7 @@ ] }, { - "id": 20193, + "id": 19806, "luminance": 0, "opaque": true, "replaceable": false, @@ -216702,7 +212447,7 @@ ] }, { - "id": 20194, + "id": 19807, "luminance": 0, "opaque": true, "replaceable": false, @@ -216713,7 +212458,7 @@ ] }, { - "id": 20195, + "id": 19808, "luminance": 0, "opaque": true, "replaceable": false, @@ -216724,7 +212469,7 @@ ] }, { - "id": 20196, + "id": 19809, "luminance": 0, "opaque": true, "replaceable": false, @@ -216735,7 +212480,7 @@ ] }, { - "id": 20197, + "id": 19810, "luminance": 0, "opaque": true, "replaceable": false, @@ -216745,7 +212490,7 @@ ] }, { - "id": 20198, + "id": 19811, "luminance": 0, "opaque": true, "replaceable": false, @@ -216755,7 +212500,7 @@ ] }, { - "id": 20199, + "id": 19812, "luminance": 0, "opaque": true, "replaceable": false, @@ -216766,7 +212511,7 @@ ] }, { - "id": 20200, + "id": 19813, "luminance": 0, "opaque": true, "replaceable": false, @@ -216777,7 +212522,7 @@ ] }, { - "id": 20201, + "id": 19814, "luminance": 0, "opaque": true, "replaceable": false, @@ -216788,7 +212533,7 @@ ] }, { - "id": 20202, + "id": 19815, "luminance": 0, "opaque": true, "replaceable": false, @@ -216799,7 +212544,7 @@ ] }, { - "id": 20203, + "id": 19816, "luminance": 0, "opaque": true, "replaceable": false, @@ -216809,7 +212554,7 @@ ] }, { - "id": 20204, + "id": 19817, "luminance": 0, "opaque": true, "replaceable": false, @@ -216819,7 +212564,7 @@ ] }, { - "id": 20205, + "id": 19818, "luminance": 0, "opaque": true, "replaceable": false, @@ -216829,7 +212574,7 @@ ] }, { - "id": 20206, + "id": 19819, "luminance": 0, "opaque": true, "replaceable": false, @@ -216840,326 +212585,11 @@ } ] }, - { - "id": 858, - "name": "polished_blackstone_slab", - "translation_key": "block.minecraft.polished_blackstone_slab", - "item_id": 1176, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20210, - "states": [ - { - "id": 20207, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 20208, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 20209, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 20210, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 20211, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 20212, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, { "id": 859, - "name": "polished_blackstone_pressure_plate", - "translation_key": "block.minecraft.polished_blackstone_pressure_plate", - "item_id": 670, - "properties": [ - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20214, - "states": [ - { - "id": 20213, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20214, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 860, - "name": "polished_blackstone_button", - "translation_key": "block.minecraft.polished_blackstone_button", - "item_id": 657, - "properties": [ - { - "name": "face", - "values": [ - "floor", - "wall", - "ceiling" - ] - }, - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "powered", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20224, - "states": [ - { - "id": 20215, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20216, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20217, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20218, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20219, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20220, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20221, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20222, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20223, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20224, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20225, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20226, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20227, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20228, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20229, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20230, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20231, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20232, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20233, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20234, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20235, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20236, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20237, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 20238, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [] - } - ] - }, - { - "id": 861, - "name": "polished_blackstone_wall", - "translation_key": "block.minecraft.polished_blackstone_wall", - "item_id": 389, + "name": "polished_blackstone_brick_wall", + "translation_key": "block.minecraft.polished_blackstone_brick_wall", + "item_id": 392, "properties": [ { "name": "east", @@ -217208,10 +212638,10 @@ ] } ], - "default_state_id": 20242, + "default_state_id": 19823, "states": [ { - "id": 20239, + "id": 19820, "luminance": 0, "opaque": true, "replaceable": false, @@ -217220,7 +212650,7 @@ ] }, { - "id": 20240, + "id": 19821, "luminance": 0, "opaque": true, "replaceable": false, @@ -217231,7 +212661,7 @@ ] }, { - "id": 20241, + "id": 19822, "luminance": 0, "opaque": true, "replaceable": false, @@ -217242,7 +212672,7 @@ ] }, { - "id": 20242, + "id": 19823, "luminance": 0, "opaque": true, "replaceable": false, @@ -217251,7 +212681,7 @@ ] }, { - "id": 20243, + "id": 19824, "luminance": 0, "opaque": true, "replaceable": false, @@ -217262,7 +212692,7 @@ ] }, { - "id": 20244, + "id": 19825, "luminance": 0, "opaque": true, "replaceable": false, @@ -217273,14 +212703,14 @@ ] }, { - "id": 20245, + "id": 19826, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 20246, + "id": 19827, "luminance": 0, "opaque": true, "replaceable": false, @@ -217289,7 +212719,7 @@ ] }, { - "id": 20247, + "id": 19828, "luminance": 0, "opaque": true, "replaceable": false, @@ -217298,14 +212728,14 @@ ] }, { - "id": 20248, + "id": 19829, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 20249, + "id": 19830, "luminance": 0, "opaque": true, "replaceable": false, @@ -217314,7 +212744,7 @@ ] }, { - "id": 20250, + "id": 19831, "luminance": 0, "opaque": true, "replaceable": false, @@ -217323,7 +212753,7 @@ ] }, { - "id": 20251, + "id": 19832, "luminance": 0, "opaque": true, "replaceable": false, @@ -217333,7 +212763,7 @@ ] }, { - "id": 20252, + "id": 19833, "luminance": 0, "opaque": true, "replaceable": false, @@ -217345,7 +212775,7 @@ ] }, { - "id": 20253, + "id": 19834, "luminance": 0, "opaque": true, "replaceable": false, @@ -217357,7 +212787,7 @@ ] }, { - "id": 20254, + "id": 19835, "luminance": 0, "opaque": true, "replaceable": false, @@ -217367,7 +212797,7 @@ ] }, { - "id": 20255, + "id": 19836, "luminance": 0, "opaque": true, "replaceable": false, @@ -217379,7 +212809,7 @@ ] }, { - "id": 20256, + "id": 19837, "luminance": 0, "opaque": true, "replaceable": false, @@ -217391,7 +212821,7 @@ ] }, { - "id": 20257, + "id": 19838, "luminance": 0, "opaque": true, "replaceable": false, @@ -217400,7 +212830,7 @@ ] }, { - "id": 20258, + "id": 19839, "luminance": 0, "opaque": true, "replaceable": false, @@ -217410,7 +212840,7 @@ ] }, { - "id": 20259, + "id": 19840, "luminance": 0, "opaque": true, "replaceable": false, @@ -217420,7 +212850,7 @@ ] }, { - "id": 20260, + "id": 19841, "luminance": 0, "opaque": true, "replaceable": false, @@ -217429,7 +212859,7 @@ ] }, { - "id": 20261, + "id": 19842, "luminance": 0, "opaque": true, "replaceable": false, @@ -217439,7 +212869,7 @@ ] }, { - "id": 20262, + "id": 19843, "luminance": 0, "opaque": true, "replaceable": false, @@ -217449,7 +212879,7 @@ ] }, { - "id": 20263, + "id": 19844, "luminance": 0, "opaque": true, "replaceable": false, @@ -217459,7 +212889,7 @@ ] }, { - "id": 20264, + "id": 19845, "luminance": 0, "opaque": true, "replaceable": false, @@ -217471,7 +212901,7 @@ ] }, { - "id": 20265, + "id": 19846, "luminance": 0, "opaque": true, "replaceable": false, @@ -217483,7 +212913,7 @@ ] }, { - "id": 20266, + "id": 19847, "luminance": 0, "opaque": true, "replaceable": false, @@ -217493,7 +212923,7 @@ ] }, { - "id": 20267, + "id": 19848, "luminance": 0, "opaque": true, "replaceable": false, @@ -217505,7 +212935,7 @@ ] }, { - "id": 20268, + "id": 19849, "luminance": 0, "opaque": true, "replaceable": false, @@ -217517,7 +212947,7 @@ ] }, { - "id": 20269, + "id": 19850, "luminance": 0, "opaque": true, "replaceable": false, @@ -217526,7 +212956,7 @@ ] }, { - "id": 20270, + "id": 19851, "luminance": 0, "opaque": true, "replaceable": false, @@ -217536,7 +212966,7 @@ ] }, { - "id": 20271, + "id": 19852, "luminance": 0, "opaque": true, "replaceable": false, @@ -217546,7 +212976,7 @@ ] }, { - "id": 20272, + "id": 19853, "luminance": 0, "opaque": true, "replaceable": false, @@ -217555,7 +212985,7 @@ ] }, { - "id": 20273, + "id": 19854, "luminance": 0, "opaque": true, "replaceable": false, @@ -217565,7 +212995,7 @@ ] }, { - "id": 20274, + "id": 19855, "luminance": 0, "opaque": true, "replaceable": false, @@ -217575,7 +213005,7 @@ ] }, { - "id": 20275, + "id": 19856, "luminance": 0, "opaque": true, "replaceable": false, @@ -217585,7 +213015,7 @@ ] }, { - "id": 20276, + "id": 19857, "luminance": 0, "opaque": true, "replaceable": false, @@ -217597,7 +213027,7 @@ ] }, { - "id": 20277, + "id": 19858, "luminance": 0, "opaque": true, "replaceable": false, @@ -217609,7 +213039,7 @@ ] }, { - "id": 20278, + "id": 19859, "luminance": 0, "opaque": true, "replaceable": false, @@ -217619,7 +213049,7 @@ ] }, { - "id": 20279, + "id": 19860, "luminance": 0, "opaque": true, "replaceable": false, @@ -217631,7 +213061,7 @@ ] }, { - "id": 20280, + "id": 19861, "luminance": 0, "opaque": true, "replaceable": false, @@ -217643,7 +213073,7 @@ ] }, { - "id": 20281, + "id": 19862, "luminance": 0, "opaque": true, "replaceable": false, @@ -217652,7 +213082,7 @@ ] }, { - "id": 20282, + "id": 19863, "luminance": 0, "opaque": true, "replaceable": false, @@ -217662,7 +213092,7 @@ ] }, { - "id": 20283, + "id": 19864, "luminance": 0, "opaque": true, "replaceable": false, @@ -217672,7 +213102,7 @@ ] }, { - "id": 20284, + "id": 19865, "luminance": 0, "opaque": true, "replaceable": false, @@ -217681,7 +213111,7 @@ ] }, { - "id": 20285, + "id": 19866, "luminance": 0, "opaque": true, "replaceable": false, @@ -217691,7 +213121,7 @@ ] }, { - "id": 20286, + "id": 19867, "luminance": 0, "opaque": true, "replaceable": false, @@ -217701,7 +213131,7 @@ ] }, { - "id": 20287, + "id": 19868, "luminance": 0, "opaque": true, "replaceable": false, @@ -217712,7 +213142,7 @@ ] }, { - "id": 20288, + "id": 19869, "luminance": 0, "opaque": true, "replaceable": false, @@ -217725,7 +213155,7 @@ ] }, { - "id": 20289, + "id": 19870, "luminance": 0, "opaque": true, "replaceable": false, @@ -217738,7 +213168,7 @@ ] }, { - "id": 20290, + "id": 19871, "luminance": 0, "opaque": true, "replaceable": false, @@ -217749,7 +213179,7 @@ ] }, { - "id": 20291, + "id": 19872, "luminance": 0, "opaque": true, "replaceable": false, @@ -217762,7 +213192,7 @@ ] }, { - "id": 20292, + "id": 19873, "luminance": 0, "opaque": true, "replaceable": false, @@ -217775,7 +213205,7 @@ ] }, { - "id": 20293, + "id": 19874, "luminance": 0, "opaque": true, "replaceable": false, @@ -217784,7 +213214,7 @@ ] }, { - "id": 20294, + "id": 19875, "luminance": 0, "opaque": true, "replaceable": false, @@ -217795,7 +213225,7 @@ ] }, { - "id": 20295, + "id": 19876, "luminance": 0, "opaque": true, "replaceable": false, @@ -217806,7 +213236,7 @@ ] }, { - "id": 20296, + "id": 19877, "luminance": 0, "opaque": true, "replaceable": false, @@ -217815,7 +213245,7 @@ ] }, { - "id": 20297, + "id": 19878, "luminance": 0, "opaque": true, "replaceable": false, @@ -217826,7 +213256,7 @@ ] }, { - "id": 20298, + "id": 19879, "luminance": 0, "opaque": true, "replaceable": false, @@ -217837,7 +213267,7 @@ ] }, { - "id": 20299, + "id": 19880, "luminance": 0, "opaque": true, "replaceable": false, @@ -217848,7 +213278,7 @@ ] }, { - "id": 20300, + "id": 19881, "luminance": 0, "opaque": true, "replaceable": false, @@ -217861,7 +213291,7 @@ ] }, { - "id": 20301, + "id": 19882, "luminance": 0, "opaque": true, "replaceable": false, @@ -217874,7 +213304,7 @@ ] }, { - "id": 20302, + "id": 19883, "luminance": 0, "opaque": true, "replaceable": false, @@ -217885,7 +213315,7 @@ ] }, { - "id": 20303, + "id": 19884, "luminance": 0, "opaque": true, "replaceable": false, @@ -217898,7 +213328,7 @@ ] }, { - "id": 20304, + "id": 19885, "luminance": 0, "opaque": true, "replaceable": false, @@ -217911,7 +213341,7 @@ ] }, { - "id": 20305, + "id": 19886, "luminance": 0, "opaque": true, "replaceable": false, @@ -217920,7 +213350,7 @@ ] }, { - "id": 20306, + "id": 19887, "luminance": 0, "opaque": true, "replaceable": false, @@ -217931,7 +213361,7 @@ ] }, { - "id": 20307, + "id": 19888, "luminance": 0, "opaque": true, "replaceable": false, @@ -217942,7 +213372,7 @@ ] }, { - "id": 20308, + "id": 19889, "luminance": 0, "opaque": true, "replaceable": false, @@ -217951,7 +213381,7 @@ ] }, { - "id": 20309, + "id": 19890, "luminance": 0, "opaque": true, "replaceable": false, @@ -217962,7 +213392,7 @@ ] }, { - "id": 20310, + "id": 19891, "luminance": 0, "opaque": true, "replaceable": false, @@ -217973,7 +213403,7 @@ ] }, { - "id": 20311, + "id": 19892, "luminance": 0, "opaque": true, "replaceable": false, @@ -217983,7 +213413,7 @@ ] }, { - "id": 20312, + "id": 19893, "luminance": 0, "opaque": true, "replaceable": false, @@ -217995,7 +213425,7 @@ ] }, { - "id": 20313, + "id": 19894, "luminance": 0, "opaque": true, "replaceable": false, @@ -218007,7 +213437,7 @@ ] }, { - "id": 20314, + "id": 19895, "luminance": 0, "opaque": true, "replaceable": false, @@ -218017,7 +213447,7 @@ ] }, { - "id": 20315, + "id": 19896, "luminance": 0, "opaque": true, "replaceable": false, @@ -218029,7 +213459,7 @@ ] }, { - "id": 20316, + "id": 19897, "luminance": 0, "opaque": true, "replaceable": false, @@ -218041,7 +213471,7 @@ ] }, { - "id": 20317, + "id": 19898, "luminance": 0, "opaque": true, "replaceable": false, @@ -218050,7 +213480,7 @@ ] }, { - "id": 20318, + "id": 19899, "luminance": 0, "opaque": true, "replaceable": false, @@ -218060,7 +213490,7 @@ ] }, { - "id": 20319, + "id": 19900, "luminance": 0, "opaque": true, "replaceable": false, @@ -218070,7 +213500,7 @@ ] }, { - "id": 20320, + "id": 19901, "luminance": 0, "opaque": true, "replaceable": false, @@ -218079,7 +213509,7 @@ ] }, { - "id": 20321, + "id": 19902, "luminance": 0, "opaque": true, "replaceable": false, @@ -218089,7 +213519,7 @@ ] }, { - "id": 20322, + "id": 19903, "luminance": 0, "opaque": true, "replaceable": false, @@ -218099,7 +213529,7 @@ ] }, { - "id": 20323, + "id": 19904, "luminance": 0, "opaque": true, "replaceable": false, @@ -218110,7 +213540,7 @@ ] }, { - "id": 20324, + "id": 19905, "luminance": 0, "opaque": true, "replaceable": false, @@ -218123,7 +213553,7 @@ ] }, { - "id": 20325, + "id": 19906, "luminance": 0, "opaque": true, "replaceable": false, @@ -218136,7 +213566,7 @@ ] }, { - "id": 20326, + "id": 19907, "luminance": 0, "opaque": true, "replaceable": false, @@ -218147,7 +213577,7 @@ ] }, { - "id": 20327, + "id": 19908, "luminance": 0, "opaque": true, "replaceable": false, @@ -218160,7 +213590,7 @@ ] }, { - "id": 20328, + "id": 19909, "luminance": 0, "opaque": true, "replaceable": false, @@ -218173,7 +213603,7 @@ ] }, { - "id": 20329, + "id": 19910, "luminance": 0, "opaque": true, "replaceable": false, @@ -218182,7 +213612,7 @@ ] }, { - "id": 20330, + "id": 19911, "luminance": 0, "opaque": true, "replaceable": false, @@ -218193,7 +213623,7 @@ ] }, { - "id": 20331, + "id": 19912, "luminance": 0, "opaque": true, "replaceable": false, @@ -218204,7 +213634,7 @@ ] }, { - "id": 20332, + "id": 19913, "luminance": 0, "opaque": true, "replaceable": false, @@ -218213,7 +213643,7 @@ ] }, { - "id": 20333, + "id": 19914, "luminance": 0, "opaque": true, "replaceable": false, @@ -218224,7 +213654,7 @@ ] }, { - "id": 20334, + "id": 19915, "luminance": 0, "opaque": true, "replaceable": false, @@ -218235,7 +213665,7 @@ ] }, { - "id": 20335, + "id": 19916, "luminance": 0, "opaque": true, "replaceable": false, @@ -218246,7 +213676,7 @@ ] }, { - "id": 20336, + "id": 19917, "luminance": 0, "opaque": true, "replaceable": false, @@ -218259,7 +213689,7 @@ ] }, { - "id": 20337, + "id": 19918, "luminance": 0, "opaque": true, "replaceable": false, @@ -218272,7 +213702,7 @@ ] }, { - "id": 20338, + "id": 19919, "luminance": 0, "opaque": true, "replaceable": false, @@ -218283,7 +213713,7 @@ ] }, { - "id": 20339, + "id": 19920, "luminance": 0, "opaque": true, "replaceable": false, @@ -218296,7 +213726,7 @@ ] }, { - "id": 20340, + "id": 19921, "luminance": 0, "opaque": true, "replaceable": false, @@ -218309,7 +213739,7 @@ ] }, { - "id": 20341, + "id": 19922, "luminance": 0, "opaque": true, "replaceable": false, @@ -218318,7 +213748,7 @@ ] }, { - "id": 20342, + "id": 19923, "luminance": 0, "opaque": true, "replaceable": false, @@ -218329,7 +213759,7 @@ ] }, { - "id": 20343, + "id": 19924, "luminance": 0, "opaque": true, "replaceable": false, @@ -218340,7 +213770,7 @@ ] }, { - "id": 20344, + "id": 19925, "luminance": 0, "opaque": true, "replaceable": false, @@ -218349,7 +213779,7 @@ ] }, { - "id": 20345, + "id": 19926, "luminance": 0, "opaque": true, "replaceable": false, @@ -218360,7 +213790,7 @@ ] }, { - "id": 20346, + "id": 19927, "luminance": 0, "opaque": true, "replaceable": false, @@ -218371,7 +213801,7 @@ ] }, { - "id": 20347, + "id": 19928, "luminance": 0, "opaque": true, "replaceable": false, @@ -218381,7 +213811,7 @@ ] }, { - "id": 20348, + "id": 19929, "luminance": 0, "opaque": true, "replaceable": false, @@ -218392,7 +213822,7 @@ ] }, { - "id": 20349, + "id": 19930, "luminance": 0, "opaque": true, "replaceable": false, @@ -218403,7 +213833,7 @@ ] }, { - "id": 20350, + "id": 19931, "luminance": 0, "opaque": true, "replaceable": false, @@ -218413,7 +213843,7 @@ ] }, { - "id": 20351, + "id": 19932, "luminance": 0, "opaque": true, "replaceable": false, @@ -218424,7 +213854,7 @@ ] }, { - "id": 20352, + "id": 19933, "luminance": 0, "opaque": true, "replaceable": false, @@ -218435,7 +213865,7 @@ ] }, { - "id": 20353, + "id": 19934, "luminance": 0, "opaque": true, "replaceable": false, @@ -218444,7 +213874,7 @@ ] }, { - "id": 20354, + "id": 19935, "luminance": 0, "opaque": true, "replaceable": false, @@ -218453,7 +213883,7 @@ ] }, { - "id": 20355, + "id": 19936, "luminance": 0, "opaque": true, "replaceable": false, @@ -218462,7 +213892,7 @@ ] }, { - "id": 20356, + "id": 19937, "luminance": 0, "opaque": true, "replaceable": false, @@ -218471,7 +213901,7 @@ ] }, { - "id": 20357, + "id": 19938, "luminance": 0, "opaque": true, "replaceable": false, @@ -218480,7 +213910,7 @@ ] }, { - "id": 20358, + "id": 19939, "luminance": 0, "opaque": true, "replaceable": false, @@ -218489,7 +213919,7 @@ ] }, { - "id": 20359, + "id": 19940, "luminance": 0, "opaque": true, "replaceable": false, @@ -218500,7 +213930,7 @@ ] }, { - "id": 20360, + "id": 19941, "luminance": 0, "opaque": true, "replaceable": false, @@ -218512,7 +213942,7 @@ ] }, { - "id": 20361, + "id": 19942, "luminance": 0, "opaque": true, "replaceable": false, @@ -218524,7 +213954,7 @@ ] }, { - "id": 20362, + "id": 19943, "luminance": 0, "opaque": true, "replaceable": false, @@ -218535,7 +213965,7 @@ ] }, { - "id": 20363, + "id": 19944, "luminance": 0, "opaque": true, "replaceable": false, @@ -218547,7 +213977,7 @@ ] }, { - "id": 20364, + "id": 19945, "luminance": 0, "opaque": true, "replaceable": false, @@ -218559,7 +213989,7 @@ ] }, { - "id": 20365, + "id": 19946, "luminance": 0, "opaque": true, "replaceable": false, @@ -218569,7 +213999,7 @@ ] }, { - "id": 20366, + "id": 19947, "luminance": 0, "opaque": true, "replaceable": false, @@ -218579,7 +214009,7 @@ ] }, { - "id": 20367, + "id": 19948, "luminance": 0, "opaque": true, "replaceable": false, @@ -218589,7 +214019,7 @@ ] }, { - "id": 20368, + "id": 19949, "luminance": 0, "opaque": true, "replaceable": false, @@ -218599,7 +214029,7 @@ ] }, { - "id": 20369, + "id": 19950, "luminance": 0, "opaque": true, "replaceable": false, @@ -218609,7 +214039,7 @@ ] }, { - "id": 20370, + "id": 19951, "luminance": 0, "opaque": true, "replaceable": false, @@ -218619,7 +214049,7 @@ ] }, { - "id": 20371, + "id": 19952, "luminance": 0, "opaque": true, "replaceable": false, @@ -218630,7 +214060,7 @@ ] }, { - "id": 20372, + "id": 19953, "luminance": 0, "opaque": true, "replaceable": false, @@ -218642,7 +214072,7 @@ ] }, { - "id": 20373, + "id": 19954, "luminance": 0, "opaque": true, "replaceable": false, @@ -218654,7 +214084,7 @@ ] }, { - "id": 20374, + "id": 19955, "luminance": 0, "opaque": true, "replaceable": false, @@ -218665,7 +214095,7 @@ ] }, { - "id": 20375, + "id": 19956, "luminance": 0, "opaque": true, "replaceable": false, @@ -218677,7 +214107,7 @@ ] }, { - "id": 20376, + "id": 19957, "luminance": 0, "opaque": true, "replaceable": false, @@ -218689,7 +214119,7 @@ ] }, { - "id": 20377, + "id": 19958, "luminance": 0, "opaque": true, "replaceable": false, @@ -218699,7 +214129,7 @@ ] }, { - "id": 20378, + "id": 19959, "luminance": 0, "opaque": true, "replaceable": false, @@ -218709,7 +214139,7 @@ ] }, { - "id": 20379, + "id": 19960, "luminance": 0, "opaque": true, "replaceable": false, @@ -218719,7 +214149,7 @@ ] }, { - "id": 20380, + "id": 19961, "luminance": 0, "opaque": true, "replaceable": false, @@ -218729,7 +214159,7 @@ ] }, { - "id": 20381, + "id": 19962, "luminance": 0, "opaque": true, "replaceable": false, @@ -218739,7 +214169,7 @@ ] }, { - "id": 20382, + "id": 19963, "luminance": 0, "opaque": true, "replaceable": false, @@ -218749,7 +214179,7 @@ ] }, { - "id": 20383, + "id": 19964, "luminance": 0, "opaque": true, "replaceable": false, @@ -218760,7 +214190,7 @@ ] }, { - "id": 20384, + "id": 19965, "luminance": 0, "opaque": true, "replaceable": false, @@ -218772,7 +214202,7 @@ ] }, { - "id": 20385, + "id": 19966, "luminance": 0, "opaque": true, "replaceable": false, @@ -218784,7 +214214,7 @@ ] }, { - "id": 20386, + "id": 19967, "luminance": 0, "opaque": true, "replaceable": false, @@ -218795,7 +214225,7 @@ ] }, { - "id": 20387, + "id": 19968, "luminance": 0, "opaque": true, "replaceable": false, @@ -218807,7 +214237,7 @@ ] }, { - "id": 20388, + "id": 19969, "luminance": 0, "opaque": true, "replaceable": false, @@ -218819,7 +214249,7 @@ ] }, { - "id": 20389, + "id": 19970, "luminance": 0, "opaque": true, "replaceable": false, @@ -218829,7 +214259,7 @@ ] }, { - "id": 20390, + "id": 19971, "luminance": 0, "opaque": true, "replaceable": false, @@ -218839,7 +214269,7 @@ ] }, { - "id": 20391, + "id": 19972, "luminance": 0, "opaque": true, "replaceable": false, @@ -218849,7 +214279,7 @@ ] }, { - "id": 20392, + "id": 19973, "luminance": 0, "opaque": true, "replaceable": false, @@ -218859,7 +214289,7 @@ ] }, { - "id": 20393, + "id": 19974, "luminance": 0, "opaque": true, "replaceable": false, @@ -218869,7 +214299,7 @@ ] }, { - "id": 20394, + "id": 19975, "luminance": 0, "opaque": true, "replaceable": false, @@ -218879,7 +214309,7 @@ ] }, { - "id": 20395, + "id": 19976, "luminance": 0, "opaque": true, "replaceable": false, @@ -218891,7 +214321,7 @@ ] }, { - "id": 20396, + "id": 19977, "luminance": 0, "opaque": true, "replaceable": false, @@ -218904,7 +214334,7 @@ ] }, { - "id": 20397, + "id": 19978, "luminance": 0, "opaque": true, "replaceable": false, @@ -218917,7 +214347,7 @@ ] }, { - "id": 20398, + "id": 19979, "luminance": 0, "opaque": true, "replaceable": false, @@ -218929,7 +214359,7 @@ ] }, { - "id": 20399, + "id": 19980, "luminance": 0, "opaque": true, "replaceable": false, @@ -218942,7 +214372,7 @@ ] }, { - "id": 20400, + "id": 19981, "luminance": 0, "opaque": true, "replaceable": false, @@ -218955,7 +214385,7 @@ ] }, { - "id": 20401, + "id": 19982, "luminance": 0, "opaque": true, "replaceable": false, @@ -218965,7 +214395,7 @@ ] }, { - "id": 20402, + "id": 19983, "luminance": 0, "opaque": true, "replaceable": false, @@ -218976,7 +214406,7 @@ ] }, { - "id": 20403, + "id": 19984, "luminance": 0, "opaque": true, "replaceable": false, @@ -218987,7 +214417,7 @@ ] }, { - "id": 20404, + "id": 19985, "luminance": 0, "opaque": true, "replaceable": false, @@ -218997,7 +214427,7 @@ ] }, { - "id": 20405, + "id": 19986, "luminance": 0, "opaque": true, "replaceable": false, @@ -219008,7 +214438,7 @@ ] }, { - "id": 20406, + "id": 19987, "luminance": 0, "opaque": true, "replaceable": false, @@ -219019,7 +214449,7 @@ ] }, { - "id": 20407, + "id": 19988, "luminance": 0, "opaque": true, "replaceable": false, @@ -219031,7 +214461,7 @@ ] }, { - "id": 20408, + "id": 19989, "luminance": 0, "opaque": true, "replaceable": false, @@ -219044,7 +214474,7 @@ ] }, { - "id": 20409, + "id": 19990, "luminance": 0, "opaque": true, "replaceable": false, @@ -219057,7 +214487,7 @@ ] }, { - "id": 20410, + "id": 19991, "luminance": 0, "opaque": true, "replaceable": false, @@ -219069,7 +214499,7 @@ ] }, { - "id": 20411, + "id": 19992, "luminance": 0, "opaque": true, "replaceable": false, @@ -219082,7 +214512,7 @@ ] }, { - "id": 20412, + "id": 19993, "luminance": 0, "opaque": true, "replaceable": false, @@ -219095,7 +214525,7 @@ ] }, { - "id": 20413, + "id": 19994, "luminance": 0, "opaque": true, "replaceable": false, @@ -219105,7 +214535,7 @@ ] }, { - "id": 20414, + "id": 19995, "luminance": 0, "opaque": true, "replaceable": false, @@ -219116,7 +214546,7 @@ ] }, { - "id": 20415, + "id": 19996, "luminance": 0, "opaque": true, "replaceable": false, @@ -219127,7 +214557,7 @@ ] }, { - "id": 20416, + "id": 19997, "luminance": 0, "opaque": true, "replaceable": false, @@ -219137,7 +214567,7 @@ ] }, { - "id": 20417, + "id": 19998, "luminance": 0, "opaque": true, "replaceable": false, @@ -219148,7 +214578,7 @@ ] }, { - "id": 20418, + "id": 19999, "luminance": 0, "opaque": true, "replaceable": false, @@ -219159,7 +214589,7 @@ ] }, { - "id": 20419, + "id": 20000, "luminance": 0, "opaque": true, "replaceable": false, @@ -219170,7 +214600,7 @@ ] }, { - "id": 20420, + "id": 20001, "luminance": 0, "opaque": true, "replaceable": false, @@ -219182,7 +214612,7 @@ ] }, { - "id": 20421, + "id": 20002, "luminance": 0, "opaque": true, "replaceable": false, @@ -219194,7 +214624,7 @@ ] }, { - "id": 20422, + "id": 20003, "luminance": 0, "opaque": true, "replaceable": false, @@ -219205,7 +214635,7 @@ ] }, { - "id": 20423, + "id": 20004, "luminance": 0, "opaque": true, "replaceable": false, @@ -219217,7 +214647,7 @@ ] }, { - "id": 20424, + "id": 20005, "luminance": 0, "opaque": true, "replaceable": false, @@ -219229,7 +214659,7 @@ ] }, { - "id": 20425, + "id": 20006, "luminance": 0, "opaque": true, "replaceable": false, @@ -219239,7 +214669,7 @@ ] }, { - "id": 20426, + "id": 20007, "luminance": 0, "opaque": true, "replaceable": false, @@ -219249,7 +214679,7 @@ ] }, { - "id": 20427, + "id": 20008, "luminance": 0, "opaque": true, "replaceable": false, @@ -219259,7 +214689,7 @@ ] }, { - "id": 20428, + "id": 20009, "luminance": 0, "opaque": true, "replaceable": false, @@ -219269,7 +214699,7 @@ ] }, { - "id": 20429, + "id": 20010, "luminance": 0, "opaque": true, "replaceable": false, @@ -219279,7 +214709,7 @@ ] }, { - "id": 20430, + "id": 20011, "luminance": 0, "opaque": true, "replaceable": false, @@ -219289,7 +214719,7 @@ ] }, { - "id": 20431, + "id": 20012, "luminance": 0, "opaque": true, "replaceable": false, @@ -219301,7 +214731,7 @@ ] }, { - "id": 20432, + "id": 20013, "luminance": 0, "opaque": true, "replaceable": false, @@ -219314,7 +214744,7 @@ ] }, { - "id": 20433, + "id": 20014, "luminance": 0, "opaque": true, "replaceable": false, @@ -219327,7 +214757,7 @@ ] }, { - "id": 20434, + "id": 20015, "luminance": 0, "opaque": true, "replaceable": false, @@ -219339,7 +214769,7 @@ ] }, { - "id": 20435, + "id": 20016, "luminance": 0, "opaque": true, "replaceable": false, @@ -219352,7 +214782,7 @@ ] }, { - "id": 20436, + "id": 20017, "luminance": 0, "opaque": true, "replaceable": false, @@ -219365,7 +214795,7 @@ ] }, { - "id": 20437, + "id": 20018, "luminance": 0, "opaque": true, "replaceable": false, @@ -219375,7 +214805,7 @@ ] }, { - "id": 20438, + "id": 20019, "luminance": 0, "opaque": true, "replaceable": false, @@ -219386,7 +214816,7 @@ ] }, { - "id": 20439, + "id": 20020, "luminance": 0, "opaque": true, "replaceable": false, @@ -219397,7 +214827,7 @@ ] }, { - "id": 20440, + "id": 20021, "luminance": 0, "opaque": true, "replaceable": false, @@ -219407,7 +214837,7 @@ ] }, { - "id": 20441, + "id": 20022, "luminance": 0, "opaque": true, "replaceable": false, @@ -219418,7 +214848,7 @@ ] }, { - "id": 20442, + "id": 20023, "luminance": 0, "opaque": true, "replaceable": false, @@ -219429,7 +214859,7 @@ ] }, { - "id": 20443, + "id": 20024, "luminance": 0, "opaque": true, "replaceable": false, @@ -219441,7 +214871,7 @@ ] }, { - "id": 20444, + "id": 20025, "luminance": 0, "opaque": true, "replaceable": false, @@ -219454,7 +214884,7 @@ ] }, { - "id": 20445, + "id": 20026, "luminance": 0, "opaque": true, "replaceable": false, @@ -219467,7 +214897,7 @@ ] }, { - "id": 20446, + "id": 20027, "luminance": 0, "opaque": true, "replaceable": false, @@ -219479,7 +214909,7 @@ ] }, { - "id": 20447, + "id": 20028, "luminance": 0, "opaque": true, "replaceable": false, @@ -219492,7 +214922,7 @@ ] }, { - "id": 20448, + "id": 20029, "luminance": 0, "opaque": true, "replaceable": false, @@ -219505,7 +214935,7 @@ ] }, { - "id": 20449, + "id": 20030, "luminance": 0, "opaque": true, "replaceable": false, @@ -219515,7 +214945,7 @@ ] }, { - "id": 20450, + "id": 20031, "luminance": 0, "opaque": true, "replaceable": false, @@ -219526,7 +214956,7 @@ ] }, { - "id": 20451, + "id": 20032, "luminance": 0, "opaque": true, "replaceable": false, @@ -219537,7 +214967,7 @@ ] }, { - "id": 20452, + "id": 20033, "luminance": 0, "opaque": true, "replaceable": false, @@ -219547,7 +214977,7 @@ ] }, { - "id": 20453, + "id": 20034, "luminance": 0, "opaque": true, "replaceable": false, @@ -219558,7 +214988,7 @@ ] }, { - "id": 20454, + "id": 20035, "luminance": 0, "opaque": true, "replaceable": false, @@ -219569,7 +214999,7 @@ ] }, { - "id": 20455, + "id": 20036, "luminance": 0, "opaque": true, "replaceable": false, @@ -219579,7 +215009,7 @@ ] }, { - "id": 20456, + "id": 20037, "luminance": 0, "opaque": true, "replaceable": false, @@ -219590,7 +215020,7 @@ ] }, { - "id": 20457, + "id": 20038, "luminance": 0, "opaque": true, "replaceable": false, @@ -219601,7 +215031,7 @@ ] }, { - "id": 20458, + "id": 20039, "luminance": 0, "opaque": true, "replaceable": false, @@ -219611,7 +215041,7 @@ ] }, { - "id": 20459, + "id": 20040, "luminance": 0, "opaque": true, "replaceable": false, @@ -219622,7 +215052,7 @@ ] }, { - "id": 20460, + "id": 20041, "luminance": 0, "opaque": true, "replaceable": false, @@ -219633,7 +215063,7 @@ ] }, { - "id": 20461, + "id": 20042, "luminance": 0, "opaque": true, "replaceable": false, @@ -219642,7 +215072,7 @@ ] }, { - "id": 20462, + "id": 20043, "luminance": 0, "opaque": true, "replaceable": false, @@ -219651,7 +215081,7 @@ ] }, { - "id": 20463, + "id": 20044, "luminance": 0, "opaque": true, "replaceable": false, @@ -219660,7 +215090,7 @@ ] }, { - "id": 20464, + "id": 20045, "luminance": 0, "opaque": true, "replaceable": false, @@ -219669,7 +215099,7 @@ ] }, { - "id": 20465, + "id": 20046, "luminance": 0, "opaque": true, "replaceable": false, @@ -219678,7 +215108,7 @@ ] }, { - "id": 20466, + "id": 20047, "luminance": 0, "opaque": true, "replaceable": false, @@ -219687,7 +215117,7 @@ ] }, { - "id": 20467, + "id": 20048, "luminance": 0, "opaque": true, "replaceable": false, @@ -219698,7 +215128,7 @@ ] }, { - "id": 20468, + "id": 20049, "luminance": 0, "opaque": true, "replaceable": false, @@ -219710,7 +215140,7 @@ ] }, { - "id": 20469, + "id": 20050, "luminance": 0, "opaque": true, "replaceable": false, @@ -219722,7 +215152,7 @@ ] }, { - "id": 20470, + "id": 20051, "luminance": 0, "opaque": true, "replaceable": false, @@ -219733,7 +215163,7 @@ ] }, { - "id": 20471, + "id": 20052, "luminance": 0, "opaque": true, "replaceable": false, @@ -219745,7 +215175,7 @@ ] }, { - "id": 20472, + "id": 20053, "luminance": 0, "opaque": true, "replaceable": false, @@ -219757,7 +215187,7 @@ ] }, { - "id": 20473, + "id": 20054, "luminance": 0, "opaque": true, "replaceable": false, @@ -219767,7 +215197,7 @@ ] }, { - "id": 20474, + "id": 20055, "luminance": 0, "opaque": true, "replaceable": false, @@ -219777,7 +215207,7 @@ ] }, { - "id": 20475, + "id": 20056, "luminance": 0, "opaque": true, "replaceable": false, @@ -219787,7 +215217,7 @@ ] }, { - "id": 20476, + "id": 20057, "luminance": 0, "opaque": true, "replaceable": false, @@ -219797,7 +215227,7 @@ ] }, { - "id": 20477, + "id": 20058, "luminance": 0, "opaque": true, "replaceable": false, @@ -219807,7 +215237,7 @@ ] }, { - "id": 20478, + "id": 20059, "luminance": 0, "opaque": true, "replaceable": false, @@ -219817,7 +215247,7 @@ ] }, { - "id": 20479, + "id": 20060, "luminance": 0, "opaque": true, "replaceable": false, @@ -219828,7 +215258,7 @@ ] }, { - "id": 20480, + "id": 20061, "luminance": 0, "opaque": true, "replaceable": false, @@ -219840,7 +215270,7 @@ ] }, { - "id": 20481, + "id": 20062, "luminance": 0, "opaque": true, "replaceable": false, @@ -219852,7 +215282,7 @@ ] }, { - "id": 20482, + "id": 20063, "luminance": 0, "opaque": true, "replaceable": false, @@ -219863,7 +215293,7 @@ ] }, { - "id": 20483, + "id": 20064, "luminance": 0, "opaque": true, "replaceable": false, @@ -219875,7 +215305,7 @@ ] }, { - "id": 20484, + "id": 20065, "luminance": 0, "opaque": true, "replaceable": false, @@ -219887,7 +215317,7 @@ ] }, { - "id": 20485, + "id": 20066, "luminance": 0, "opaque": true, "replaceable": false, @@ -219897,7 +215327,7 @@ ] }, { - "id": 20486, + "id": 20067, "luminance": 0, "opaque": true, "replaceable": false, @@ -219907,7 +215337,7 @@ ] }, { - "id": 20487, + "id": 20068, "luminance": 0, "opaque": true, "replaceable": false, @@ -219917,7 +215347,7 @@ ] }, { - "id": 20488, + "id": 20069, "luminance": 0, "opaque": true, "replaceable": false, @@ -219927,7 +215357,7 @@ ] }, { - "id": 20489, + "id": 20070, "luminance": 0, "opaque": true, "replaceable": false, @@ -219937,7 +215367,7 @@ ] }, { - "id": 20490, + "id": 20071, "luminance": 0, "opaque": true, "replaceable": false, @@ -219947,7 +215377,7 @@ ] }, { - "id": 20491, + "id": 20072, "luminance": 0, "opaque": true, "replaceable": false, @@ -219958,7 +215388,7 @@ ] }, { - "id": 20492, + "id": 20073, "luminance": 0, "opaque": true, "replaceable": false, @@ -219970,7 +215400,7 @@ ] }, { - "id": 20493, + "id": 20074, "luminance": 0, "opaque": true, "replaceable": false, @@ -219982,7 +215412,7 @@ ] }, { - "id": 20494, + "id": 20075, "luminance": 0, "opaque": true, "replaceable": false, @@ -219993,7 +215423,7 @@ ] }, { - "id": 20495, + "id": 20076, "luminance": 0, "opaque": true, "replaceable": false, @@ -220005,7 +215435,7 @@ ] }, { - "id": 20496, + "id": 20077, "luminance": 0, "opaque": true, "replaceable": false, @@ -220017,7 +215447,7 @@ ] }, { - "id": 20497, + "id": 20078, "luminance": 0, "opaque": true, "replaceable": false, @@ -220027,7 +215457,7 @@ ] }, { - "id": 20498, + "id": 20079, "luminance": 0, "opaque": true, "replaceable": false, @@ -220037,7 +215467,7 @@ ] }, { - "id": 20499, + "id": 20080, "luminance": 0, "opaque": true, "replaceable": false, @@ -220047,7 +215477,7 @@ ] }, { - "id": 20500, + "id": 20081, "luminance": 0, "opaque": true, "replaceable": false, @@ -220057,7 +215487,7 @@ ] }, { - "id": 20501, + "id": 20082, "luminance": 0, "opaque": true, "replaceable": false, @@ -220067,7 +215497,7 @@ ] }, { - "id": 20502, + "id": 20083, "luminance": 0, "opaque": true, "replaceable": false, @@ -220077,7 +215507,7 @@ ] }, { - "id": 20503, + "id": 20084, "luminance": 0, "opaque": true, "replaceable": false, @@ -220089,7 +215519,7 @@ ] }, { - "id": 20504, + "id": 20085, "luminance": 0, "opaque": true, "replaceable": false, @@ -220102,7 +215532,7 @@ ] }, { - "id": 20505, + "id": 20086, "luminance": 0, "opaque": true, "replaceable": false, @@ -220115,7 +215545,7 @@ ] }, { - "id": 20506, + "id": 20087, "luminance": 0, "opaque": true, "replaceable": false, @@ -220127,7 +215557,7 @@ ] }, { - "id": 20507, + "id": 20088, "luminance": 0, "opaque": true, "replaceable": false, @@ -220140,7 +215570,7 @@ ] }, { - "id": 20508, + "id": 20089, "luminance": 0, "opaque": true, "replaceable": false, @@ -220153,7 +215583,7 @@ ] }, { - "id": 20509, + "id": 20090, "luminance": 0, "opaque": true, "replaceable": false, @@ -220163,7 +215593,7 @@ ] }, { - "id": 20510, + "id": 20091, "luminance": 0, "opaque": true, "replaceable": false, @@ -220174,7 +215604,7 @@ ] }, { - "id": 20511, + "id": 20092, "luminance": 0, "opaque": true, "replaceable": false, @@ -220185,7 +215615,7 @@ ] }, { - "id": 20512, + "id": 20093, "luminance": 0, "opaque": true, "replaceable": false, @@ -220195,7 +215625,7 @@ ] }, { - "id": 20513, + "id": 20094, "luminance": 0, "opaque": true, "replaceable": false, @@ -220206,7 +215636,7 @@ ] }, { - "id": 20514, + "id": 20095, "luminance": 0, "opaque": true, "replaceable": false, @@ -220217,7 +215647,7 @@ ] }, { - "id": 20515, + "id": 20096, "luminance": 0, "opaque": true, "replaceable": false, @@ -220229,7 +215659,7 @@ ] }, { - "id": 20516, + "id": 20097, "luminance": 0, "opaque": true, "replaceable": false, @@ -220242,7 +215672,7 @@ ] }, { - "id": 20517, + "id": 20098, "luminance": 0, "opaque": true, "replaceable": false, @@ -220255,7 +215685,7 @@ ] }, { - "id": 20518, + "id": 20099, "luminance": 0, "opaque": true, "replaceable": false, @@ -220267,7 +215697,7 @@ ] }, { - "id": 20519, + "id": 20100, "luminance": 0, "opaque": true, "replaceable": false, @@ -220280,7 +215710,7 @@ ] }, { - "id": 20520, + "id": 20101, "luminance": 0, "opaque": true, "replaceable": false, @@ -220293,7 +215723,7 @@ ] }, { - "id": 20521, + "id": 20102, "luminance": 0, "opaque": true, "replaceable": false, @@ -220303,7 +215733,7 @@ ] }, { - "id": 20522, + "id": 20103, "luminance": 0, "opaque": true, "replaceable": false, @@ -220314,7 +215744,7 @@ ] }, { - "id": 20523, + "id": 20104, "luminance": 0, "opaque": true, "replaceable": false, @@ -220325,7 +215755,7 @@ ] }, { - "id": 20524, + "id": 20105, "luminance": 0, "opaque": true, "replaceable": false, @@ -220335,7 +215765,7 @@ ] }, { - "id": 20525, + "id": 20106, "luminance": 0, "opaque": true, "replaceable": false, @@ -220346,7 +215776,7 @@ ] }, { - "id": 20526, + "id": 20107, "luminance": 0, "opaque": true, "replaceable": false, @@ -220357,7 +215787,7 @@ ] }, { - "id": 20527, + "id": 20108, "luminance": 0, "opaque": true, "replaceable": false, @@ -220368,7 +215798,7 @@ ] }, { - "id": 20528, + "id": 20109, "luminance": 0, "opaque": true, "replaceable": false, @@ -220380,7 +215810,7 @@ ] }, { - "id": 20529, + "id": 20110, "luminance": 0, "opaque": true, "replaceable": false, @@ -220392,7 +215822,7 @@ ] }, { - "id": 20530, + "id": 20111, "luminance": 0, "opaque": true, "replaceable": false, @@ -220403,7 +215833,7 @@ ] }, { - "id": 20531, + "id": 20112, "luminance": 0, "opaque": true, "replaceable": false, @@ -220415,7 +215845,7 @@ ] }, { - "id": 20532, + "id": 20113, "luminance": 0, "opaque": true, "replaceable": false, @@ -220427,7 +215857,7 @@ ] }, { - "id": 20533, + "id": 20114, "luminance": 0, "opaque": true, "replaceable": false, @@ -220437,7 +215867,7 @@ ] }, { - "id": 20534, + "id": 20115, "luminance": 0, "opaque": true, "replaceable": false, @@ -220447,7 +215877,7 @@ ] }, { - "id": 20535, + "id": 20116, "luminance": 0, "opaque": true, "replaceable": false, @@ -220457,7 +215887,7 @@ ] }, { - "id": 20536, + "id": 20117, "luminance": 0, "opaque": true, "replaceable": false, @@ -220467,7 +215897,7 @@ ] }, { - "id": 20537, + "id": 20118, "luminance": 0, "opaque": true, "replaceable": false, @@ -220477,7 +215907,7 @@ ] }, { - "id": 20538, + "id": 20119, "luminance": 0, "opaque": true, "replaceable": false, @@ -220487,7 +215917,7 @@ ] }, { - "id": 20539, + "id": 20120, "luminance": 0, "opaque": true, "replaceable": false, @@ -220499,7 +215929,7 @@ ] }, { - "id": 20540, + "id": 20121, "luminance": 0, "opaque": true, "replaceable": false, @@ -220512,7 +215942,7 @@ ] }, { - "id": 20541, + "id": 20122, "luminance": 0, "opaque": true, "replaceable": false, @@ -220525,7 +215955,7 @@ ] }, { - "id": 20542, + "id": 20123, "luminance": 0, "opaque": true, "replaceable": false, @@ -220537,7 +215967,7 @@ ] }, { - "id": 20543, + "id": 20124, "luminance": 0, "opaque": true, "replaceable": false, @@ -220550,7 +215980,7 @@ ] }, { - "id": 20544, + "id": 20125, "luminance": 0, "opaque": true, "replaceable": false, @@ -220563,7 +215993,7 @@ ] }, { - "id": 20545, + "id": 20126, "luminance": 0, "opaque": true, "replaceable": false, @@ -220573,7 +216003,7 @@ ] }, { - "id": 20546, + "id": 20127, "luminance": 0, "opaque": true, "replaceable": false, @@ -220584,7 +216014,7 @@ ] }, { - "id": 20547, + "id": 20128, "luminance": 0, "opaque": true, "replaceable": false, @@ -220595,7 +216025,7 @@ ] }, { - "id": 20548, + "id": 20129, "luminance": 0, "opaque": true, "replaceable": false, @@ -220605,7 +216035,7 @@ ] }, { - "id": 20549, + "id": 20130, "luminance": 0, "opaque": true, "replaceable": false, @@ -220616,7 +216046,7 @@ ] }, { - "id": 20550, + "id": 20131, "luminance": 0, "opaque": true, "replaceable": false, @@ -220627,7 +216057,7 @@ ] }, { - "id": 20551, + "id": 20132, "luminance": 0, "opaque": true, "replaceable": false, @@ -220639,7 +216069,7 @@ ] }, { - "id": 20552, + "id": 20133, "luminance": 0, "opaque": true, "replaceable": false, @@ -220652,7 +216082,7 @@ ] }, { - "id": 20553, + "id": 20134, "luminance": 0, "opaque": true, "replaceable": false, @@ -220665,7 +216095,7 @@ ] }, { - "id": 20554, + "id": 20135, "luminance": 0, "opaque": true, "replaceable": false, @@ -220677,7 +216107,7 @@ ] }, { - "id": 20555, + "id": 20136, "luminance": 0, "opaque": true, "replaceable": false, @@ -220690,7 +216120,7 @@ ] }, { - "id": 20556, + "id": 20137, "luminance": 0, "opaque": true, "replaceable": false, @@ -220703,7 +216133,7 @@ ] }, { - "id": 20557, + "id": 20138, "luminance": 0, "opaque": true, "replaceable": false, @@ -220713,7 +216143,7 @@ ] }, { - "id": 20558, + "id": 20139, "luminance": 0, "opaque": true, "replaceable": false, @@ -220724,7 +216154,7 @@ ] }, { - "id": 20559, + "id": 20140, "luminance": 0, "opaque": true, "replaceable": false, @@ -220735,7 +216165,7 @@ ] }, { - "id": 20560, + "id": 20141, "luminance": 0, "opaque": true, "replaceable": false, @@ -220745,7 +216175,7 @@ ] }, { - "id": 20561, + "id": 20142, "luminance": 0, "opaque": true, "replaceable": false, @@ -220756,7 +216186,7 @@ ] }, { - "id": 20562, + "id": 20143, "luminance": 0, "opaque": true, "replaceable": false, @@ -220769,15 +216199,987 @@ ] }, { - "id": 862, - "name": "chiseled_nether_bricks", - "translation_key": "block.minecraft.chiseled_nether_bricks", - "item_id": 344, + "id": 860, + "name": "gilded_blackstone", + "translation_key": "block.minecraft.gilded_blackstone", + "item_id": 1180, "properties": [], - "default_state_id": 20563, + "default_state_id": 20144, "states": [ { - "id": 20563, + "id": 20144, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 861, + "name": "polished_blackstone_stairs", + "translation_key": "block.minecraft.polished_blackstone_stairs", + "item_id": 1183, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20156, + "states": [ + { + "id": 20145, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 20146, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 20147, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 20148, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 20149, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 20150, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 20151, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 20152, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 20153, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 20154, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 20155, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 20156, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 20157, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 20158, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 20159, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 20160, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 20161, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 20162, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 20163, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 20164, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 20165, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 20166, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 20167, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 20168, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 20169, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 20170, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 20171, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 20172, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 20173, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 20174, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 20175, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 20176, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 20177, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 20178, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 20179, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 20180, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 20181, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 20182, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 20183, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 20184, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 20185, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 20186, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 20187, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 20188, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 20189, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 20190, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 20191, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 20192, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 20193, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 20194, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 20195, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 20196, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 20197, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 20198, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 20199, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 20200, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 20201, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 20202, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 20203, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 20204, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 20205, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 20206, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 20207, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 20208, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 20209, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 20210, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 20211, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 20212, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 20213, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 20214, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 20215, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 20216, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 20217, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 20218, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 20219, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 20220, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 20221, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 20222, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 20223, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 20224, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 862, + "name": "polished_blackstone_slab", + "translation_key": "block.minecraft.polished_blackstone_slab", + "item_id": 1182, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20228, + "states": [ + { + "id": 20225, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 20226, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 20227, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 20228, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 20229, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 20230, "luminance": 0, "opaque": true, "replaceable": false, @@ -220789,33 +217191,3862 @@ }, { "id": 863, - "name": "cracked_nether_bricks", - "translation_key": "block.minecraft.cracked_nether_bricks", - "item_id": 343, - "properties": [], - "default_state_id": 20564, + "name": "polished_blackstone_pressure_plate", + "translation_key": "block.minecraft.polished_blackstone_pressure_plate", + "item_id": 674, + "properties": [ + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20232, "states": [ + { + "id": 20231, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20232, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 864, + "name": "polished_blackstone_button", + "translation_key": "block.minecraft.polished_blackstone_button", + "item_id": 661, + "properties": [ + { + "name": "face", + "values": [ + "floor", + "wall", + "ceiling" + ] + }, + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "powered", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20242, + "states": [ + { + "id": 20233, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20234, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20235, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20236, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20237, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20238, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20239, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20240, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20241, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20242, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20243, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20244, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20245, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20246, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20247, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20248, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20249, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20250, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20251, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20252, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20253, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20254, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20255, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20256, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [] + } + ] + }, + { + "id": 865, + "name": "polished_blackstone_wall", + "translation_key": "block.minecraft.polished_blackstone_wall", + "item_id": 391, + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 20260, + "states": [ + { + "id": 20257, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140 + ] + }, + { + "id": 20258, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 20259, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 20260, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140 + ] + }, + { + "id": 20261, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 20262, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 20263, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20264, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 20265, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 20266, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 20267, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 20268, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 20269, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 20270, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 20271, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 20272, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 20273, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 20274, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 20275, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 20276, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 20277, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 20278, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 20279, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 20280, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 20281, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 20282, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 20283, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 20284, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 20285, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 20286, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 20287, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 20288, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 20289, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 20290, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 20291, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 20292, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 20293, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 20294, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 20295, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 20296, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 20297, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 20298, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 20299, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20300, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 20301, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 20302, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20303, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 20304, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 20305, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 20306, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20307, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20308, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 20309, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20310, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20311, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20312, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20313, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20314, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20315, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20316, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20317, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 20318, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20319, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20320, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 20321, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20322, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20323, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20324, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20325, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20326, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20327, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20328, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20329, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 20330, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 20331, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 20332, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 20333, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 20334, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 20335, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20336, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 20337, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 20338, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 20339, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 20340, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 20341, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 20342, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20343, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20344, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 20345, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20346, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20347, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20348, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20349, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20350, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20351, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20352, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20353, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 20354, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20355, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20356, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 20357, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20358, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20359, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20360, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20361, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20362, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 20363, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20364, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 20365, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 20366, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 20367, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 20368, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 20369, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 20370, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 20371, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 20372, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 20373, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 20374, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 20375, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 20376, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 20377, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 20378, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20379, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20380, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 20381, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20382, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20383, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 20384, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20385, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20386, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 20387, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20388, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20389, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 20390, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20391, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20392, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 20393, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20394, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20395, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 20396, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20397, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20398, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 20399, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20400, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20401, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 20402, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20403, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20404, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 20405, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20406, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20407, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 20408, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20409, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20410, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 20411, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20412, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20413, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20414, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20415, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20416, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20417, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20418, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20419, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20420, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20421, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20422, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20423, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20424, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20425, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20426, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20427, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20428, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20429, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20430, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20431, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20432, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20433, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20434, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20435, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20436, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20437, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 20438, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20439, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20440, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 20441, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20442, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20443, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 20444, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20445, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20446, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 20447, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20448, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20449, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20450, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20451, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20452, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20453, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20454, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20455, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20456, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20457, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20458, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20459, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20460, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20461, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20462, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20463, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20464, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20465, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20466, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20467, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20468, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20469, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20470, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20471, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20472, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20473, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 20474, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 20475, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 20476, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 20477, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 20478, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 20479, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 20480, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 20481, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 20482, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 20483, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 20484, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 20485, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 20486, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20487, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20488, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 20489, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20490, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20491, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 20492, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20493, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20494, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 20495, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20496, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20497, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 20498, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20499, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20500, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 20501, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20502, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 20503, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 20504, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20505, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20506, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 20507, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20508, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 20509, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 20510, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20511, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20512, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 20513, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20514, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20515, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 20516, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20517, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20518, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 20519, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20520, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20521, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20522, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20523, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20524, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20525, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20526, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20527, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20528, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20529, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20530, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20531, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20532, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20533, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20534, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20535, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20536, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20537, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20538, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20539, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20540, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20541, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20542, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20543, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20544, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20545, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 20546, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20547, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20548, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 20549, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20550, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 20551, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 20552, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20553, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20554, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 20555, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20556, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 20557, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20558, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20559, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20560, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20561, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20562, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20563, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, { "id": 20564, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 153, + 150, + 147 + ] + }, + { + "id": 20565, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20566, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20567, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20568, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20569, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20570, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20571, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20572, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 20573, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20574, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 20575, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20576, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20577, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20578, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 20579, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 20580, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 ] } ] }, { - "id": 864, - "name": "quartz_bricks", - "translation_key": "block.minecraft.quartz_bricks", - "item_id": 400, + "id": 866, + "name": "chiseled_nether_bricks", + "translation_key": "block.minecraft.chiseled_nether_bricks", + "item_id": 346, "properties": [], - "default_state_id": 20565, + "default_state_id": 20581, "states": [ { - "id": 20565, + "id": 20581, "luminance": 0, "opaque": true, "replaceable": false, @@ -220826,1077 +221057,47 @@ ] }, { - "id": 865, - "name": "candle", - "translation_key": "block.minecraft.candle", - "item_id": 1184, - "properties": [ - { - "name": "candles", - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20569, - "states": [ - { - "id": 20566, - "luminance": 3, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20567, - "luminance": 3, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20568, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20569, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20570, - "luminance": 6, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20571, - "luminance": 6, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20572, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20573, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20574, - "luminance": 9, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20575, - "luminance": 9, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20576, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20577, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20578, - "luminance": 12, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20579, - "luminance": 12, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20580, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20581, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - } - ] - }, - { - "id": 866, - "name": "white_candle", - "translation_key": "block.minecraft.white_candle", - "item_id": 1185, - "properties": [ - { - "name": "candles", - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20585, + "id": 867, + "name": "cracked_nether_bricks", + "translation_key": "block.minecraft.cracked_nether_bricks", + "item_id": 345, + "properties": [], + "default_state_id": 20582, "states": [ { "id": 20582, - "luminance": 3, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20583, - "luminance": 3, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20584, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 301 - ] - }, - { - "id": 20585, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20586, - "luminance": 6, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20587, - "luminance": 6, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20588, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20589, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20590, - "luminance": 9, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20591, - "luminance": 9, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20592, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20593, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20594, - "luminance": 12, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20595, - "luminance": 12, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20596, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20597, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - } - ] - }, - { - "id": 867, - "name": "orange_candle", - "translation_key": "block.minecraft.orange_candle", - "item_id": 1186, - "properties": [ - { - "name": "candles", - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20601, - "states": [ - { - "id": 20598, - "luminance": 3, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20599, - "luminance": 3, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20600, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20601, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20602, - "luminance": 6, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20603, - "luminance": 6, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20604, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20605, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20606, - "luminance": 9, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20607, - "luminance": 9, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20608, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20609, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20610, - "luminance": 12, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20611, - "luminance": 12, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20612, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20613, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 + 0 ] } ] }, { "id": 868, - "name": "magenta_candle", - "translation_key": "block.minecraft.magenta_candle", - "item_id": 1187, - "properties": [ - { - "name": "candles", - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20617, + "name": "quartz_bricks", + "translation_key": "block.minecraft.quartz_bricks", + "item_id": 402, + "properties": [], + "default_state_id": 20583, "states": [ { - "id": 20614, - "luminance": 3, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20615, - "luminance": 3, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20616, + "id": 20583, "luminance": 0, - "opaque": false, + "opaque": true, "replaceable": false, "collision_shapes": [ - 301 - ] - }, - { - "id": 20617, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20618, - "luminance": 6, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20619, - "luminance": 6, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20620, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20621, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20622, - "luminance": 9, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20623, - "luminance": 9, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20624, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20625, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20626, - "luminance": 12, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20627, - "luminance": 12, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20628, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20629, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 + 0 ] } ] }, { "id": 869, - "name": "light_blue_candle", - "translation_key": "block.minecraft.light_blue_candle", - "item_id": 1188, - "properties": [ - { - "name": "candles", - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20633, - "states": [ - { - "id": 20630, - "luminance": 3, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20631, - "luminance": 3, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20632, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20633, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20634, - "luminance": 6, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20635, - "luminance": 6, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20636, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20637, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20638, - "luminance": 9, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20639, - "luminance": 9, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20640, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20641, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20642, - "luminance": 12, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20643, - "luminance": 12, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20644, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20645, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - } - ] - }, - { - "id": 870, - "name": "yellow_candle", - "translation_key": "block.minecraft.yellow_candle", - "item_id": 1189, - "properties": [ - { - "name": "candles", - "values": [ - "1", - "2", - "3", - "4" - ] - }, - { - "name": "lit", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20649, - "states": [ - { - "id": 20646, - "luminance": 3, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20647, - "luminance": 3, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20648, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20649, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 301 - ] - }, - { - "id": 20650, - "luminance": 6, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20651, - "luminance": 6, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20652, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20653, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 302 - ] - }, - { - "id": 20654, - "luminance": 9, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20655, - "luminance": 9, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20656, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20657, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 303 - ] - }, - { - "id": 20658, - "luminance": 12, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20659, - "luminance": 12, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20660, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - }, - { - "id": 20661, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 304 - ] - } - ] - }, - { - "id": 871, - "name": "lime_candle", - "translation_key": "block.minecraft.lime_candle", + "name": "candle", + "translation_key": "block.minecraft.candle", "item_id": 1190, "properties": [ { @@ -221923,158 +221124,158 @@ ] } ], - "default_state_id": 20665, + "default_state_id": 20587, "states": [ { - "id": 20662, + "id": 20584, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20663, + "id": 20585, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20664, + "id": 20586, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20665, + "id": 20587, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20666, + "id": 20588, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20667, + "id": 20589, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20668, + "id": 20590, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20669, + "id": 20591, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20670, + "id": 20592, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20671, + "id": 20593, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20672, + "id": 20594, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20673, + "id": 20595, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20674, + "id": 20596, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20675, + "id": 20597, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20676, + "id": 20598, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20677, + "id": 20599, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] } ] }, { - "id": 872, - "name": "pink_candle", - "translation_key": "block.minecraft.pink_candle", + "id": 870, + "name": "white_candle", + "translation_key": "block.minecraft.white_candle", "item_id": 1191, "properties": [ { @@ -222101,158 +221302,158 @@ ] } ], - "default_state_id": 20681, + "default_state_id": 20603, "states": [ { - "id": 20678, + "id": 20600, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20679, + "id": 20601, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20680, + "id": 20602, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20681, + "id": 20603, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20682, + "id": 20604, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20683, + "id": 20605, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20684, + "id": 20606, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20685, + "id": 20607, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20686, + "id": 20608, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20687, + "id": 20609, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20688, + "id": 20610, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20689, + "id": 20611, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20690, + "id": 20612, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20691, + "id": 20613, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20692, + "id": 20614, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20693, + "id": 20615, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] } ] }, { - "id": 873, - "name": "gray_candle", - "translation_key": "block.minecraft.gray_candle", + "id": 871, + "name": "orange_candle", + "translation_key": "block.minecraft.orange_candle", "item_id": 1192, "properties": [ { @@ -222279,158 +221480,158 @@ ] } ], - "default_state_id": 20697, + "default_state_id": 20619, "states": [ { - "id": 20694, + "id": 20616, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20695, + "id": 20617, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20696, + "id": 20618, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20697, + "id": 20619, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20698, + "id": 20620, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20699, + "id": 20621, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20700, + "id": 20622, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20701, + "id": 20623, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20702, + "id": 20624, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20703, + "id": 20625, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20704, + "id": 20626, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20705, + "id": 20627, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20706, + "id": 20628, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20707, + "id": 20629, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20708, + "id": 20630, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20709, + "id": 20631, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] } ] }, { - "id": 874, - "name": "light_gray_candle", - "translation_key": "block.minecraft.light_gray_candle", + "id": 872, + "name": "magenta_candle", + "translation_key": "block.minecraft.magenta_candle", "item_id": 1193, "properties": [ { @@ -222457,158 +221658,158 @@ ] } ], - "default_state_id": 20713, + "default_state_id": 20635, "states": [ { - "id": 20710, + "id": 20632, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20711, + "id": 20633, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20712, + "id": 20634, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20713, + "id": 20635, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20714, + "id": 20636, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20715, + "id": 20637, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20716, + "id": 20638, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20717, + "id": 20639, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20718, + "id": 20640, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20719, + "id": 20641, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20720, + "id": 20642, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20721, + "id": 20643, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20722, + "id": 20644, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20723, + "id": 20645, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20724, + "id": 20646, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20725, + "id": 20647, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] } ] }, { - "id": 875, - "name": "cyan_candle", - "translation_key": "block.minecraft.cyan_candle", + "id": 873, + "name": "light_blue_candle", + "translation_key": "block.minecraft.light_blue_candle", "item_id": 1194, "properties": [ { @@ -222635,158 +221836,158 @@ ] } ], - "default_state_id": 20729, + "default_state_id": 20651, "states": [ { - "id": 20726, + "id": 20648, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20727, + "id": 20649, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20728, + "id": 20650, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20729, + "id": 20651, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20730, + "id": 20652, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20731, + "id": 20653, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20732, + "id": 20654, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20733, + "id": 20655, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20734, + "id": 20656, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20735, + "id": 20657, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20736, + "id": 20658, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20737, + "id": 20659, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20738, + "id": 20660, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20739, + "id": 20661, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20740, + "id": 20662, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20741, + "id": 20663, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] } ] }, { - "id": 876, - "name": "purple_candle", - "translation_key": "block.minecraft.purple_candle", + "id": 874, + "name": "yellow_candle", + "translation_key": "block.minecraft.yellow_candle", "item_id": 1195, "properties": [ { @@ -222813,158 +222014,158 @@ ] } ], - "default_state_id": 20745, + "default_state_id": 20667, "states": [ { - "id": 20742, + "id": 20664, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20743, + "id": 20665, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20744, + "id": 20666, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20745, + "id": 20667, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20746, + "id": 20668, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20747, + "id": 20669, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20748, + "id": 20670, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20749, + "id": 20671, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20750, + "id": 20672, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20751, + "id": 20673, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20752, + "id": 20674, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20753, + "id": 20675, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20754, + "id": 20676, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20755, + "id": 20677, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20756, + "id": 20678, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20757, + "id": 20679, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] } ] }, { - "id": 877, - "name": "blue_candle", - "translation_key": "block.minecraft.blue_candle", + "id": 875, + "name": "lime_candle", + "translation_key": "block.minecraft.lime_candle", "item_id": 1196, "properties": [ { @@ -222991,158 +222192,158 @@ ] } ], - "default_state_id": 20761, + "default_state_id": 20683, "states": [ { - "id": 20758, + "id": 20680, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20759, + "id": 20681, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20760, + "id": 20682, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20761, + "id": 20683, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20762, + "id": 20684, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20763, + "id": 20685, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20764, + "id": 20686, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20765, + "id": 20687, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20766, + "id": 20688, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20767, + "id": 20689, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20768, + "id": 20690, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20769, + "id": 20691, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20770, + "id": 20692, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20771, + "id": 20693, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20772, + "id": 20694, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20773, + "id": 20695, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] } ] }, { - "id": 878, - "name": "brown_candle", - "translation_key": "block.minecraft.brown_candle", + "id": 876, + "name": "pink_candle", + "translation_key": "block.minecraft.pink_candle", "item_id": 1197, "properties": [ { @@ -223169,158 +222370,158 @@ ] } ], - "default_state_id": 20777, + "default_state_id": 20699, "states": [ { - "id": 20774, + "id": 20696, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20775, + "id": 20697, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20776, + "id": 20698, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20777, + "id": 20699, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20778, + "id": 20700, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20779, + "id": 20701, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20780, + "id": 20702, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20781, + "id": 20703, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20782, + "id": 20704, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20783, + "id": 20705, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20784, + "id": 20706, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20785, + "id": 20707, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20786, + "id": 20708, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20787, + "id": 20709, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20788, + "id": 20710, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20789, + "id": 20711, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] } ] }, { - "id": 879, - "name": "green_candle", - "translation_key": "block.minecraft.green_candle", + "id": 877, + "name": "gray_candle", + "translation_key": "block.minecraft.gray_candle", "item_id": 1198, "properties": [ { @@ -223347,158 +222548,158 @@ ] } ], - "default_state_id": 20793, + "default_state_id": 20715, "states": [ { - "id": 20790, + "id": 20712, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20791, + "id": 20713, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20792, + "id": 20714, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20793, + "id": 20715, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20794, + "id": 20716, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20795, + "id": 20717, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20796, + "id": 20718, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20797, + "id": 20719, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20798, + "id": 20720, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20799, + "id": 20721, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20800, + "id": 20722, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20801, + "id": 20723, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20802, + "id": 20724, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20803, + "id": 20725, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20804, + "id": 20726, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20805, + "id": 20727, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] } ] }, { - "id": 880, - "name": "red_candle", - "translation_key": "block.minecraft.red_candle", + "id": 878, + "name": "light_gray_candle", + "translation_key": "block.minecraft.light_gray_candle", "item_id": 1199, "properties": [ { @@ -223525,158 +222726,158 @@ ] } ], - "default_state_id": 20809, + "default_state_id": 20731, "states": [ { - "id": 20806, + "id": 20728, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20807, + "id": 20729, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20808, + "id": 20730, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20809, + "id": 20731, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20810, + "id": 20732, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20811, + "id": 20733, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20812, + "id": 20734, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20813, + "id": 20735, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20814, + "id": 20736, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20815, + "id": 20737, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20816, + "id": 20738, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20817, + "id": 20739, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20818, + "id": 20740, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20819, + "id": 20741, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20820, + "id": 20742, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20821, + "id": 20743, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] } ] }, { - "id": 881, - "name": "black_candle", - "translation_key": "block.minecraft.black_candle", + "id": 879, + "name": "cyan_candle", + "translation_key": "block.minecraft.cyan_candle", "item_id": 1200, "properties": [ { @@ -223703,136 +222904,206 @@ ] } ], - "default_state_id": 20825, + "default_state_id": 20747, "states": [ { - "id": 20822, + "id": 20744, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20823, + "id": 20745, "luminance": 3, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20824, + "id": 20746, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20825, + "id": 20747, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 301 + 304 ] }, { - "id": 20826, + "id": 20748, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20827, + "id": 20749, "luminance": 6, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20828, + "id": 20750, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20829, + "id": 20751, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 302 + 305 ] }, { - "id": 20830, + "id": 20752, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20831, + "id": 20753, "luminance": 9, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20832, + "id": 20754, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20833, + "id": 20755, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 303 + 306 ] }, { - "id": 20834, + "id": 20756, "luminance": 12, "opaque": false, "replaceable": false, "collision_shapes": [ - 304 + 307 ] }, { - "id": 20835, + "id": 20757, "luminance": 12, "opaque": false, "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20758, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20759, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + } + ] + }, + { + "id": 880, + "name": "purple_candle", + "translation_key": "block.minecraft.purple_candle", + "item_id": 1201, + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20763, + "states": [ + { + "id": 20760, + "luminance": 3, + "opaque": false, + "replaceable": false, "collision_shapes": [ 304 ] }, { - "id": 20836, + "id": 20761, + "luminance": 3, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20762, "luminance": 0, "opaque": false, "replaceable": false, @@ -223841,362 +223112,1018 @@ ] }, { - "id": 20837, + "id": 20763, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ 304 ] + }, + { + "id": 20764, + "luminance": 6, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20765, + "luminance": 6, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20766, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20767, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20768, + "luminance": 9, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20769, + "luminance": 9, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20770, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20771, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20772, + "luminance": 12, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20773, + "luminance": 12, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20774, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20775, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + } + ] + }, + { + "id": 881, + "name": "blue_candle", + "translation_key": "block.minecraft.blue_candle", + "item_id": 1202, + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20779, + "states": [ + { + "id": 20776, + "luminance": 3, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20777, + "luminance": 3, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20778, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20779, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20780, + "luminance": 6, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20781, + "luminance": 6, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20782, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20783, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20784, + "luminance": 9, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20785, + "luminance": 9, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20786, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20787, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20788, + "luminance": 12, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20789, + "luminance": 12, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20790, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20791, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] } ] }, { "id": 882, - "name": "candle_cake", - "translation_key": "block.minecraft.candle_cake", - "item_id": 0, + "name": "brown_candle", + "translation_key": "block.minecraft.brown_candle", + "item_id": 1203, "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, { "name": "lit", "values": [ "true", "false" ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] } ], - "default_state_id": 20839, + "default_state_id": 20795, "states": [ { - "id": 20838, + "id": 20792, "luminance": 3, - "opaque": true, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20793, + "luminance": 3, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20794, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20795, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20796, + "luminance": 6, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, 305 ] }, { - "id": 20839, - "luminance": 0, - "opaque": true, + "id": 20797, + "luminance": 6, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, 305 ] + }, + { + "id": 20798, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20799, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20800, + "luminance": 9, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20801, + "luminance": 9, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20802, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20803, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20804, + "luminance": 12, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20805, + "luminance": 12, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20806, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20807, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] } ] }, { "id": 883, - "name": "white_candle_cake", - "translation_key": "block.minecraft.white_candle_cake", - "item_id": 0, + "name": "green_candle", + "translation_key": "block.minecraft.green_candle", + "item_id": 1204, "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, { "name": "lit", "values": [ "true", "false" ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] } ], - "default_state_id": 20841, + "default_state_id": 20811, "states": [ { - "id": 20840, + "id": 20808, "luminance": 3, - "opaque": true, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20809, + "luminance": 3, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20810, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20811, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20812, + "luminance": 6, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, 305 ] }, { - "id": 20841, - "luminance": 0, - "opaque": true, + "id": 20813, + "luminance": 6, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, 305 ] + }, + { + "id": 20814, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20815, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20816, + "luminance": 9, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20817, + "luminance": 9, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20818, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20819, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20820, + "luminance": 12, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20821, + "luminance": 12, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20822, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20823, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] } ] }, { "id": 884, - "name": "orange_candle_cake", - "translation_key": "block.minecraft.orange_candle_cake", - "item_id": 0, + "name": "red_candle", + "translation_key": "block.minecraft.red_candle", + "item_id": 1205, "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, { "name": "lit", "values": [ "true", "false" ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20827, + "states": [ + { + "id": 20824, + "luminance": 3, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20825, + "luminance": 3, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20826, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20827, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20828, + "luminance": 6, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20829, + "luminance": 6, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20830, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20831, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 305 + ] + }, + { + "id": 20832, + "luminance": 9, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20833, + "luminance": 9, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20834, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20835, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 + ] + }, + { + "id": 20836, + "luminance": 12, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20837, + "luminance": 12, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20838, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + }, + { + "id": 20839, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 307 + ] + } + ] + }, + { + "id": 885, + "name": "black_candle", + "translation_key": "block.minecraft.black_candle", + "item_id": 1206, + "properties": [ + { + "name": "candles", + "values": [ + "1", + "2", + "3", + "4" + ] + }, + { + "name": "lit", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] } ], "default_state_id": 20843, "states": [ { - "id": 20842, + "id": 20840, "luminance": 3, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, - 305 + 304 + ] + }, + { + "id": 20841, + "luminance": 3, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 + ] + }, + { + "id": 20842, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 304 ] }, { "id": 20843, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, - 305 + 304 ] - } - ] - }, - { - "id": 885, - "name": "magenta_candle_cake", - "translation_key": "block.minecraft.magenta_candle_cake", - "item_id": 0, - "properties": [ - { - "name": "lit", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20845, - "states": [ + }, { "id": 20844, - "luminance": 3, - "opaque": true, + "luminance": 6, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, 305 ] }, { "id": 20845, - "luminance": 0, - "opaque": true, + "luminance": 6, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, 305 ] - } - ] - }, - { - "id": 886, - "name": "light_blue_candle_cake", - "translation_key": "block.minecraft.light_blue_candle_cake", - "item_id": 0, - "properties": [ - { - "name": "lit", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20847, - "states": [ + }, { "id": 20846, - "luminance": 3, - "opaque": true, + "luminance": 0, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, 305 ] }, { "id": 20847, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, - 305 - ] - } - ] - }, - { - "id": 887, - "name": "yellow_candle_cake", - "translation_key": "block.minecraft.yellow_candle_cake", - "item_id": 0, - "properties": [ - { - "name": "lit", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20849, - "states": [ - { - "id": 20848, - "luminance": 3, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 85, 305 ] }, { - "id": 20849, - "luminance": 0, - "opaque": true, + "id": 20848, + "luminance": 9, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, - 305 + 306 ] - } - ] - }, - { - "id": 888, - "name": "lime_candle_cake", - "translation_key": "block.minecraft.lime_candle_cake", - "item_id": 0, - "properties": [ + }, { - "name": "lit", - "values": [ - "true", - "false" + "id": 20849, + "luminance": 9, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 306 ] - } - ], - "default_state_id": 20851, - "states": [ + }, { "id": 20850, - "luminance": 3, - "opaque": true, + "luminance": 0, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, - 305 + 306 ] }, { "id": 20851, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, - 305 + 306 ] - } - ] - }, - { - "id": 889, - "name": "pink_candle_cake", - "translation_key": "block.minecraft.pink_candle_cake", - "item_id": 0, - "properties": [ - { - "name": "lit", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20853, - "states": [ + }, { "id": 20852, - "luminance": 3, - "opaque": true, + "luminance": 12, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, - 305 + 307 ] }, { "id": 20853, - "luminance": 0, - "opaque": true, + "luminance": 12, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, - 305 + 307 ] - } - ] - }, - { - "id": 890, - "name": "gray_candle_cake", - "translation_key": "block.minecraft.gray_candle_cake", - "item_id": 0, - "properties": [ - { - "name": "lit", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20855, - "states": [ + }, { "id": 20854, - "luminance": 3, - "opaque": true, + "luminance": 0, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, - 305 + 307 ] }, { "id": 20855, "luminance": 0, - "opaque": true, + "opaque": false, "replaceable": false, "collision_shapes": [ - 85, - 305 + 307 ] } ] }, { - "id": 891, - "name": "light_gray_candle_cake", - "translation_key": "block.minecraft.light_gray_candle_cake", + "id": 886, + "name": "candle_cake", + "translation_key": "block.minecraft.candle_cake", "item_id": 0, "properties": [ { @@ -224216,7 +224143,7 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] }, { @@ -224226,15 +224153,15 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] } ] }, { - "id": 892, - "name": "cyan_candle_cake", - "translation_key": "block.minecraft.cyan_candle_cake", + "id": 887, + "name": "white_candle_cake", + "translation_key": "block.minecraft.white_candle_cake", "item_id": 0, "properties": [ { @@ -224254,7 +224181,7 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] }, { @@ -224264,15 +224191,15 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] } ] }, { - "id": 893, - "name": "purple_candle_cake", - "translation_key": "block.minecraft.purple_candle_cake", + "id": 888, + "name": "orange_candle_cake", + "translation_key": "block.minecraft.orange_candle_cake", "item_id": 0, "properties": [ { @@ -224292,7 +224219,7 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] }, { @@ -224302,15 +224229,15 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] } ] }, { - "id": 894, - "name": "blue_candle_cake", - "translation_key": "block.minecraft.blue_candle_cake", + "id": 889, + "name": "magenta_candle_cake", + "translation_key": "block.minecraft.magenta_candle_cake", "item_id": 0, "properties": [ { @@ -224330,7 +224257,7 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] }, { @@ -224340,15 +224267,15 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] } ] }, { - "id": 895, - "name": "brown_candle_cake", - "translation_key": "block.minecraft.brown_candle_cake", + "id": 890, + "name": "light_blue_candle_cake", + "translation_key": "block.minecraft.light_blue_candle_cake", "item_id": 0, "properties": [ { @@ -224368,7 +224295,7 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] }, { @@ -224378,15 +224305,15 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] } ] }, { - "id": 896, - "name": "green_candle_cake", - "translation_key": "block.minecraft.green_candle_cake", + "id": 891, + "name": "yellow_candle_cake", + "translation_key": "block.minecraft.yellow_candle_cake", "item_id": 0, "properties": [ { @@ -224406,7 +224333,7 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] }, { @@ -224416,15 +224343,15 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] } ] }, { - "id": 897, - "name": "red_candle_cake", - "translation_key": "block.minecraft.red_candle_cake", + "id": 892, + "name": "lime_candle_cake", + "translation_key": "block.minecraft.lime_candle_cake", "item_id": 0, "properties": [ { @@ -224444,7 +224371,7 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] }, { @@ -224454,15 +224381,15 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] } ] }, { - "id": 898, - "name": "black_candle_cake", - "translation_key": "block.minecraft.black_candle_cake", + "id": 893, + "name": "pink_candle_cake", + "translation_key": "block.minecraft.pink_candle_cake", "item_id": 0, "properties": [ { @@ -224482,7 +224409,7 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] }, { @@ -224492,68 +224419,209 @@ "replaceable": false, "collision_shapes": [ 85, - 305 + 308 ] } ] }, { - "id": 899, - "name": "amethyst_block", - "translation_key": "block.minecraft.amethyst_block", - "item_id": 71, - "properties": [], - "default_state_id": 20872, + "id": 894, + "name": "gray_candle_cake", + "translation_key": "block.minecraft.gray_candle_cake", + "item_id": 0, + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20873, "states": [ { "id": 20872, - "luminance": 0, + "luminance": 3, "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 85, + 308 ] - } - ] - }, - { - "id": 900, - "name": "budding_amethyst", - "translation_key": "block.minecraft.budding_amethyst", - "item_id": 72, - "properties": [], - "default_state_id": 20873, - "states": [ + }, { "id": 20873, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 85, + 308 ] } ] }, { - "id": 901, - "name": "amethyst_cluster", - "translation_key": "block.minecraft.amethyst_cluster", - "item_id": 1204, + "id": 895, + "name": "light_gray_candle_cake", + "translation_key": "block.minecraft.light_gray_candle_cake", + "item_id": 0, "properties": [ { - "name": "facing", + "name": "lit", "values": [ - "north", - "east", - "south", - "west", - "up", - "down" + "true", + "false" + ] + } + ], + "default_state_id": 20875, + "states": [ + { + "id": 20874, + "luminance": 3, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 85, + 308 ] }, { - "name": "waterlogged", + "id": 20875, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 85, + 308 + ] + } + ] + }, + { + "id": 896, + "name": "cyan_candle_cake", + "translation_key": "block.minecraft.cyan_candle_cake", + "item_id": 0, + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20877, + "states": [ + { + "id": 20876, + "luminance": 3, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 85, + 308 + ] + }, + { + "id": 20877, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 85, + 308 + ] + } + ] + }, + { + "id": 897, + "name": "purple_candle_cake", + "translation_key": "block.minecraft.purple_candle_cake", + "item_id": 0, + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20879, + "states": [ + { + "id": 20878, + "luminance": 3, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 85, + 308 + ] + }, + { + "id": 20879, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 85, + 308 + ] + } + ] + }, + { + "id": 898, + "name": "blue_candle_cake", + "translation_key": "block.minecraft.blue_candle_cake", + "item_id": 0, + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20881, + "states": [ + { + "id": 20880, + "luminance": 3, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 85, + 308 + ] + }, + { + "id": 20881, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 85, + 308 + ] + } + ] + }, + { + "id": 899, + "name": "brown_candle_cake", + "translation_key": "block.minecraft.brown_candle_cake", + "item_id": 0, + "properties": [ + { + "name": "lit", "values": [ "true", "false" @@ -224562,395 +224630,185 @@ ], "default_state_id": 20883, "states": [ - { - "id": 20874, - "luminance": 5, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 306 - ] - }, - { - "id": 20875, - "luminance": 5, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 306 - ] - }, - { - "id": 20876, - "luminance": 5, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 307 - ] - }, - { - "id": 20877, - "luminance": 5, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 307 - ] - }, - { - "id": 20878, - "luminance": 5, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 308 - ] - }, - { - "id": 20879, - "luminance": 5, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 308 - ] - }, - { - "id": 20880, - "luminance": 5, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 309 - ] - }, - { - "id": 20881, - "luminance": 5, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 309 - ] - }, { "id": 20882, - "luminance": 5, - "opaque": false, + "luminance": 3, + "opaque": true, "replaceable": false, "collision_shapes": [ - 310 + 85, + 308 ] }, { "id": 20883, - "luminance": 5, - "opaque": false, + "luminance": 0, + "opaque": true, "replaceable": false, "collision_shapes": [ - 310 + 85, + 308 ] - }, + } + ] + }, + { + "id": 900, + "name": "green_candle_cake", + "translation_key": "block.minecraft.green_candle_cake", + "item_id": 0, + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20885, + "states": [ { "id": 20884, - "luminance": 5, - "opaque": false, + "luminance": 3, + "opaque": true, "replaceable": false, "collision_shapes": [ - 311 + 85, + 308 ] }, { "id": 20885, - "luminance": 5, - "opaque": false, + "luminance": 0, + "opaque": true, "replaceable": false, "collision_shapes": [ - 311 + 85, + 308 + ] + } + ] + }, + { + "id": 901, + "name": "red_candle_cake", + "translation_key": "block.minecraft.red_candle_cake", + "item_id": 0, + "properties": [ + { + "name": "lit", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20887, + "states": [ + { + "id": 20886, + "luminance": 3, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 85, + 308 + ] + }, + { + "id": 20887, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 85, + 308 ] } ] }, { "id": 902, - "name": "large_amethyst_bud", - "translation_key": "block.minecraft.large_amethyst_bud", - "item_id": 1203, + "name": "black_candle_cake", + "translation_key": "block.minecraft.black_candle_cake", + "item_id": 0, "properties": [ { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "waterlogged", + "name": "lit", "values": [ "true", "false" ] } ], - "default_state_id": 20895, + "default_state_id": 20889, "states": [ - { - "id": 20886, - "luminance": 4, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 312 - ] - }, - { - "id": 20887, - "luminance": 4, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 312 - ] - }, { "id": 20888, - "luminance": 4, - "opaque": false, + "luminance": 3, + "opaque": true, "replaceable": false, "collision_shapes": [ - 313 + 85, + 308 ] }, { "id": 20889, - "luminance": 4, - "opaque": false, + "luminance": 0, + "opaque": true, "replaceable": false, "collision_shapes": [ - 313 - ] - }, - { - "id": 20890, - "luminance": 4, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 314 - ] - }, - { - "id": 20891, - "luminance": 4, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 314 - ] - }, - { - "id": 20892, - "luminance": 4, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 315 - ] - }, - { - "id": 20893, - "luminance": 4, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 315 - ] - }, - { - "id": 20894, - "luminance": 4, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 316 - ] - }, - { - "id": 20895, - "luminance": 4, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 316 - ] - }, - { - "id": 20896, - "luminance": 4, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 317 - ] - }, - { - "id": 20897, - "luminance": 4, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 317 + 85, + 308 ] } ] }, { "id": 903, - "name": "medium_amethyst_bud", - "translation_key": "block.minecraft.medium_amethyst_bud", - "item_id": 1202, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "east", - "south", - "west", - "up", - "down" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 20907, + "name": "amethyst_block", + "translation_key": "block.minecraft.amethyst_block", + "item_id": 72, + "properties": [], + "default_state_id": 20890, "states": [ { - "id": 20898, - "luminance": 2, - "opaque": false, + "id": 20890, + "luminance": 0, + "opaque": true, "replaceable": false, "collision_shapes": [ - 318 - ] - }, - { - "id": 20899, - "luminance": 2, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 318 - ] - }, - { - "id": 20900, - "luminance": 2, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 319 - ] - }, - { - "id": 20901, - "luminance": 2, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 319 - ] - }, - { - "id": 20902, - "luminance": 2, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 320 - ] - }, - { - "id": 20903, - "luminance": 2, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 320 - ] - }, - { - "id": 20904, - "luminance": 2, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 321 - ] - }, - { - "id": 20905, - "luminance": 2, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 321 - ] - }, - { - "id": 20906, - "luminance": 2, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 322 - ] - }, - { - "id": 20907, - "luminance": 2, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 322 - ] - }, - { - "id": 20908, - "luminance": 2, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 323 - ] - }, - { - "id": 20909, - "luminance": 2, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 323 + 0 ] } ] }, { "id": 904, - "name": "small_amethyst_bud", - "translation_key": "block.minecraft.small_amethyst_bud", - "item_id": 1201, + "name": "budding_amethyst", + "translation_key": "block.minecraft.budding_amethyst", + "item_id": 73, + "properties": [], + "default_state_id": 20891, + "states": [ + { + "id": 20891, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 905, + "name": "amethyst_cluster", + "translation_key": "block.minecraft.amethyst_cluster", + "item_id": 1210, "properties": [ { "name": "facing", @@ -224971,147 +224829,539 @@ ] } ], - "default_state_id": 20919, + "default_state_id": 20901, "states": [ { - "id": 20910, - "luminance": 1, + "id": 20892, + "luminance": 5, "opaque": false, "replaceable": false, "collision_shapes": [ - 324 + 309 ] }, { - "id": 20911, - "luminance": 1, + "id": 20893, + "luminance": 5, "opaque": false, "replaceable": false, "collision_shapes": [ - 324 + 309 ] }, { - "id": 20912, - "luminance": 1, + "id": 20894, + "luminance": 5, "opaque": false, "replaceable": false, "collision_shapes": [ - 325 + 310 ] }, { - "id": 20913, - "luminance": 1, + "id": 20895, + "luminance": 5, "opaque": false, "replaceable": false, "collision_shapes": [ - 325 + 310 ] }, { - "id": 20914, - "luminance": 1, + "id": 20896, + "luminance": 5, "opaque": false, "replaceable": false, "collision_shapes": [ - 326 + 311 ] }, { - "id": 20915, - "luminance": 1, + "id": 20897, + "luminance": 5, "opaque": false, "replaceable": false, "collision_shapes": [ - 326 + 311 ] }, { - "id": 20916, - "luminance": 1, + "id": 20898, + "luminance": 5, "opaque": false, "replaceable": false, "collision_shapes": [ - 327 + 312 ] }, { - "id": 20917, - "luminance": 1, + "id": 20899, + "luminance": 5, "opaque": false, "replaceable": false, "collision_shapes": [ - 327 + 312 ] }, { - "id": 20918, - "luminance": 1, + "id": 20900, + "luminance": 5, "opaque": false, "replaceable": false, "collision_shapes": [ - 328 + 313 ] }, { - "id": 20919, - "luminance": 1, + "id": 20901, + "luminance": 5, "opaque": false, "replaceable": false, "collision_shapes": [ - 328 + 313 ] }, { - "id": 20920, - "luminance": 1, + "id": 20902, + "luminance": 5, "opaque": false, "replaceable": false, "collision_shapes": [ - 126 + 314 ] }, { - "id": 20921, - "luminance": 1, + "id": 20903, + "luminance": 5, "opaque": false, "replaceable": false, "collision_shapes": [ - 126 - ] - } - ] - }, - { - "id": 905, - "name": "tuff", - "translation_key": "block.minecraft.tuff", - "item_id": 12, - "properties": [], - "default_state_id": 20922, - "states": [ - { - "id": 20922, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 + 314 ] } ] }, { "id": 906, - "name": "calcite", - "translation_key": "block.minecraft.calcite", - "item_id": 11, - "properties": [], - "default_state_id": 20923, + "name": "large_amethyst_bud", + "translation_key": "block.minecraft.large_amethyst_bud", + "item_id": 1209, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20913, "states": [ + { + "id": 20904, + "luminance": 4, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 315 + ] + }, + { + "id": 20905, + "luminance": 4, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 315 + ] + }, + { + "id": 20906, + "luminance": 4, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 316 + ] + }, + { + "id": 20907, + "luminance": 4, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 316 + ] + }, + { + "id": 20908, + "luminance": 4, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 317 + ] + }, + { + "id": 20909, + "luminance": 4, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 317 + ] + }, + { + "id": 20910, + "luminance": 4, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 318 + ] + }, + { + "id": 20911, + "luminance": 4, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 318 + ] + }, + { + "id": 20912, + "luminance": 4, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 319 + ] + }, + { + "id": 20913, + "luminance": 4, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 319 + ] + }, + { + "id": 20914, + "luminance": 4, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 320 + ] + }, + { + "id": 20915, + "luminance": 4, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 320 + ] + } + ] + }, + { + "id": 907, + "name": "medium_amethyst_bud", + "translation_key": "block.minecraft.medium_amethyst_bud", + "item_id": 1208, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20925, + "states": [ + { + "id": 20916, + "luminance": 2, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 321 + ] + }, + { + "id": 20917, + "luminance": 2, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 321 + ] + }, + { + "id": 20918, + "luminance": 2, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 322 + ] + }, + { + "id": 20919, + "luminance": 2, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 322 + ] + }, + { + "id": 20920, + "luminance": 2, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 323 + ] + }, + { + "id": 20921, + "luminance": 2, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 323 + ] + }, + { + "id": 20922, + "luminance": 2, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 324 + ] + }, { "id": 20923, + "luminance": 2, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 324 + ] + }, + { + "id": 20924, + "luminance": 2, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 325 + ] + }, + { + "id": 20925, + "luminance": 2, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 325 + ] + }, + { + "id": 20926, + "luminance": 2, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 326 + ] + }, + { + "id": 20927, + "luminance": 2, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 326 + ] + } + ] + }, + { + "id": 908, + "name": "small_amethyst_bud", + "translation_key": "block.minecraft.small_amethyst_bud", + "item_id": 1207, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 20937, + "states": [ + { + "id": 20928, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 327 + ] + }, + { + "id": 20929, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 327 + ] + }, + { + "id": 20930, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 328 + ] + }, + { + "id": 20931, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 328 + ] + }, + { + "id": 20932, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 329 + ] + }, + { + "id": 20933, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 329 + ] + }, + { + "id": 20934, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 330 + ] + }, + { + "id": 20935, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 330 + ] + }, + { + "id": 20936, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 331 + ] + }, + { + "id": 20937, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 331 + ] + }, + { + "id": 20938, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 126 + ] + }, + { + "id": 20939, + "luminance": 1, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 126 + ] + } + ] + }, + { + "id": 909, + "name": "tuff", + "translation_key": "block.minecraft.tuff", + "item_id": 12, + "properties": [], + "default_state_id": 20940, + "states": [ + { + "id": 20940, "luminance": 0, "opaque": true, "replaceable": false, @@ -225122,15 +225372,34 @@ ] }, { - "id": 907, - "name": "tinted_glass", - "translation_key": "block.minecraft.tinted_glass", - "item_id": 166, + "id": 910, + "name": "calcite", + "translation_key": "block.minecraft.calcite", + "item_id": 11, "properties": [], - "default_state_id": 20924, + "default_state_id": 20941, "states": [ { - "id": 20924, + "id": 20941, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 911, + "name": "tinted_glass", + "translation_key": "block.minecraft.tinted_glass", + "item_id": 167, + "properties": [], + "default_state_id": 20942, + "states": [ + { + "id": 20942, "luminance": 0, "opaque": false, "replaceable": false, @@ -225141,15 +225410,15 @@ ] }, { - "id": 908, + "id": 912, "name": "powder_snow", "translation_key": "block.minecraft.powder_snow", - "item_id": 867, + "item_id": 871, "properties": [], - "default_state_id": 20925, + "default_state_id": 20943, "states": [ { - "id": 20925, + "id": 20943, "luminance": 0, "opaque": true, "replaceable": false, @@ -225158,10 +225427,10 @@ ] }, { - "id": 909, + "id": 913, "name": "sculk_sensor", "translation_key": "block.minecraft.sculk_sensor", - "item_id": 650, + "item_id": 653, "properties": [ { "name": "power", @@ -225200,188 +225469,8 @@ ] } ], - "default_state_id": 20927, + "default_state_id": 20945, "states": [ - { - "id": 20926, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20927, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20928, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20929, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20930, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20931, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20932, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20933, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20934, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20935, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20936, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20937, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20938, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20939, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20940, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20941, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20942, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, - { - "id": 20943, - "luminance": 1, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ], - "block_entity_type": 34 - }, { "id": 20944, "luminance": 1, @@ -226161,19 +226250,4095 @@ 51 ], "block_entity_type": 34 + }, + { + "id": 21022, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21023, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21024, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21025, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21026, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21027, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21028, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21029, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21030, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21031, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21032, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21033, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21034, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21035, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21036, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21037, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21038, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 + }, + { + "id": 21039, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 34 } ] }, { - "id": 910, - "name": "sculk", - "translation_key": "block.minecraft.sculk", - "item_id": 347, - "properties": [], - "default_state_id": 21022, + "id": 914, + "name": "calibrated_sculk_sensor", + "translation_key": "block.minecraft.calibrated_sculk_sensor", + "item_id": 654, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "power", + "values": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + { + "name": "sculk_sensor_phase", + "values": [ + "inactive", + "active", + "cooldown" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 21041, "states": [ { - "id": 21022, + "id": 21040, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21041, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21042, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21043, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21044, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21045, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21046, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21047, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21048, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21049, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21050, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21051, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21052, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21053, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21054, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21055, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21056, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21057, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21058, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21059, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21060, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21061, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21062, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21063, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21064, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21065, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21066, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21067, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21068, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21069, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21070, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21071, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21072, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21073, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21074, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21075, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21076, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21077, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21078, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21079, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21080, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21081, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21082, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21083, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21084, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21085, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21086, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21087, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21088, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21089, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21090, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21091, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21092, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21093, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21094, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21095, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21096, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21097, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21098, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21099, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21100, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21101, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21102, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21103, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21104, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21105, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21106, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21107, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21108, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21109, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21110, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21111, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21112, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21113, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21114, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21115, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21116, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21117, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21118, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21119, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21120, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21121, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21122, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21123, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21124, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21125, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21126, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21127, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21128, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21129, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21130, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21131, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21132, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21133, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21134, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21135, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21136, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21137, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21138, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21139, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21140, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21141, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21142, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21143, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21144, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21145, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21146, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21147, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21148, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21149, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21150, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21151, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21152, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21153, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21154, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21155, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21156, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21157, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21158, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21159, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21160, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21161, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21162, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21163, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21164, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21165, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21166, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21167, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21168, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21169, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21170, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21171, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21172, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21173, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21174, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21175, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21176, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21177, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21178, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21179, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21180, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21181, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21182, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21183, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21184, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21185, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21186, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21187, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21188, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21189, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21190, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21191, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21192, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21193, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21194, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21195, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21196, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21197, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21198, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21199, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21200, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21201, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21202, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21203, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21204, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21205, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21206, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21207, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21208, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21209, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21210, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21211, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21212, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21213, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21214, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21215, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21216, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21217, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21218, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21219, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21220, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21221, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21222, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21223, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21224, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21225, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21226, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21227, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21228, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21229, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21230, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21231, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21232, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21233, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21234, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21235, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21236, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21237, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21238, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21239, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21240, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21241, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21242, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21243, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21244, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21245, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21246, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21247, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21248, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21249, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21250, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21251, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21252, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21253, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21254, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21255, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21256, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21257, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21258, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21259, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21260, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21261, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21262, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21263, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21264, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21265, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21266, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21267, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21268, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21269, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21270, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21271, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21272, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21273, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21274, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21275, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21276, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21277, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21278, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21279, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21280, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21281, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21282, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21283, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21284, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21285, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21286, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21287, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21288, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21289, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21290, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21291, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21292, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21293, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21294, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21295, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21296, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21297, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21298, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21299, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21300, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21301, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21302, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21303, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21304, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21305, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21306, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21307, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21308, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21309, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21310, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21311, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21312, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21313, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21314, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21315, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21316, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21317, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21318, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21319, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21320, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21321, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21322, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21323, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21324, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21325, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21326, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21327, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21328, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21329, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21330, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21331, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21332, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21333, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21334, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21335, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21336, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21337, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21338, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21339, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21340, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21341, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21342, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21343, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21344, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21345, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21346, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21347, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21348, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21349, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21350, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21351, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21352, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21353, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21354, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21355, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21356, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21357, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21358, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21359, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21360, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21361, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21362, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21363, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21364, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21365, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21366, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21367, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21368, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21369, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21370, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21371, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21372, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21373, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21374, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21375, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21376, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21377, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21378, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21379, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21380, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21381, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21382, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21383, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21384, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21385, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21386, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21387, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21388, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21389, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21390, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21391, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21392, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21393, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21394, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21395, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21396, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21397, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21398, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21399, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21400, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21401, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21402, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21403, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21404, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21405, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21406, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21407, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21408, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21409, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21410, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21411, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21412, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21413, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21414, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21415, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21416, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21417, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21418, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21419, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21420, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21421, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21422, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + }, + { + "id": 21423, + "luminance": 1, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ], + "block_entity_type": 35 + } + ] + }, + { + "id": 915, + "name": "sculk", + "translation_key": "block.minecraft.sculk", + "item_id": 349, + "properties": [], + "default_state_id": 21424, + "states": [ + { + "id": 21424, "luminance": 0, "opaque": true, "replaceable": false, @@ -226184,10 +230349,10 @@ ] }, { - "id": 911, + "id": 916, "name": "sculk_vein", "translation_key": "block.minecraft.sculk_vein", - "item_id": 348, + "item_id": 350, "properties": [ { "name": "down", @@ -226239,899 +230404,899 @@ ] } ], - "default_state_id": 21150, + "default_state_id": 21552, "states": [ { - "id": 21023, + "id": 21425, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21024, + "id": 21426, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21025, + "id": 21427, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21026, + "id": 21428, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21027, + "id": 21429, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21028, + "id": 21430, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21029, + "id": 21431, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21030, + "id": 21432, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21031, + "id": 21433, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21032, + "id": 21434, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21033, + "id": 21435, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21034, + "id": 21436, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21035, + "id": 21437, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21036, + "id": 21438, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21037, + "id": 21439, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21038, + "id": 21440, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21039, + "id": 21441, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21040, + "id": 21442, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21041, + "id": 21443, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21042, + "id": 21444, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21043, + "id": 21445, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21044, + "id": 21446, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21045, + "id": 21447, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21046, + "id": 21448, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21047, + "id": 21449, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21048, + "id": 21450, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21049, + "id": 21451, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21050, + "id": 21452, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21051, + "id": 21453, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21052, + "id": 21454, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21053, + "id": 21455, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21054, + "id": 21456, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21055, + "id": 21457, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21056, + "id": 21458, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21057, + "id": 21459, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21058, + "id": 21460, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21059, + "id": 21461, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21060, + "id": 21462, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21061, + "id": 21463, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21062, + "id": 21464, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21063, + "id": 21465, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21064, + "id": 21466, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21065, + "id": 21467, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21066, + "id": 21468, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21067, + "id": 21469, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21068, + "id": 21470, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21069, + "id": 21471, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21070, + "id": 21472, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21071, + "id": 21473, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21072, + "id": 21474, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21073, + "id": 21475, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21074, + "id": 21476, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21075, + "id": 21477, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21076, + "id": 21478, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21077, + "id": 21479, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21078, + "id": 21480, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21079, + "id": 21481, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21080, + "id": 21482, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21081, + "id": 21483, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21082, + "id": 21484, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21083, + "id": 21485, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21084, + "id": 21486, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21085, + "id": 21487, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21086, + "id": 21488, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21087, + "id": 21489, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21088, + "id": 21490, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21089, + "id": 21491, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21090, + "id": 21492, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21091, + "id": 21493, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21092, + "id": 21494, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21093, + "id": 21495, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21094, + "id": 21496, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21095, + "id": 21497, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21096, + "id": 21498, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21097, + "id": 21499, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21098, + "id": 21500, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21099, + "id": 21501, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21100, + "id": 21502, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21101, + "id": 21503, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21102, + "id": 21504, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21103, + "id": 21505, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21104, + "id": 21506, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21105, + "id": 21507, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21106, + "id": 21508, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21107, + "id": 21509, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21108, + "id": 21510, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21109, + "id": 21511, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21110, + "id": 21512, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21111, + "id": 21513, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21112, + "id": 21514, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21113, + "id": 21515, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21114, + "id": 21516, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21115, + "id": 21517, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21116, + "id": 21518, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21117, + "id": 21519, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21118, + "id": 21520, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21119, + "id": 21521, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21120, + "id": 21522, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21121, + "id": 21523, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21122, + "id": 21524, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21123, + "id": 21525, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21124, + "id": 21526, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21125, + "id": 21527, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21126, + "id": 21528, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21127, + "id": 21529, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21128, + "id": 21530, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21129, + "id": 21531, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21130, + "id": 21532, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21131, + "id": 21533, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21132, + "id": 21534, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21133, + "id": 21535, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21134, + "id": 21536, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21135, + "id": 21537, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21136, + "id": 21538, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21137, + "id": 21539, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21138, + "id": 21540, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21139, + "id": 21541, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21140, + "id": 21542, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21141, + "id": 21543, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21142, + "id": 21544, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21143, + "id": 21545, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21144, + "id": 21546, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21145, + "id": 21547, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21146, + "id": 21548, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21147, + "id": 21549, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21148, + "id": 21550, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21149, + "id": 21551, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21150, + "id": 21552, "luminance": 0, "opaque": false, "replaceable": false, @@ -227140,10 +231305,10 @@ ] }, { - "id": 912, + "id": 917, "name": "sculk_catalyst", "translation_key": "block.minecraft.sculk_catalyst", - "item_id": 349, + "item_id": 351, "properties": [ { "name": "bloom", @@ -227153,35 +231318,35 @@ ] } ], - "default_state_id": 21152, + "default_state_id": 21554, "states": [ { - "id": 21151, + "id": 21553, "luminance": 6, "opaque": true, "replaceable": false, "collision_shapes": [ 0 ], - "block_entity_type": 35 + "block_entity_type": 36 }, { - "id": 21152, + "id": 21554, "luminance": 6, "opaque": true, "replaceable": false, "collision_shapes": [ 0 ], - "block_entity_type": 35 + "block_entity_type": 36 } ] }, { - "id": 913, + "id": 918, "name": "sculk_shrieker", "translation_key": "block.minecraft.sculk_shrieker", - "item_id": 350, + "item_id": 352, "properties": [ { "name": "can_summon", @@ -227205,195 +231370,100 @@ ] } ], - "default_state_id": 21160, + "default_state_id": 21562, "states": [ { - "id": 21153, + "id": 21555, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 51 ], - "block_entity_type": 36 + "block_entity_type": 37 }, { - "id": 21154, + "id": 21556, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 51 ], - "block_entity_type": 36 + "block_entity_type": 37 }, { - "id": 21155, + "id": 21557, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 51 ], - "block_entity_type": 36 + "block_entity_type": 37 }, { - "id": 21156, + "id": 21558, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 51 ], - "block_entity_type": 36 + "block_entity_type": 37 }, { - "id": 21157, + "id": 21559, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 51 ], - "block_entity_type": 36 + "block_entity_type": 37 }, { - "id": 21158, + "id": 21560, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 51 ], - "block_entity_type": 36 + "block_entity_type": 37 }, { - "id": 21159, + "id": 21561, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 51 ], - "block_entity_type": 36 + "block_entity_type": 37 }, { - "id": 21160, + "id": 21562, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ 51 ], - "block_entity_type": 36 - } - ] - }, - { - "id": 914, - "name": "oxidized_copper", - "translation_key": "block.minecraft.oxidized_copper", - "item_id": 80, - "properties": [], - "default_state_id": 21161, - "states": [ - { - "id": 21161, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 915, - "name": "weathered_copper", - "translation_key": "block.minecraft.weathered_copper", - "item_id": 79, - "properties": [], - "default_state_id": 21162, - "states": [ - { - "id": 21162, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 916, - "name": "exposed_copper", - "translation_key": "block.minecraft.exposed_copper", - "item_id": 78, - "properties": [], - "default_state_id": 21163, - "states": [ - { - "id": 21163, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 917, - "name": "copper_block", - "translation_key": "block.minecraft.copper_block", - "item_id": 74, - "properties": [], - "default_state_id": 21164, - "states": [ - { - "id": 21164, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 918, - "name": "copper_ore", - "translation_key": "block.minecraft.copper_ore", - "item_id": 52, - "properties": [], - "default_state_id": 21165, - "states": [ - { - "id": 21165, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] + "block_entity_type": 37 } ] }, { "id": 919, - "name": "deepslate_copper_ore", - "translation_key": "block.minecraft.deepslate_copper_ore", - "item_id": 53, + "name": "oxidized_copper", + "translation_key": "block.minecraft.oxidized_copper", + "item_id": 81, "properties": [], - "default_state_id": 21166, + "default_state_id": 21563, "states": [ { - "id": 21166, + "id": 21563, "luminance": 0, "opaque": true, "replaceable": false, @@ -227405,14 +231475,14 @@ }, { "id": 920, - "name": "oxidized_cut_copper", - "translation_key": "block.minecraft.oxidized_cut_copper", - "item_id": 84, + "name": "weathered_copper", + "translation_key": "block.minecraft.weathered_copper", + "item_id": 80, "properties": [], - "default_state_id": 21167, + "default_state_id": 21564, "states": [ { - "id": 21167, + "id": 21564, "luminance": 0, "opaque": true, "replaceable": false, @@ -227424,14 +231494,14 @@ }, { "id": 921, - "name": "weathered_cut_copper", - "translation_key": "block.minecraft.weathered_cut_copper", - "item_id": 83, + "name": "exposed_copper", + "translation_key": "block.minecraft.exposed_copper", + "item_id": 79, "properties": [], - "default_state_id": 21168, + "default_state_id": 21565, "states": [ { - "id": 21168, + "id": 21565, "luminance": 0, "opaque": true, "replaceable": false, @@ -227443,14 +231513,14 @@ }, { "id": 922, - "name": "exposed_cut_copper", - "translation_key": "block.minecraft.exposed_cut_copper", - "item_id": 82, + "name": "copper_block", + "translation_key": "block.minecraft.copper_block", + "item_id": 75, "properties": [], - "default_state_id": 21169, + "default_state_id": 21566, "states": [ { - "id": 21169, + "id": 21566, "luminance": 0, "opaque": true, "replaceable": false, @@ -227462,14 +231532,14 @@ }, { "id": 923, - "name": "cut_copper", - "translation_key": "block.minecraft.cut_copper", - "item_id": 81, + "name": "copper_ore", + "translation_key": "block.minecraft.copper_ore", + "item_id": 53, "properties": [], - "default_state_id": 21170, + "default_state_id": 21567, "states": [ { - "id": 21170, + "id": 21567, "luminance": 0, "opaque": true, "replaceable": false, @@ -227481,8 +231551,995 @@ }, { "id": 924, + "name": "deepslate_copper_ore", + "translation_key": "block.minecraft.deepslate_copper_ore", + "item_id": 54, + "properties": [], + "default_state_id": 21568, + "states": [ + { + "id": 21568, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 925, + "name": "oxidized_cut_copper", + "translation_key": "block.minecraft.oxidized_cut_copper", + "item_id": 85, + "properties": [], + "default_state_id": 21569, + "states": [ + { + "id": 21569, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 926, + "name": "weathered_cut_copper", + "translation_key": "block.minecraft.weathered_cut_copper", + "item_id": 84, + "properties": [], + "default_state_id": 21570, + "states": [ + { + "id": 21570, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 927, + "name": "exposed_cut_copper", + "translation_key": "block.minecraft.exposed_cut_copper", + "item_id": 83, + "properties": [], + "default_state_id": 21571, + "states": [ + { + "id": 21571, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 928, + "name": "cut_copper", + "translation_key": "block.minecraft.cut_copper", + "item_id": 82, + "properties": [], + "default_state_id": 21572, + "states": [ + { + "id": 21572, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 929, "name": "oxidized_cut_copper_stairs", "translation_key": "block.minecraft.oxidized_cut_copper_stairs", + "item_id": 89, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 21584, + "states": [ + { + "id": 21573, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 21574, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 21575, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 21576, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 21577, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 21578, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 21579, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 21580, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 21581, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 21582, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 21583, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 21584, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 21585, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 21586, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 21587, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 21588, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 21589, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 21590, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 21591, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 21592, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 21593, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 21594, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 21595, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 21596, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 21597, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 21598, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 21599, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 21600, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 21601, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 21602, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 21603, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 21604, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 21605, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 21606, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 21607, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 21608, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 21609, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 21610, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 21611, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 21612, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 21613, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 21614, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 21615, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 21616, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 21617, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 21618, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 21619, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 21620, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 21621, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 21622, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 21623, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 21624, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 21625, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 21626, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 21627, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 21628, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 21629, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 21630, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 21631, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 21632, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 21633, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 21634, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 21635, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 21636, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 21637, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 21638, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 21639, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 21640, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 21641, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 21642, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 21643, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 21644, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 21645, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 21646, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 21647, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 21648, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 21649, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 21650, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 21651, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 21652, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 930, + "name": "weathered_cut_copper_stairs", + "translation_key": "block.minecraft.weathered_cut_copper_stairs", "item_id": 88, "properties": [ { @@ -227519,10 +232576,10 @@ ] } ], - "default_state_id": 21182, + "default_state_id": 21664, "states": [ { - "id": 21171, + "id": 21653, "luminance": 0, "opaque": true, "replaceable": false, @@ -227532,7 +232589,7 @@ ] }, { - "id": 21172, + "id": 21654, "luminance": 0, "opaque": true, "replaceable": false, @@ -227542,7 +232599,7 @@ ] }, { - "id": 21173, + "id": 21655, "luminance": 0, "opaque": true, "replaceable": false, @@ -227553,7 +232610,7 @@ ] }, { - "id": 21174, + "id": 21656, "luminance": 0, "opaque": true, "replaceable": false, @@ -227564,7 +232621,7 @@ ] }, { - "id": 21175, + "id": 21657, "luminance": 0, "opaque": true, "replaceable": false, @@ -227575,7 +232632,7 @@ ] }, { - "id": 21176, + "id": 21658, "luminance": 0, "opaque": true, "replaceable": false, @@ -227586,7 +232643,7 @@ ] }, { - "id": 21177, + "id": 21659, "luminance": 0, "opaque": true, "replaceable": false, @@ -227597,7 +232654,7 @@ ] }, { - "id": 21178, + "id": 21660, "luminance": 0, "opaque": true, "replaceable": false, @@ -227608,7 +232665,7 @@ ] }, { - "id": 21179, + "id": 21661, "luminance": 0, "opaque": true, "replaceable": false, @@ -227619,7 +232676,7 @@ ] }, { - "id": 21180, + "id": 21662, "luminance": 0, "opaque": true, "replaceable": false, @@ -227630,7 +232687,7 @@ ] }, { - "id": 21181, + "id": 21663, "luminance": 0, "opaque": true, "replaceable": false, @@ -227640,7 +232697,7 @@ ] }, { - "id": 21182, + "id": 21664, "luminance": 0, "opaque": true, "replaceable": false, @@ -227650,7 +232707,7 @@ ] }, { - "id": 21183, + "id": 21665, "luminance": 0, "opaque": true, "replaceable": false, @@ -227661,7 +232718,7 @@ ] }, { - "id": 21184, + "id": 21666, "luminance": 0, "opaque": true, "replaceable": false, @@ -227672,7 +232729,7 @@ ] }, { - "id": 21185, + "id": 21667, "luminance": 0, "opaque": true, "replaceable": false, @@ -227683,7 +232740,7 @@ ] }, { - "id": 21186, + "id": 21668, "luminance": 0, "opaque": true, "replaceable": false, @@ -227694,7 +232751,7 @@ ] }, { - "id": 21187, + "id": 21669, "luminance": 0, "opaque": true, "replaceable": false, @@ -227704,7 +232761,7 @@ ] }, { - "id": 21188, + "id": 21670, "luminance": 0, "opaque": true, "replaceable": false, @@ -227714,7 +232771,7 @@ ] }, { - "id": 21189, + "id": 21671, "luminance": 0, "opaque": true, "replaceable": false, @@ -227724,7 +232781,7 @@ ] }, { - "id": 21190, + "id": 21672, "luminance": 0, "opaque": true, "replaceable": false, @@ -227734,7 +232791,7 @@ ] }, { - "id": 21191, + "id": 21673, "luminance": 0, "opaque": true, "replaceable": false, @@ -227744,7 +232801,7 @@ ] }, { - "id": 21192, + "id": 21674, "luminance": 0, "opaque": true, "replaceable": false, @@ -227754,7 +232811,7 @@ ] }, { - "id": 21193, + "id": 21675, "luminance": 0, "opaque": true, "replaceable": false, @@ -227765,7 +232822,7 @@ ] }, { - "id": 21194, + "id": 21676, "luminance": 0, "opaque": true, "replaceable": false, @@ -227776,7 +232833,7 @@ ] }, { - "id": 21195, + "id": 21677, "luminance": 0, "opaque": true, "replaceable": false, @@ -227787,7 +232844,7 @@ ] }, { - "id": 21196, + "id": 21678, "luminance": 0, "opaque": true, "replaceable": false, @@ -227798,7 +232855,7 @@ ] }, { - "id": 21197, + "id": 21679, "luminance": 0, "opaque": true, "replaceable": false, @@ -227809,7 +232866,7 @@ ] }, { - "id": 21198, + "id": 21680, "luminance": 0, "opaque": true, "replaceable": false, @@ -227820,7 +232877,7 @@ ] }, { - "id": 21199, + "id": 21681, "luminance": 0, "opaque": true, "replaceable": false, @@ -227831,7 +232888,7 @@ ] }, { - "id": 21200, + "id": 21682, "luminance": 0, "opaque": true, "replaceable": false, @@ -227842,7 +232899,7 @@ ] }, { - "id": 21201, + "id": 21683, "luminance": 0, "opaque": true, "replaceable": false, @@ -227852,7 +232909,7 @@ ] }, { - "id": 21202, + "id": 21684, "luminance": 0, "opaque": true, "replaceable": false, @@ -227862,7 +232919,7 @@ ] }, { - "id": 21203, + "id": 21685, "luminance": 0, "opaque": true, "replaceable": false, @@ -227873,7 +232930,7 @@ ] }, { - "id": 21204, + "id": 21686, "luminance": 0, "opaque": true, "replaceable": false, @@ -227884,7 +232941,7 @@ ] }, { - "id": 21205, + "id": 21687, "luminance": 0, "opaque": true, "replaceable": false, @@ -227895,7 +232952,7 @@ ] }, { - "id": 21206, + "id": 21688, "luminance": 0, "opaque": true, "replaceable": false, @@ -227906,7 +232963,7 @@ ] }, { - "id": 21207, + "id": 21689, "luminance": 0, "opaque": true, "replaceable": false, @@ -227916,7 +232973,7 @@ ] }, { - "id": 21208, + "id": 21690, "luminance": 0, "opaque": true, "replaceable": false, @@ -227926,7 +232983,7 @@ ] }, { - "id": 21209, + "id": 21691, "luminance": 0, "opaque": true, "replaceable": false, @@ -227936,7 +232993,7 @@ ] }, { - "id": 21210, + "id": 21692, "luminance": 0, "opaque": true, "replaceable": false, @@ -227946,7 +233003,7 @@ ] }, { - "id": 21211, + "id": 21693, "luminance": 0, "opaque": true, "replaceable": false, @@ -227956,7 +233013,7 @@ ] }, { - "id": 21212, + "id": 21694, "luminance": 0, "opaque": true, "replaceable": false, @@ -227966,7 +233023,7 @@ ] }, { - "id": 21213, + "id": 21695, "luminance": 0, "opaque": true, "replaceable": false, @@ -227977,7 +233034,7 @@ ] }, { - "id": 21214, + "id": 21696, "luminance": 0, "opaque": true, "replaceable": false, @@ -227988,7 +233045,7 @@ ] }, { - "id": 21215, + "id": 21697, "luminance": 0, "opaque": true, "replaceable": false, @@ -227999,7 +233056,7 @@ ] }, { - "id": 21216, + "id": 21698, "luminance": 0, "opaque": true, "replaceable": false, @@ -228010,7 +233067,7 @@ ] }, { - "id": 21217, + "id": 21699, "luminance": 0, "opaque": true, "replaceable": false, @@ -228021,7 +233078,7 @@ ] }, { - "id": 21218, + "id": 21700, "luminance": 0, "opaque": true, "replaceable": false, @@ -228032,7 +233089,7 @@ ] }, { - "id": 21219, + "id": 21701, "luminance": 0, "opaque": true, "replaceable": false, @@ -228043,7 +233100,7 @@ ] }, { - "id": 21220, + "id": 21702, "luminance": 0, "opaque": true, "replaceable": false, @@ -228054,7 +233111,7 @@ ] }, { - "id": 21221, + "id": 21703, "luminance": 0, "opaque": true, "replaceable": false, @@ -228064,7 +233121,7 @@ ] }, { - "id": 21222, + "id": 21704, "luminance": 0, "opaque": true, "replaceable": false, @@ -228074,7 +233131,7 @@ ] }, { - "id": 21223, + "id": 21705, "luminance": 0, "opaque": true, "replaceable": false, @@ -228085,7 +233142,7 @@ ] }, { - "id": 21224, + "id": 21706, "luminance": 0, "opaque": true, "replaceable": false, @@ -228096,7 +233153,7 @@ ] }, { - "id": 21225, + "id": 21707, "luminance": 0, "opaque": true, "replaceable": false, @@ -228107,7 +233164,7 @@ ] }, { - "id": 21226, + "id": 21708, "luminance": 0, "opaque": true, "replaceable": false, @@ -228118,7 +233175,7 @@ ] }, { - "id": 21227, + "id": 21709, "luminance": 0, "opaque": true, "replaceable": false, @@ -228128,7 +233185,7 @@ ] }, { - "id": 21228, + "id": 21710, "luminance": 0, "opaque": true, "replaceable": false, @@ -228138,7 +233195,7 @@ ] }, { - "id": 21229, + "id": 21711, "luminance": 0, "opaque": true, "replaceable": false, @@ -228148,7 +233205,7 @@ ] }, { - "id": 21230, + "id": 21712, "luminance": 0, "opaque": true, "replaceable": false, @@ -228158,7 +233215,7 @@ ] }, { - "id": 21231, + "id": 21713, "luminance": 0, "opaque": true, "replaceable": false, @@ -228168,7 +233225,7 @@ ] }, { - "id": 21232, + "id": 21714, "luminance": 0, "opaque": true, "replaceable": false, @@ -228178,7 +233235,7 @@ ] }, { - "id": 21233, + "id": 21715, "luminance": 0, "opaque": true, "replaceable": false, @@ -228189,7 +233246,7 @@ ] }, { - "id": 21234, + "id": 21716, "luminance": 0, "opaque": true, "replaceable": false, @@ -228200,7 +233257,7 @@ ] }, { - "id": 21235, + "id": 21717, "luminance": 0, "opaque": true, "replaceable": false, @@ -228211,7 +233268,7 @@ ] }, { - "id": 21236, + "id": 21718, "luminance": 0, "opaque": true, "replaceable": false, @@ -228222,7 +233279,7 @@ ] }, { - "id": 21237, + "id": 21719, "luminance": 0, "opaque": true, "replaceable": false, @@ -228233,7 +233290,7 @@ ] }, { - "id": 21238, + "id": 21720, "luminance": 0, "opaque": true, "replaceable": false, @@ -228244,7 +233301,7 @@ ] }, { - "id": 21239, + "id": 21721, "luminance": 0, "opaque": true, "replaceable": false, @@ -228255,7 +233312,7 @@ ] }, { - "id": 21240, + "id": 21722, "luminance": 0, "opaque": true, "replaceable": false, @@ -228266,7 +233323,7 @@ ] }, { - "id": 21241, + "id": 21723, "luminance": 0, "opaque": true, "replaceable": false, @@ -228276,7 +233333,7 @@ ] }, { - "id": 21242, + "id": 21724, "luminance": 0, "opaque": true, "replaceable": false, @@ -228286,7 +233343,7 @@ ] }, { - "id": 21243, + "id": 21725, "luminance": 0, "opaque": true, "replaceable": false, @@ -228297,7 +233354,7 @@ ] }, { - "id": 21244, + "id": 21726, "luminance": 0, "opaque": true, "replaceable": false, @@ -228308,7 +233365,7 @@ ] }, { - "id": 21245, + "id": 21727, "luminance": 0, "opaque": true, "replaceable": false, @@ -228319,7 +233376,7 @@ ] }, { - "id": 21246, + "id": 21728, "luminance": 0, "opaque": true, "replaceable": false, @@ -228330,7 +233387,7 @@ ] }, { - "id": 21247, + "id": 21729, "luminance": 0, "opaque": true, "replaceable": false, @@ -228340,7 +233397,7 @@ ] }, { - "id": 21248, + "id": 21730, "luminance": 0, "opaque": true, "replaceable": false, @@ -228350,7 +233407,7 @@ ] }, { - "id": 21249, + "id": 21731, "luminance": 0, "opaque": true, "replaceable": false, @@ -228360,7 +233417,7 @@ ] }, { - "id": 21250, + "id": 21732, "luminance": 0, "opaque": true, "replaceable": false, @@ -228372,9 +233429,9 @@ ] }, { - "id": 925, - "name": "weathered_cut_copper_stairs", - "translation_key": "block.minecraft.weathered_cut_copper_stairs", + "id": 931, + "name": "exposed_cut_copper_stairs", + "translation_key": "block.minecraft.exposed_cut_copper_stairs", "item_id": 87, "properties": [ { @@ -228411,10 +233468,10 @@ ] } ], - "default_state_id": 21262, + "default_state_id": 21744, "states": [ { - "id": 21251, + "id": 21733, "luminance": 0, "opaque": true, "replaceable": false, @@ -228424,7 +233481,7 @@ ] }, { - "id": 21252, + "id": 21734, "luminance": 0, "opaque": true, "replaceable": false, @@ -228434,7 +233491,7 @@ ] }, { - "id": 21253, + "id": 21735, "luminance": 0, "opaque": true, "replaceable": false, @@ -228445,7 +233502,7 @@ ] }, { - "id": 21254, + "id": 21736, "luminance": 0, "opaque": true, "replaceable": false, @@ -228456,7 +233513,7 @@ ] }, { - "id": 21255, + "id": 21737, "luminance": 0, "opaque": true, "replaceable": false, @@ -228467,7 +233524,7 @@ ] }, { - "id": 21256, + "id": 21738, "luminance": 0, "opaque": true, "replaceable": false, @@ -228478,7 +233535,7 @@ ] }, { - "id": 21257, + "id": 21739, "luminance": 0, "opaque": true, "replaceable": false, @@ -228489,7 +233546,7 @@ ] }, { - "id": 21258, + "id": 21740, "luminance": 0, "opaque": true, "replaceable": false, @@ -228500,7 +233557,7 @@ ] }, { - "id": 21259, + "id": 21741, "luminance": 0, "opaque": true, "replaceable": false, @@ -228511,7 +233568,7 @@ ] }, { - "id": 21260, + "id": 21742, "luminance": 0, "opaque": true, "replaceable": false, @@ -228522,7 +233579,7 @@ ] }, { - "id": 21261, + "id": 21743, "luminance": 0, "opaque": true, "replaceable": false, @@ -228532,7 +233589,7 @@ ] }, { - "id": 21262, + "id": 21744, "luminance": 0, "opaque": true, "replaceable": false, @@ -228542,7 +233599,7 @@ ] }, { - "id": 21263, + "id": 21745, "luminance": 0, "opaque": true, "replaceable": false, @@ -228553,7 +233610,7 @@ ] }, { - "id": 21264, + "id": 21746, "luminance": 0, "opaque": true, "replaceable": false, @@ -228564,7 +233621,7 @@ ] }, { - "id": 21265, + "id": 21747, "luminance": 0, "opaque": true, "replaceable": false, @@ -228575,7 +233632,7 @@ ] }, { - "id": 21266, + "id": 21748, "luminance": 0, "opaque": true, "replaceable": false, @@ -228586,7 +233643,7 @@ ] }, { - "id": 21267, + "id": 21749, "luminance": 0, "opaque": true, "replaceable": false, @@ -228596,7 +233653,7 @@ ] }, { - "id": 21268, + "id": 21750, "luminance": 0, "opaque": true, "replaceable": false, @@ -228606,7 +233663,7 @@ ] }, { - "id": 21269, + "id": 21751, "luminance": 0, "opaque": true, "replaceable": false, @@ -228616,7 +233673,7 @@ ] }, { - "id": 21270, + "id": 21752, "luminance": 0, "opaque": true, "replaceable": false, @@ -228626,7 +233683,7 @@ ] }, { - "id": 21271, + "id": 21753, "luminance": 0, "opaque": true, "replaceable": false, @@ -228636,7 +233693,7 @@ ] }, { - "id": 21272, + "id": 21754, "luminance": 0, "opaque": true, "replaceable": false, @@ -228646,7 +233703,7 @@ ] }, { - "id": 21273, + "id": 21755, "luminance": 0, "opaque": true, "replaceable": false, @@ -228657,7 +233714,7 @@ ] }, { - "id": 21274, + "id": 21756, "luminance": 0, "opaque": true, "replaceable": false, @@ -228668,7 +233725,7 @@ ] }, { - "id": 21275, + "id": 21757, "luminance": 0, "opaque": true, "replaceable": false, @@ -228679,7 +233736,7 @@ ] }, { - "id": 21276, + "id": 21758, "luminance": 0, "opaque": true, "replaceable": false, @@ -228690,7 +233747,7 @@ ] }, { - "id": 21277, + "id": 21759, "luminance": 0, "opaque": true, "replaceable": false, @@ -228701,7 +233758,7 @@ ] }, { - "id": 21278, + "id": 21760, "luminance": 0, "opaque": true, "replaceable": false, @@ -228712,7 +233769,7 @@ ] }, { - "id": 21279, + "id": 21761, "luminance": 0, "opaque": true, "replaceable": false, @@ -228723,7 +233780,7 @@ ] }, { - "id": 21280, + "id": 21762, "luminance": 0, "opaque": true, "replaceable": false, @@ -228734,7 +233791,7 @@ ] }, { - "id": 21281, + "id": 21763, "luminance": 0, "opaque": true, "replaceable": false, @@ -228744,7 +233801,7 @@ ] }, { - "id": 21282, + "id": 21764, "luminance": 0, "opaque": true, "replaceable": false, @@ -228754,7 +233811,7 @@ ] }, { - "id": 21283, + "id": 21765, "luminance": 0, "opaque": true, "replaceable": false, @@ -228765,7 +233822,7 @@ ] }, { - "id": 21284, + "id": 21766, "luminance": 0, "opaque": true, "replaceable": false, @@ -228776,7 +233833,7 @@ ] }, { - "id": 21285, + "id": 21767, "luminance": 0, "opaque": true, "replaceable": false, @@ -228787,7 +233844,7 @@ ] }, { - "id": 21286, + "id": 21768, "luminance": 0, "opaque": true, "replaceable": false, @@ -228798,7 +233855,7 @@ ] }, { - "id": 21287, + "id": 21769, "luminance": 0, "opaque": true, "replaceable": false, @@ -228808,7 +233865,7 @@ ] }, { - "id": 21288, + "id": 21770, "luminance": 0, "opaque": true, "replaceable": false, @@ -228818,7 +233875,7 @@ ] }, { - "id": 21289, + "id": 21771, "luminance": 0, "opaque": true, "replaceable": false, @@ -228828,7 +233885,7 @@ ] }, { - "id": 21290, + "id": 21772, "luminance": 0, "opaque": true, "replaceable": false, @@ -228838,7 +233895,7 @@ ] }, { - "id": 21291, + "id": 21773, "luminance": 0, "opaque": true, "replaceable": false, @@ -228848,7 +233905,7 @@ ] }, { - "id": 21292, + "id": 21774, "luminance": 0, "opaque": true, "replaceable": false, @@ -228858,7 +233915,7 @@ ] }, { - "id": 21293, + "id": 21775, "luminance": 0, "opaque": true, "replaceable": false, @@ -228869,7 +233926,7 @@ ] }, { - "id": 21294, + "id": 21776, "luminance": 0, "opaque": true, "replaceable": false, @@ -228880,7 +233937,7 @@ ] }, { - "id": 21295, + "id": 21777, "luminance": 0, "opaque": true, "replaceable": false, @@ -228891,7 +233948,7 @@ ] }, { - "id": 21296, + "id": 21778, "luminance": 0, "opaque": true, "replaceable": false, @@ -228902,7 +233959,7 @@ ] }, { - "id": 21297, + "id": 21779, "luminance": 0, "opaque": true, "replaceable": false, @@ -228913,7 +233970,7 @@ ] }, { - "id": 21298, + "id": 21780, "luminance": 0, "opaque": true, "replaceable": false, @@ -228924,7 +233981,7 @@ ] }, { - "id": 21299, + "id": 21781, "luminance": 0, "opaque": true, "replaceable": false, @@ -228935,7 +233992,7 @@ ] }, { - "id": 21300, + "id": 21782, "luminance": 0, "opaque": true, "replaceable": false, @@ -228946,7 +234003,7 @@ ] }, { - "id": 21301, + "id": 21783, "luminance": 0, "opaque": true, "replaceable": false, @@ -228956,7 +234013,7 @@ ] }, { - "id": 21302, + "id": 21784, "luminance": 0, "opaque": true, "replaceable": false, @@ -228966,7 +234023,7 @@ ] }, { - "id": 21303, + "id": 21785, "luminance": 0, "opaque": true, "replaceable": false, @@ -228977,7 +234034,7 @@ ] }, { - "id": 21304, + "id": 21786, "luminance": 0, "opaque": true, "replaceable": false, @@ -228988,7 +234045,7 @@ ] }, { - "id": 21305, + "id": 21787, "luminance": 0, "opaque": true, "replaceable": false, @@ -228999,7 +234056,7 @@ ] }, { - "id": 21306, + "id": 21788, "luminance": 0, "opaque": true, "replaceable": false, @@ -229010,7 +234067,7 @@ ] }, { - "id": 21307, + "id": 21789, "luminance": 0, "opaque": true, "replaceable": false, @@ -229020,7 +234077,7 @@ ] }, { - "id": 21308, + "id": 21790, "luminance": 0, "opaque": true, "replaceable": false, @@ -229030,7 +234087,7 @@ ] }, { - "id": 21309, + "id": 21791, "luminance": 0, "opaque": true, "replaceable": false, @@ -229040,7 +234097,7 @@ ] }, { - "id": 21310, + "id": 21792, "luminance": 0, "opaque": true, "replaceable": false, @@ -229050,7 +234107,7 @@ ] }, { - "id": 21311, + "id": 21793, "luminance": 0, "opaque": true, "replaceable": false, @@ -229060,7 +234117,7 @@ ] }, { - "id": 21312, + "id": 21794, "luminance": 0, "opaque": true, "replaceable": false, @@ -229070,7 +234127,7 @@ ] }, { - "id": 21313, + "id": 21795, "luminance": 0, "opaque": true, "replaceable": false, @@ -229081,7 +234138,7 @@ ] }, { - "id": 21314, + "id": 21796, "luminance": 0, "opaque": true, "replaceable": false, @@ -229092,7 +234149,7 @@ ] }, { - "id": 21315, + "id": 21797, "luminance": 0, "opaque": true, "replaceable": false, @@ -229103,7 +234160,7 @@ ] }, { - "id": 21316, + "id": 21798, "luminance": 0, "opaque": true, "replaceable": false, @@ -229114,7 +234171,7 @@ ] }, { - "id": 21317, + "id": 21799, "luminance": 0, "opaque": true, "replaceable": false, @@ -229125,7 +234182,7 @@ ] }, { - "id": 21318, + "id": 21800, "luminance": 0, "opaque": true, "replaceable": false, @@ -229136,7 +234193,7 @@ ] }, { - "id": 21319, + "id": 21801, "luminance": 0, "opaque": true, "replaceable": false, @@ -229147,7 +234204,7 @@ ] }, { - "id": 21320, + "id": 21802, "luminance": 0, "opaque": true, "replaceable": false, @@ -229158,7 +234215,7 @@ ] }, { - "id": 21321, + "id": 21803, "luminance": 0, "opaque": true, "replaceable": false, @@ -229168,7 +234225,7 @@ ] }, { - "id": 21322, + "id": 21804, "luminance": 0, "opaque": true, "replaceable": false, @@ -229178,7 +234235,7 @@ ] }, { - "id": 21323, + "id": 21805, "luminance": 0, "opaque": true, "replaceable": false, @@ -229189,7 +234246,7 @@ ] }, { - "id": 21324, + "id": 21806, "luminance": 0, "opaque": true, "replaceable": false, @@ -229200,7 +234257,7 @@ ] }, { - "id": 21325, + "id": 21807, "luminance": 0, "opaque": true, "replaceable": false, @@ -229211,7 +234268,7 @@ ] }, { - "id": 21326, + "id": 21808, "luminance": 0, "opaque": true, "replaceable": false, @@ -229222,7 +234279,7 @@ ] }, { - "id": 21327, + "id": 21809, "luminance": 0, "opaque": true, "replaceable": false, @@ -229232,7 +234289,7 @@ ] }, { - "id": 21328, + "id": 21810, "luminance": 0, "opaque": true, "replaceable": false, @@ -229242,7 +234299,7 @@ ] }, { - "id": 21329, + "id": 21811, "luminance": 0, "opaque": true, "replaceable": false, @@ -229252,7 +234309,7 @@ ] }, { - "id": 21330, + "id": 21812, "luminance": 0, "opaque": true, "replaceable": false, @@ -229264,9 +234321,9 @@ ] }, { - "id": 926, - "name": "exposed_cut_copper_stairs", - "translation_key": "block.minecraft.exposed_cut_copper_stairs", + "id": 932, + "name": "cut_copper_stairs", + "translation_key": "block.minecraft.cut_copper_stairs", "item_id": 86, "properties": [ { @@ -229303,10 +234360,10 @@ ] } ], - "default_state_id": 21342, + "default_state_id": 21824, "states": [ { - "id": 21331, + "id": 21813, "luminance": 0, "opaque": true, "replaceable": false, @@ -229316,7 +234373,7 @@ ] }, { - "id": 21332, + "id": 21814, "luminance": 0, "opaque": true, "replaceable": false, @@ -229326,7 +234383,7 @@ ] }, { - "id": 21333, + "id": 21815, "luminance": 0, "opaque": true, "replaceable": false, @@ -229337,7 +234394,7 @@ ] }, { - "id": 21334, + "id": 21816, "luminance": 0, "opaque": true, "replaceable": false, @@ -229348,7 +234405,7 @@ ] }, { - "id": 21335, + "id": 21817, "luminance": 0, "opaque": true, "replaceable": false, @@ -229359,7 +234416,7 @@ ] }, { - "id": 21336, + "id": 21818, "luminance": 0, "opaque": true, "replaceable": false, @@ -229370,7 +234427,7 @@ ] }, { - "id": 21337, + "id": 21819, "luminance": 0, "opaque": true, "replaceable": false, @@ -229381,7 +234438,7 @@ ] }, { - "id": 21338, + "id": 21820, "luminance": 0, "opaque": true, "replaceable": false, @@ -229392,7 +234449,7 @@ ] }, { - "id": 21339, + "id": 21821, "luminance": 0, "opaque": true, "replaceable": false, @@ -229403,7 +234460,7 @@ ] }, { - "id": 21340, + "id": 21822, "luminance": 0, "opaque": true, "replaceable": false, @@ -229414,7 +234471,7 @@ ] }, { - "id": 21341, + "id": 21823, "luminance": 0, "opaque": true, "replaceable": false, @@ -229424,7 +234481,7 @@ ] }, { - "id": 21342, + "id": 21824, "luminance": 0, "opaque": true, "replaceable": false, @@ -229434,7 +234491,7 @@ ] }, { - "id": 21343, + "id": 21825, "luminance": 0, "opaque": true, "replaceable": false, @@ -229445,7 +234502,7 @@ ] }, { - "id": 21344, + "id": 21826, "luminance": 0, "opaque": true, "replaceable": false, @@ -229456,7 +234513,7 @@ ] }, { - "id": 21345, + "id": 21827, "luminance": 0, "opaque": true, "replaceable": false, @@ -229467,7 +234524,7 @@ ] }, { - "id": 21346, + "id": 21828, "luminance": 0, "opaque": true, "replaceable": false, @@ -229478,7 +234535,7 @@ ] }, { - "id": 21347, + "id": 21829, "luminance": 0, "opaque": true, "replaceable": false, @@ -229488,7 +234545,7 @@ ] }, { - "id": 21348, + "id": 21830, "luminance": 0, "opaque": true, "replaceable": false, @@ -229498,7 +234555,7 @@ ] }, { - "id": 21349, + "id": 21831, "luminance": 0, "opaque": true, "replaceable": false, @@ -229508,7 +234565,7 @@ ] }, { - "id": 21350, + "id": 21832, "luminance": 0, "opaque": true, "replaceable": false, @@ -229518,7 +234575,7 @@ ] }, { - "id": 21351, + "id": 21833, "luminance": 0, "opaque": true, "replaceable": false, @@ -229528,7 +234585,7 @@ ] }, { - "id": 21352, + "id": 21834, "luminance": 0, "opaque": true, "replaceable": false, @@ -229538,7 +234595,7 @@ ] }, { - "id": 21353, + "id": 21835, "luminance": 0, "opaque": true, "replaceable": false, @@ -229549,7 +234606,7 @@ ] }, { - "id": 21354, + "id": 21836, "luminance": 0, "opaque": true, "replaceable": false, @@ -229560,7 +234617,7 @@ ] }, { - "id": 21355, + "id": 21837, "luminance": 0, "opaque": true, "replaceable": false, @@ -229571,7 +234628,7 @@ ] }, { - "id": 21356, + "id": 21838, "luminance": 0, "opaque": true, "replaceable": false, @@ -229582,7 +234639,7 @@ ] }, { - "id": 21357, + "id": 21839, "luminance": 0, "opaque": true, "replaceable": false, @@ -229593,7 +234650,7 @@ ] }, { - "id": 21358, + "id": 21840, "luminance": 0, "opaque": true, "replaceable": false, @@ -229604,7 +234661,7 @@ ] }, { - "id": 21359, + "id": 21841, "luminance": 0, "opaque": true, "replaceable": false, @@ -229615,7 +234672,7 @@ ] }, { - "id": 21360, + "id": 21842, "luminance": 0, "opaque": true, "replaceable": false, @@ -229626,7 +234683,7 @@ ] }, { - "id": 21361, + "id": 21843, "luminance": 0, "opaque": true, "replaceable": false, @@ -229636,7 +234693,7 @@ ] }, { - "id": 21362, + "id": 21844, "luminance": 0, "opaque": true, "replaceable": false, @@ -229646,7 +234703,7 @@ ] }, { - "id": 21363, + "id": 21845, "luminance": 0, "opaque": true, "replaceable": false, @@ -229657,7 +234714,7 @@ ] }, { - "id": 21364, + "id": 21846, "luminance": 0, "opaque": true, "replaceable": false, @@ -229668,7 +234725,7 @@ ] }, { - "id": 21365, + "id": 21847, "luminance": 0, "opaque": true, "replaceable": false, @@ -229679,7 +234736,7 @@ ] }, { - "id": 21366, + "id": 21848, "luminance": 0, "opaque": true, "replaceable": false, @@ -229690,7 +234747,7 @@ ] }, { - "id": 21367, + "id": 21849, "luminance": 0, "opaque": true, "replaceable": false, @@ -229700,7 +234757,7 @@ ] }, { - "id": 21368, + "id": 21850, "luminance": 0, "opaque": true, "replaceable": false, @@ -229710,7 +234767,7 @@ ] }, { - "id": 21369, + "id": 21851, "luminance": 0, "opaque": true, "replaceable": false, @@ -229720,7 +234777,7 @@ ] }, { - "id": 21370, + "id": 21852, "luminance": 0, "opaque": true, "replaceable": false, @@ -229730,7 +234787,7 @@ ] }, { - "id": 21371, + "id": 21853, "luminance": 0, "opaque": true, "replaceable": false, @@ -229740,7 +234797,7 @@ ] }, { - "id": 21372, + "id": 21854, "luminance": 0, "opaque": true, "replaceable": false, @@ -229750,7 +234807,7 @@ ] }, { - "id": 21373, + "id": 21855, "luminance": 0, "opaque": true, "replaceable": false, @@ -229761,7 +234818,7 @@ ] }, { - "id": 21374, + "id": 21856, "luminance": 0, "opaque": true, "replaceable": false, @@ -229772,7 +234829,7 @@ ] }, { - "id": 21375, + "id": 21857, "luminance": 0, "opaque": true, "replaceable": false, @@ -229783,7 +234840,7 @@ ] }, { - "id": 21376, + "id": 21858, "luminance": 0, "opaque": true, "replaceable": false, @@ -229794,7 +234851,7 @@ ] }, { - "id": 21377, + "id": 21859, "luminance": 0, "opaque": true, "replaceable": false, @@ -229805,7 +234862,7 @@ ] }, { - "id": 21378, + "id": 21860, "luminance": 0, "opaque": true, "replaceable": false, @@ -229816,7 +234873,7 @@ ] }, { - "id": 21379, + "id": 21861, "luminance": 0, "opaque": true, "replaceable": false, @@ -229827,7 +234884,7 @@ ] }, { - "id": 21380, + "id": 21862, "luminance": 0, "opaque": true, "replaceable": false, @@ -229838,7 +234895,7 @@ ] }, { - "id": 21381, + "id": 21863, "luminance": 0, "opaque": true, "replaceable": false, @@ -229848,7 +234905,7 @@ ] }, { - "id": 21382, + "id": 21864, "luminance": 0, "opaque": true, "replaceable": false, @@ -229858,7 +234915,7 @@ ] }, { - "id": 21383, + "id": 21865, "luminance": 0, "opaque": true, "replaceable": false, @@ -229869,7 +234926,7 @@ ] }, { - "id": 21384, + "id": 21866, "luminance": 0, "opaque": true, "replaceable": false, @@ -229880,7 +234937,7 @@ ] }, { - "id": 21385, + "id": 21867, "luminance": 0, "opaque": true, "replaceable": false, @@ -229891,7 +234948,7 @@ ] }, { - "id": 21386, + "id": 21868, "luminance": 0, "opaque": true, "replaceable": false, @@ -229902,7 +234959,7 @@ ] }, { - "id": 21387, + "id": 21869, "luminance": 0, "opaque": true, "replaceable": false, @@ -229912,7 +234969,7 @@ ] }, { - "id": 21388, + "id": 21870, "luminance": 0, "opaque": true, "replaceable": false, @@ -229922,7 +234979,7 @@ ] }, { - "id": 21389, + "id": 21871, "luminance": 0, "opaque": true, "replaceable": false, @@ -229932,7 +234989,7 @@ ] }, { - "id": 21390, + "id": 21872, "luminance": 0, "opaque": true, "replaceable": false, @@ -229942,7 +234999,7 @@ ] }, { - "id": 21391, + "id": 21873, "luminance": 0, "opaque": true, "replaceable": false, @@ -229952,7 +235009,7 @@ ] }, { - "id": 21392, + "id": 21874, "luminance": 0, "opaque": true, "replaceable": false, @@ -229962,7 +235019,7 @@ ] }, { - "id": 21393, + "id": 21875, "luminance": 0, "opaque": true, "replaceable": false, @@ -229973,7 +235030,7 @@ ] }, { - "id": 21394, + "id": 21876, "luminance": 0, "opaque": true, "replaceable": false, @@ -229984,7 +235041,7 @@ ] }, { - "id": 21395, + "id": 21877, "luminance": 0, "opaque": true, "replaceable": false, @@ -229995,7 +235052,7 @@ ] }, { - "id": 21396, + "id": 21878, "luminance": 0, "opaque": true, "replaceable": false, @@ -230006,7 +235063,7 @@ ] }, { - "id": 21397, + "id": 21879, "luminance": 0, "opaque": true, "replaceable": false, @@ -230017,7 +235074,7 @@ ] }, { - "id": 21398, + "id": 21880, "luminance": 0, "opaque": true, "replaceable": false, @@ -230028,7 +235085,7 @@ ] }, { - "id": 21399, + "id": 21881, "luminance": 0, "opaque": true, "replaceable": false, @@ -230039,7 +235096,7 @@ ] }, { - "id": 21400, + "id": 21882, "luminance": 0, "opaque": true, "replaceable": false, @@ -230050,7 +235107,7 @@ ] }, { - "id": 21401, + "id": 21883, "luminance": 0, "opaque": true, "replaceable": false, @@ -230060,7 +235117,7 @@ ] }, { - "id": 21402, + "id": 21884, "luminance": 0, "opaque": true, "replaceable": false, @@ -230070,7 +235127,7 @@ ] }, { - "id": 21403, + "id": 21885, "luminance": 0, "opaque": true, "replaceable": false, @@ -230081,7 +235138,7 @@ ] }, { - "id": 21404, + "id": 21886, "luminance": 0, "opaque": true, "replaceable": false, @@ -230092,7 +235149,7 @@ ] }, { - "id": 21405, + "id": 21887, "luminance": 0, "opaque": true, "replaceable": false, @@ -230103,7 +235160,7 @@ ] }, { - "id": 21406, + "id": 21888, "luminance": 0, "opaque": true, "replaceable": false, @@ -230114,7 +235171,7 @@ ] }, { - "id": 21407, + "id": 21889, "luminance": 0, "opaque": true, "replaceable": false, @@ -230124,7 +235181,7 @@ ] }, { - "id": 21408, + "id": 21890, "luminance": 0, "opaque": true, "replaceable": false, @@ -230134,7 +235191,7 @@ ] }, { - "id": 21409, + "id": 21891, "luminance": 0, "opaque": true, "replaceable": false, @@ -230144,7 +235201,7 @@ ] }, { - "id": 21410, + "id": 21892, "luminance": 0, "opaque": true, "replaceable": false, @@ -230156,10 +235213,482 @@ ] }, { - "id": 927, - "name": "cut_copper_stairs", - "translation_key": "block.minecraft.cut_copper_stairs", - "item_id": 85, + "id": 933, + "name": "oxidized_cut_copper_slab", + "translation_key": "block.minecraft.oxidized_cut_copper_slab", + "item_id": 93, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 21896, + "states": [ + { + "id": 21893, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 21894, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 21895, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 21896, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 21897, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21898, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 934, + "name": "weathered_cut_copper_slab", + "translation_key": "block.minecraft.weathered_cut_copper_slab", + "item_id": 92, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 21902, + "states": [ + { + "id": 21899, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 21900, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 21901, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 21902, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 21903, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21904, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 935, + "name": "exposed_cut_copper_slab", + "translation_key": "block.minecraft.exposed_cut_copper_slab", + "item_id": 91, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 21908, + "states": [ + { + "id": 21905, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 21906, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 21907, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 21908, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 21909, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21910, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 936, + "name": "cut_copper_slab", + "translation_key": "block.minecraft.cut_copper_slab", + "item_id": 90, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 21914, + "states": [ + { + "id": 21911, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 21912, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 21913, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 21914, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 21915, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 21916, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 937, + "name": "waxed_copper_block", + "translation_key": "block.minecraft.waxed_copper_block", + "item_id": 94, + "properties": [], + "default_state_id": 21917, + "states": [ + { + "id": 21917, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 938, + "name": "waxed_weathered_copper", + "translation_key": "block.minecraft.waxed_weathered_copper", + "item_id": 96, + "properties": [], + "default_state_id": 21918, + "states": [ + { + "id": 21918, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 939, + "name": "waxed_exposed_copper", + "translation_key": "block.minecraft.waxed_exposed_copper", + "item_id": 95, + "properties": [], + "default_state_id": 21919, + "states": [ + { + "id": 21919, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 940, + "name": "waxed_oxidized_copper", + "translation_key": "block.minecraft.waxed_oxidized_copper", + "item_id": 97, + "properties": [], + "default_state_id": 21920, + "states": [ + { + "id": 21920, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 941, + "name": "waxed_oxidized_cut_copper", + "translation_key": "block.minecraft.waxed_oxidized_cut_copper", + "item_id": 101, + "properties": [], + "default_state_id": 21921, + "states": [ + { + "id": 21921, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 942, + "name": "waxed_weathered_cut_copper", + "translation_key": "block.minecraft.waxed_weathered_cut_copper", + "item_id": 100, + "properties": [], + "default_state_id": 21922, + "states": [ + { + "id": 21922, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 943, + "name": "waxed_exposed_cut_copper", + "translation_key": "block.minecraft.waxed_exposed_cut_copper", + "item_id": 99, + "properties": [], + "default_state_id": 21923, + "states": [ + { + "id": 21923, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 944, + "name": "waxed_cut_copper", + "translation_key": "block.minecraft.waxed_cut_copper", + "item_id": 98, + "properties": [], + "default_state_id": 21924, + "states": [ + { + "id": 21924, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 945, + "name": "waxed_oxidized_cut_copper_stairs", + "translation_key": "block.minecraft.waxed_oxidized_cut_copper_stairs", + "item_id": 105, "properties": [ { "name": "facing", @@ -230195,10 +235724,10 @@ ] } ], - "default_state_id": 21422, + "default_state_id": 21936, "states": [ { - "id": 21411, + "id": 21925, "luminance": 0, "opaque": true, "replaceable": false, @@ -230208,7 +235737,7 @@ ] }, { - "id": 21412, + "id": 21926, "luminance": 0, "opaque": true, "replaceable": false, @@ -230218,7 +235747,7 @@ ] }, { - "id": 21413, + "id": 21927, "luminance": 0, "opaque": true, "replaceable": false, @@ -230229,7 +235758,7 @@ ] }, { - "id": 21414, + "id": 21928, "luminance": 0, "opaque": true, "replaceable": false, @@ -230240,7 +235769,7 @@ ] }, { - "id": 21415, + "id": 21929, "luminance": 0, "opaque": true, "replaceable": false, @@ -230251,7 +235780,7 @@ ] }, { - "id": 21416, + "id": 21930, "luminance": 0, "opaque": true, "replaceable": false, @@ -230262,7 +235791,7 @@ ] }, { - "id": 21417, + "id": 21931, "luminance": 0, "opaque": true, "replaceable": false, @@ -230273,7 +235802,7 @@ ] }, { - "id": 21418, + "id": 21932, "luminance": 0, "opaque": true, "replaceable": false, @@ -230284,7 +235813,7 @@ ] }, { - "id": 21419, + "id": 21933, "luminance": 0, "opaque": true, "replaceable": false, @@ -230295,7 +235824,7 @@ ] }, { - "id": 21420, + "id": 21934, "luminance": 0, "opaque": true, "replaceable": false, @@ -230306,7 +235835,7 @@ ] }, { - "id": 21421, + "id": 21935, "luminance": 0, "opaque": true, "replaceable": false, @@ -230316,7 +235845,7 @@ ] }, { - "id": 21422, + "id": 21936, "luminance": 0, "opaque": true, "replaceable": false, @@ -230326,7 +235855,7 @@ ] }, { - "id": 21423, + "id": 21937, "luminance": 0, "opaque": true, "replaceable": false, @@ -230337,7 +235866,7 @@ ] }, { - "id": 21424, + "id": 21938, "luminance": 0, "opaque": true, "replaceable": false, @@ -230348,7 +235877,7 @@ ] }, { - "id": 21425, + "id": 21939, "luminance": 0, "opaque": true, "replaceable": false, @@ -230359,7 +235888,7 @@ ] }, { - "id": 21426, + "id": 21940, "luminance": 0, "opaque": true, "replaceable": false, @@ -230370,7 +235899,7 @@ ] }, { - "id": 21427, + "id": 21941, "luminance": 0, "opaque": true, "replaceable": false, @@ -230380,7 +235909,7 @@ ] }, { - "id": 21428, + "id": 21942, "luminance": 0, "opaque": true, "replaceable": false, @@ -230390,7 +235919,7 @@ ] }, { - "id": 21429, + "id": 21943, "luminance": 0, "opaque": true, "replaceable": false, @@ -230400,7 +235929,7 @@ ] }, { - "id": 21430, + "id": 21944, "luminance": 0, "opaque": true, "replaceable": false, @@ -230410,7 +235939,7 @@ ] }, { - "id": 21431, + "id": 21945, "luminance": 0, "opaque": true, "replaceable": false, @@ -230420,7 +235949,7 @@ ] }, { - "id": 21432, + "id": 21946, "luminance": 0, "opaque": true, "replaceable": false, @@ -230430,7 +235959,7 @@ ] }, { - "id": 21433, + "id": 21947, "luminance": 0, "opaque": true, "replaceable": false, @@ -230441,7 +235970,7 @@ ] }, { - "id": 21434, + "id": 21948, "luminance": 0, "opaque": true, "replaceable": false, @@ -230452,7 +235981,7 @@ ] }, { - "id": 21435, + "id": 21949, "luminance": 0, "opaque": true, "replaceable": false, @@ -230463,7 +235992,7 @@ ] }, { - "id": 21436, + "id": 21950, "luminance": 0, "opaque": true, "replaceable": false, @@ -230474,7 +236003,7 @@ ] }, { - "id": 21437, + "id": 21951, "luminance": 0, "opaque": true, "replaceable": false, @@ -230485,7 +236014,7 @@ ] }, { - "id": 21438, + "id": 21952, "luminance": 0, "opaque": true, "replaceable": false, @@ -230496,7 +236025,7 @@ ] }, { - "id": 21439, + "id": 21953, "luminance": 0, "opaque": true, "replaceable": false, @@ -230507,7 +236036,7 @@ ] }, { - "id": 21440, + "id": 21954, "luminance": 0, "opaque": true, "replaceable": false, @@ -230518,7 +236047,7 @@ ] }, { - "id": 21441, + "id": 21955, "luminance": 0, "opaque": true, "replaceable": false, @@ -230528,7 +236057,7 @@ ] }, { - "id": 21442, + "id": 21956, "luminance": 0, "opaque": true, "replaceable": false, @@ -230538,7 +236067,7 @@ ] }, { - "id": 21443, + "id": 21957, "luminance": 0, "opaque": true, "replaceable": false, @@ -230549,7 +236078,7 @@ ] }, { - "id": 21444, + "id": 21958, "luminance": 0, "opaque": true, "replaceable": false, @@ -230560,7 +236089,7 @@ ] }, { - "id": 21445, + "id": 21959, "luminance": 0, "opaque": true, "replaceable": false, @@ -230571,7 +236100,7 @@ ] }, { - "id": 21446, + "id": 21960, "luminance": 0, "opaque": true, "replaceable": false, @@ -230582,7 +236111,7 @@ ] }, { - "id": 21447, + "id": 21961, "luminance": 0, "opaque": true, "replaceable": false, @@ -230592,7 +236121,7 @@ ] }, { - "id": 21448, + "id": 21962, "luminance": 0, "opaque": true, "replaceable": false, @@ -230602,7 +236131,7 @@ ] }, { - "id": 21449, + "id": 21963, "luminance": 0, "opaque": true, "replaceable": false, @@ -230612,7 +236141,7 @@ ] }, { - "id": 21450, + "id": 21964, "luminance": 0, "opaque": true, "replaceable": false, @@ -230622,7 +236151,7 @@ ] }, { - "id": 21451, + "id": 21965, "luminance": 0, "opaque": true, "replaceable": false, @@ -230632,7 +236161,7 @@ ] }, { - "id": 21452, + "id": 21966, "luminance": 0, "opaque": true, "replaceable": false, @@ -230642,7 +236171,7 @@ ] }, { - "id": 21453, + "id": 21967, "luminance": 0, "opaque": true, "replaceable": false, @@ -230653,7 +236182,7 @@ ] }, { - "id": 21454, + "id": 21968, "luminance": 0, "opaque": true, "replaceable": false, @@ -230664,7 +236193,7 @@ ] }, { - "id": 21455, + "id": 21969, "luminance": 0, "opaque": true, "replaceable": false, @@ -230675,7 +236204,7 @@ ] }, { - "id": 21456, + "id": 21970, "luminance": 0, "opaque": true, "replaceable": false, @@ -230686,7 +236215,7 @@ ] }, { - "id": 21457, + "id": 21971, "luminance": 0, "opaque": true, "replaceable": false, @@ -230697,7 +236226,7 @@ ] }, { - "id": 21458, + "id": 21972, "luminance": 0, "opaque": true, "replaceable": false, @@ -230708,7 +236237,7 @@ ] }, { - "id": 21459, + "id": 21973, "luminance": 0, "opaque": true, "replaceable": false, @@ -230719,7 +236248,7 @@ ] }, { - "id": 21460, + "id": 21974, "luminance": 0, "opaque": true, "replaceable": false, @@ -230730,7 +236259,7 @@ ] }, { - "id": 21461, + "id": 21975, "luminance": 0, "opaque": true, "replaceable": false, @@ -230740,7 +236269,7 @@ ] }, { - "id": 21462, + "id": 21976, "luminance": 0, "opaque": true, "replaceable": false, @@ -230750,7 +236279,7 @@ ] }, { - "id": 21463, + "id": 21977, "luminance": 0, "opaque": true, "replaceable": false, @@ -230761,7 +236290,7 @@ ] }, { - "id": 21464, + "id": 21978, "luminance": 0, "opaque": true, "replaceable": false, @@ -230772,7 +236301,7 @@ ] }, { - "id": 21465, + "id": 21979, "luminance": 0, "opaque": true, "replaceable": false, @@ -230783,7 +236312,7 @@ ] }, { - "id": 21466, + "id": 21980, "luminance": 0, "opaque": true, "replaceable": false, @@ -230794,7 +236323,7 @@ ] }, { - "id": 21467, + "id": 21981, "luminance": 0, "opaque": true, "replaceable": false, @@ -230804,7 +236333,7 @@ ] }, { - "id": 21468, + "id": 21982, "luminance": 0, "opaque": true, "replaceable": false, @@ -230814,7 +236343,7 @@ ] }, { - "id": 21469, + "id": 21983, "luminance": 0, "opaque": true, "replaceable": false, @@ -230824,7 +236353,7 @@ ] }, { - "id": 21470, + "id": 21984, "luminance": 0, "opaque": true, "replaceable": false, @@ -230834,7 +236363,7 @@ ] }, { - "id": 21471, + "id": 21985, "luminance": 0, "opaque": true, "replaceable": false, @@ -230844,7 +236373,7 @@ ] }, { - "id": 21472, + "id": 21986, "luminance": 0, "opaque": true, "replaceable": false, @@ -230854,7 +236383,7 @@ ] }, { - "id": 21473, + "id": 21987, "luminance": 0, "opaque": true, "replaceable": false, @@ -230865,7 +236394,7 @@ ] }, { - "id": 21474, + "id": 21988, "luminance": 0, "opaque": true, "replaceable": false, @@ -230876,7 +236405,7 @@ ] }, { - "id": 21475, + "id": 21989, "luminance": 0, "opaque": true, "replaceable": false, @@ -230887,7 +236416,7 @@ ] }, { - "id": 21476, + "id": 21990, "luminance": 0, "opaque": true, "replaceable": false, @@ -230898,7 +236427,7 @@ ] }, { - "id": 21477, + "id": 21991, "luminance": 0, "opaque": true, "replaceable": false, @@ -230909,7 +236438,7 @@ ] }, { - "id": 21478, + "id": 21992, "luminance": 0, "opaque": true, "replaceable": false, @@ -230920,7 +236449,7 @@ ] }, { - "id": 21479, + "id": 21993, "luminance": 0, "opaque": true, "replaceable": false, @@ -230931,7 +236460,7 @@ ] }, { - "id": 21480, + "id": 21994, "luminance": 0, "opaque": true, "replaceable": false, @@ -230942,7 +236471,7 @@ ] }, { - "id": 21481, + "id": 21995, "luminance": 0, "opaque": true, "replaceable": false, @@ -230952,7 +236481,7 @@ ] }, { - "id": 21482, + "id": 21996, "luminance": 0, "opaque": true, "replaceable": false, @@ -230962,7 +236491,7 @@ ] }, { - "id": 21483, + "id": 21997, "luminance": 0, "opaque": true, "replaceable": false, @@ -230973,7 +236502,7 @@ ] }, { - "id": 21484, + "id": 21998, "luminance": 0, "opaque": true, "replaceable": false, @@ -230984,7 +236513,7 @@ ] }, { - "id": 21485, + "id": 21999, "luminance": 0, "opaque": true, "replaceable": false, @@ -230995,7 +236524,7 @@ ] }, { - "id": 21486, + "id": 22000, "luminance": 0, "opaque": true, "replaceable": false, @@ -231006,7 +236535,7 @@ ] }, { - "id": 21487, + "id": 22001, "luminance": 0, "opaque": true, "replaceable": false, @@ -231016,7 +236545,7 @@ ] }, { - "id": 21488, + "id": 22002, "luminance": 0, "opaque": true, "replaceable": false, @@ -231026,7 +236555,7 @@ ] }, { - "id": 21489, + "id": 22003, "luminance": 0, "opaque": true, "replaceable": false, @@ -231036,7 +236565,7 @@ ] }, { - "id": 21490, + "id": 22004, "luminance": 0, "opaque": true, "replaceable": false, @@ -231048,481 +236577,9 @@ ] }, { - "id": 928, - "name": "oxidized_cut_copper_slab", - "translation_key": "block.minecraft.oxidized_cut_copper_slab", - "item_id": 92, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 21494, - "states": [ - { - "id": 21491, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 21492, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 21493, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 21494, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 21495, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 21496, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 929, - "name": "weathered_cut_copper_slab", - "translation_key": "block.minecraft.weathered_cut_copper_slab", - "item_id": 91, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 21500, - "states": [ - { - "id": 21497, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 21498, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 21499, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 21500, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 21501, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 21502, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 930, - "name": "exposed_cut_copper_slab", - "translation_key": "block.minecraft.exposed_cut_copper_slab", - "item_id": 90, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 21506, - "states": [ - { - "id": 21503, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 21504, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 21505, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 21506, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 21507, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 21508, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 931, - "name": "cut_copper_slab", - "translation_key": "block.minecraft.cut_copper_slab", - "item_id": 89, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 21512, - "states": [ - { - "id": 21509, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 21510, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 21511, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 21512, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 21513, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 21514, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 932, - "name": "waxed_copper_block", - "translation_key": "block.minecraft.waxed_copper_block", - "item_id": 93, - "properties": [], - "default_state_id": 21515, - "states": [ - { - "id": 21515, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 933, - "name": "waxed_weathered_copper", - "translation_key": "block.minecraft.waxed_weathered_copper", - "item_id": 95, - "properties": [], - "default_state_id": 21516, - "states": [ - { - "id": 21516, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 934, - "name": "waxed_exposed_copper", - "translation_key": "block.minecraft.waxed_exposed_copper", - "item_id": 94, - "properties": [], - "default_state_id": 21517, - "states": [ - { - "id": 21517, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 935, - "name": "waxed_oxidized_copper", - "translation_key": "block.minecraft.waxed_oxidized_copper", - "item_id": 96, - "properties": [], - "default_state_id": 21518, - "states": [ - { - "id": 21518, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 936, - "name": "waxed_oxidized_cut_copper", - "translation_key": "block.minecraft.waxed_oxidized_cut_copper", - "item_id": 100, - "properties": [], - "default_state_id": 21519, - "states": [ - { - "id": 21519, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 937, - "name": "waxed_weathered_cut_copper", - "translation_key": "block.minecraft.waxed_weathered_cut_copper", - "item_id": 99, - "properties": [], - "default_state_id": 21520, - "states": [ - { - "id": 21520, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 938, - "name": "waxed_exposed_cut_copper", - "translation_key": "block.minecraft.waxed_exposed_cut_copper", - "item_id": 98, - "properties": [], - "default_state_id": 21521, - "states": [ - { - "id": 21521, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 939, - "name": "waxed_cut_copper", - "translation_key": "block.minecraft.waxed_cut_copper", - "item_id": 97, - "properties": [], - "default_state_id": 21522, - "states": [ - { - "id": 21522, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 940, - "name": "waxed_oxidized_cut_copper_stairs", - "translation_key": "block.minecraft.waxed_oxidized_cut_copper_stairs", + "id": 946, + "name": "waxed_weathered_cut_copper_stairs", + "translation_key": "block.minecraft.waxed_weathered_cut_copper_stairs", "item_id": 104, "properties": [ { @@ -231559,10 +236616,10 @@ ] } ], - "default_state_id": 21534, + "default_state_id": 22016, "states": [ { - "id": 21523, + "id": 22005, "luminance": 0, "opaque": true, "replaceable": false, @@ -231572,7 +236629,7 @@ ] }, { - "id": 21524, + "id": 22006, "luminance": 0, "opaque": true, "replaceable": false, @@ -231582,7 +236639,7 @@ ] }, { - "id": 21525, + "id": 22007, "luminance": 0, "opaque": true, "replaceable": false, @@ -231593,7 +236650,7 @@ ] }, { - "id": 21526, + "id": 22008, "luminance": 0, "opaque": true, "replaceable": false, @@ -231604,7 +236661,7 @@ ] }, { - "id": 21527, + "id": 22009, "luminance": 0, "opaque": true, "replaceable": false, @@ -231615,7 +236672,7 @@ ] }, { - "id": 21528, + "id": 22010, "luminance": 0, "opaque": true, "replaceable": false, @@ -231626,7 +236683,7 @@ ] }, { - "id": 21529, + "id": 22011, "luminance": 0, "opaque": true, "replaceable": false, @@ -231637,7 +236694,7 @@ ] }, { - "id": 21530, + "id": 22012, "luminance": 0, "opaque": true, "replaceable": false, @@ -231648,7 +236705,7 @@ ] }, { - "id": 21531, + "id": 22013, "luminance": 0, "opaque": true, "replaceable": false, @@ -231659,7 +236716,7 @@ ] }, { - "id": 21532, + "id": 22014, "luminance": 0, "opaque": true, "replaceable": false, @@ -231670,7 +236727,7 @@ ] }, { - "id": 21533, + "id": 22015, "luminance": 0, "opaque": true, "replaceable": false, @@ -231680,7 +236737,7 @@ ] }, { - "id": 21534, + "id": 22016, "luminance": 0, "opaque": true, "replaceable": false, @@ -231690,7 +236747,7 @@ ] }, { - "id": 21535, + "id": 22017, "luminance": 0, "opaque": true, "replaceable": false, @@ -231701,7 +236758,7 @@ ] }, { - "id": 21536, + "id": 22018, "luminance": 0, "opaque": true, "replaceable": false, @@ -231712,7 +236769,7 @@ ] }, { - "id": 21537, + "id": 22019, "luminance": 0, "opaque": true, "replaceable": false, @@ -231723,7 +236780,7 @@ ] }, { - "id": 21538, + "id": 22020, "luminance": 0, "opaque": true, "replaceable": false, @@ -231734,7 +236791,7 @@ ] }, { - "id": 21539, + "id": 22021, "luminance": 0, "opaque": true, "replaceable": false, @@ -231744,7 +236801,7 @@ ] }, { - "id": 21540, + "id": 22022, "luminance": 0, "opaque": true, "replaceable": false, @@ -231754,7 +236811,7 @@ ] }, { - "id": 21541, + "id": 22023, "luminance": 0, "opaque": true, "replaceable": false, @@ -231764,7 +236821,7 @@ ] }, { - "id": 21542, + "id": 22024, "luminance": 0, "opaque": true, "replaceable": false, @@ -231774,7 +236831,7 @@ ] }, { - "id": 21543, + "id": 22025, "luminance": 0, "opaque": true, "replaceable": false, @@ -231784,7 +236841,7 @@ ] }, { - "id": 21544, + "id": 22026, "luminance": 0, "opaque": true, "replaceable": false, @@ -231794,7 +236851,7 @@ ] }, { - "id": 21545, + "id": 22027, "luminance": 0, "opaque": true, "replaceable": false, @@ -231805,7 +236862,7 @@ ] }, { - "id": 21546, + "id": 22028, "luminance": 0, "opaque": true, "replaceable": false, @@ -231816,7 +236873,7 @@ ] }, { - "id": 21547, + "id": 22029, "luminance": 0, "opaque": true, "replaceable": false, @@ -231827,7 +236884,7 @@ ] }, { - "id": 21548, + "id": 22030, "luminance": 0, "opaque": true, "replaceable": false, @@ -231838,7 +236895,7 @@ ] }, { - "id": 21549, + "id": 22031, "luminance": 0, "opaque": true, "replaceable": false, @@ -231849,7 +236906,7 @@ ] }, { - "id": 21550, + "id": 22032, "luminance": 0, "opaque": true, "replaceable": false, @@ -231860,7 +236917,7 @@ ] }, { - "id": 21551, + "id": 22033, "luminance": 0, "opaque": true, "replaceable": false, @@ -231871,7 +236928,7 @@ ] }, { - "id": 21552, + "id": 22034, "luminance": 0, "opaque": true, "replaceable": false, @@ -231882,7 +236939,7 @@ ] }, { - "id": 21553, + "id": 22035, "luminance": 0, "opaque": true, "replaceable": false, @@ -231892,7 +236949,7 @@ ] }, { - "id": 21554, + "id": 22036, "luminance": 0, "opaque": true, "replaceable": false, @@ -231902,7 +236959,7 @@ ] }, { - "id": 21555, + "id": 22037, "luminance": 0, "opaque": true, "replaceable": false, @@ -231913,7 +236970,7 @@ ] }, { - "id": 21556, + "id": 22038, "luminance": 0, "opaque": true, "replaceable": false, @@ -231924,7 +236981,7 @@ ] }, { - "id": 21557, + "id": 22039, "luminance": 0, "opaque": true, "replaceable": false, @@ -231935,7 +236992,7 @@ ] }, { - "id": 21558, + "id": 22040, "luminance": 0, "opaque": true, "replaceable": false, @@ -231946,7 +237003,7 @@ ] }, { - "id": 21559, + "id": 22041, "luminance": 0, "opaque": true, "replaceable": false, @@ -231956,7 +237013,7 @@ ] }, { - "id": 21560, + "id": 22042, "luminance": 0, "opaque": true, "replaceable": false, @@ -231966,7 +237023,7 @@ ] }, { - "id": 21561, + "id": 22043, "luminance": 0, "opaque": true, "replaceable": false, @@ -231976,7 +237033,7 @@ ] }, { - "id": 21562, + "id": 22044, "luminance": 0, "opaque": true, "replaceable": false, @@ -231986,7 +237043,7 @@ ] }, { - "id": 21563, + "id": 22045, "luminance": 0, "opaque": true, "replaceable": false, @@ -231996,7 +237053,7 @@ ] }, { - "id": 21564, + "id": 22046, "luminance": 0, "opaque": true, "replaceable": false, @@ -232006,7 +237063,7 @@ ] }, { - "id": 21565, + "id": 22047, "luminance": 0, "opaque": true, "replaceable": false, @@ -232017,7 +237074,7 @@ ] }, { - "id": 21566, + "id": 22048, "luminance": 0, "opaque": true, "replaceable": false, @@ -232028,7 +237085,7 @@ ] }, { - "id": 21567, + "id": 22049, "luminance": 0, "opaque": true, "replaceable": false, @@ -232039,7 +237096,7 @@ ] }, { - "id": 21568, + "id": 22050, "luminance": 0, "opaque": true, "replaceable": false, @@ -232050,7 +237107,7 @@ ] }, { - "id": 21569, + "id": 22051, "luminance": 0, "opaque": true, "replaceable": false, @@ -232061,7 +237118,7 @@ ] }, { - "id": 21570, + "id": 22052, "luminance": 0, "opaque": true, "replaceable": false, @@ -232072,7 +237129,7 @@ ] }, { - "id": 21571, + "id": 22053, "luminance": 0, "opaque": true, "replaceable": false, @@ -232083,7 +237140,7 @@ ] }, { - "id": 21572, + "id": 22054, "luminance": 0, "opaque": true, "replaceable": false, @@ -232094,7 +237151,7 @@ ] }, { - "id": 21573, + "id": 22055, "luminance": 0, "opaque": true, "replaceable": false, @@ -232104,7 +237161,7 @@ ] }, { - "id": 21574, + "id": 22056, "luminance": 0, "opaque": true, "replaceable": false, @@ -232114,7 +237171,7 @@ ] }, { - "id": 21575, + "id": 22057, "luminance": 0, "opaque": true, "replaceable": false, @@ -232125,7 +237182,7 @@ ] }, { - "id": 21576, + "id": 22058, "luminance": 0, "opaque": true, "replaceable": false, @@ -232136,7 +237193,7 @@ ] }, { - "id": 21577, + "id": 22059, "luminance": 0, "opaque": true, "replaceable": false, @@ -232147,7 +237204,7 @@ ] }, { - "id": 21578, + "id": 22060, "luminance": 0, "opaque": true, "replaceable": false, @@ -232158,7 +237215,7 @@ ] }, { - "id": 21579, + "id": 22061, "luminance": 0, "opaque": true, "replaceable": false, @@ -232168,7 +237225,7 @@ ] }, { - "id": 21580, + "id": 22062, "luminance": 0, "opaque": true, "replaceable": false, @@ -232178,7 +237235,7 @@ ] }, { - "id": 21581, + "id": 22063, "luminance": 0, "opaque": true, "replaceable": false, @@ -232188,7 +237245,7 @@ ] }, { - "id": 21582, + "id": 22064, "luminance": 0, "opaque": true, "replaceable": false, @@ -232198,7 +237255,7 @@ ] }, { - "id": 21583, + "id": 22065, "luminance": 0, "opaque": true, "replaceable": false, @@ -232208,7 +237265,7 @@ ] }, { - "id": 21584, + "id": 22066, "luminance": 0, "opaque": true, "replaceable": false, @@ -232218,7 +237275,7 @@ ] }, { - "id": 21585, + "id": 22067, "luminance": 0, "opaque": true, "replaceable": false, @@ -232229,7 +237286,7 @@ ] }, { - "id": 21586, + "id": 22068, "luminance": 0, "opaque": true, "replaceable": false, @@ -232240,7 +237297,7 @@ ] }, { - "id": 21587, + "id": 22069, "luminance": 0, "opaque": true, "replaceable": false, @@ -232251,7 +237308,7 @@ ] }, { - "id": 21588, + "id": 22070, "luminance": 0, "opaque": true, "replaceable": false, @@ -232262,7 +237319,7 @@ ] }, { - "id": 21589, + "id": 22071, "luminance": 0, "opaque": true, "replaceable": false, @@ -232273,7 +237330,7 @@ ] }, { - "id": 21590, + "id": 22072, "luminance": 0, "opaque": true, "replaceable": false, @@ -232284,7 +237341,7 @@ ] }, { - "id": 21591, + "id": 22073, "luminance": 0, "opaque": true, "replaceable": false, @@ -232295,7 +237352,7 @@ ] }, { - "id": 21592, + "id": 22074, "luminance": 0, "opaque": true, "replaceable": false, @@ -232306,7 +237363,7 @@ ] }, { - "id": 21593, + "id": 22075, "luminance": 0, "opaque": true, "replaceable": false, @@ -232316,7 +237373,7 @@ ] }, { - "id": 21594, + "id": 22076, "luminance": 0, "opaque": true, "replaceable": false, @@ -232326,7 +237383,7 @@ ] }, { - "id": 21595, + "id": 22077, "luminance": 0, "opaque": true, "replaceable": false, @@ -232337,7 +237394,7 @@ ] }, { - "id": 21596, + "id": 22078, "luminance": 0, "opaque": true, "replaceable": false, @@ -232348,7 +237405,7 @@ ] }, { - "id": 21597, + "id": 22079, "luminance": 0, "opaque": true, "replaceable": false, @@ -232359,7 +237416,7 @@ ] }, { - "id": 21598, + "id": 22080, "luminance": 0, "opaque": true, "replaceable": false, @@ -232370,7 +237427,7 @@ ] }, { - "id": 21599, + "id": 22081, "luminance": 0, "opaque": true, "replaceable": false, @@ -232380,7 +237437,7 @@ ] }, { - "id": 21600, + "id": 22082, "luminance": 0, "opaque": true, "replaceable": false, @@ -232390,7 +237447,7 @@ ] }, { - "id": 21601, + "id": 22083, "luminance": 0, "opaque": true, "replaceable": false, @@ -232400,7 +237457,7 @@ ] }, { - "id": 21602, + "id": 22084, "luminance": 0, "opaque": true, "replaceable": false, @@ -232412,9 +237469,9 @@ ] }, { - "id": 941, - "name": "waxed_weathered_cut_copper_stairs", - "translation_key": "block.minecraft.waxed_weathered_cut_copper_stairs", + "id": 947, + "name": "waxed_exposed_cut_copper_stairs", + "translation_key": "block.minecraft.waxed_exposed_cut_copper_stairs", "item_id": 103, "properties": [ { @@ -232451,10 +237508,10 @@ ] } ], - "default_state_id": 21614, + "default_state_id": 22096, "states": [ { - "id": 21603, + "id": 22085, "luminance": 0, "opaque": true, "replaceable": false, @@ -232464,7 +237521,7 @@ ] }, { - "id": 21604, + "id": 22086, "luminance": 0, "opaque": true, "replaceable": false, @@ -232474,7 +237531,7 @@ ] }, { - "id": 21605, + "id": 22087, "luminance": 0, "opaque": true, "replaceable": false, @@ -232485,7 +237542,7 @@ ] }, { - "id": 21606, + "id": 22088, "luminance": 0, "opaque": true, "replaceable": false, @@ -232496,7 +237553,7 @@ ] }, { - "id": 21607, + "id": 22089, "luminance": 0, "opaque": true, "replaceable": false, @@ -232507,7 +237564,7 @@ ] }, { - "id": 21608, + "id": 22090, "luminance": 0, "opaque": true, "replaceable": false, @@ -232518,7 +237575,7 @@ ] }, { - "id": 21609, + "id": 22091, "luminance": 0, "opaque": true, "replaceable": false, @@ -232529,7 +237586,7 @@ ] }, { - "id": 21610, + "id": 22092, "luminance": 0, "opaque": true, "replaceable": false, @@ -232540,7 +237597,7 @@ ] }, { - "id": 21611, + "id": 22093, "luminance": 0, "opaque": true, "replaceable": false, @@ -232551,7 +237608,7 @@ ] }, { - "id": 21612, + "id": 22094, "luminance": 0, "opaque": true, "replaceable": false, @@ -232562,7 +237619,7 @@ ] }, { - "id": 21613, + "id": 22095, "luminance": 0, "opaque": true, "replaceable": false, @@ -232572,7 +237629,7 @@ ] }, { - "id": 21614, + "id": 22096, "luminance": 0, "opaque": true, "replaceable": false, @@ -232582,7 +237639,7 @@ ] }, { - "id": 21615, + "id": 22097, "luminance": 0, "opaque": true, "replaceable": false, @@ -232593,7 +237650,7 @@ ] }, { - "id": 21616, + "id": 22098, "luminance": 0, "opaque": true, "replaceable": false, @@ -232604,7 +237661,7 @@ ] }, { - "id": 21617, + "id": 22099, "luminance": 0, "opaque": true, "replaceable": false, @@ -232615,7 +237672,7 @@ ] }, { - "id": 21618, + "id": 22100, "luminance": 0, "opaque": true, "replaceable": false, @@ -232626,7 +237683,7 @@ ] }, { - "id": 21619, + "id": 22101, "luminance": 0, "opaque": true, "replaceable": false, @@ -232636,7 +237693,7 @@ ] }, { - "id": 21620, + "id": 22102, "luminance": 0, "opaque": true, "replaceable": false, @@ -232646,7 +237703,7 @@ ] }, { - "id": 21621, + "id": 22103, "luminance": 0, "opaque": true, "replaceable": false, @@ -232656,7 +237713,7 @@ ] }, { - "id": 21622, + "id": 22104, "luminance": 0, "opaque": true, "replaceable": false, @@ -232666,7 +237723,7 @@ ] }, { - "id": 21623, + "id": 22105, "luminance": 0, "opaque": true, "replaceable": false, @@ -232676,7 +237733,7 @@ ] }, { - "id": 21624, + "id": 22106, "luminance": 0, "opaque": true, "replaceable": false, @@ -232686,7 +237743,7 @@ ] }, { - "id": 21625, + "id": 22107, "luminance": 0, "opaque": true, "replaceable": false, @@ -232697,7 +237754,7 @@ ] }, { - "id": 21626, + "id": 22108, "luminance": 0, "opaque": true, "replaceable": false, @@ -232708,7 +237765,7 @@ ] }, { - "id": 21627, + "id": 22109, "luminance": 0, "opaque": true, "replaceable": false, @@ -232719,7 +237776,7 @@ ] }, { - "id": 21628, + "id": 22110, "luminance": 0, "opaque": true, "replaceable": false, @@ -232730,7 +237787,7 @@ ] }, { - "id": 21629, + "id": 22111, "luminance": 0, "opaque": true, "replaceable": false, @@ -232741,7 +237798,7 @@ ] }, { - "id": 21630, + "id": 22112, "luminance": 0, "opaque": true, "replaceable": false, @@ -232752,7 +237809,7 @@ ] }, { - "id": 21631, + "id": 22113, "luminance": 0, "opaque": true, "replaceable": false, @@ -232763,7 +237820,7 @@ ] }, { - "id": 21632, + "id": 22114, "luminance": 0, "opaque": true, "replaceable": false, @@ -232774,7 +237831,7 @@ ] }, { - "id": 21633, + "id": 22115, "luminance": 0, "opaque": true, "replaceable": false, @@ -232784,7 +237841,7 @@ ] }, { - "id": 21634, + "id": 22116, "luminance": 0, "opaque": true, "replaceable": false, @@ -232794,7 +237851,7 @@ ] }, { - "id": 21635, + "id": 22117, "luminance": 0, "opaque": true, "replaceable": false, @@ -232805,7 +237862,7 @@ ] }, { - "id": 21636, + "id": 22118, "luminance": 0, "opaque": true, "replaceable": false, @@ -232816,7 +237873,7 @@ ] }, { - "id": 21637, + "id": 22119, "luminance": 0, "opaque": true, "replaceable": false, @@ -232827,7 +237884,7 @@ ] }, { - "id": 21638, + "id": 22120, "luminance": 0, "opaque": true, "replaceable": false, @@ -232838,7 +237895,7 @@ ] }, { - "id": 21639, + "id": 22121, "luminance": 0, "opaque": true, "replaceable": false, @@ -232848,7 +237905,7 @@ ] }, { - "id": 21640, + "id": 22122, "luminance": 0, "opaque": true, "replaceable": false, @@ -232858,7 +237915,7 @@ ] }, { - "id": 21641, + "id": 22123, "luminance": 0, "opaque": true, "replaceable": false, @@ -232868,7 +237925,7 @@ ] }, { - "id": 21642, + "id": 22124, "luminance": 0, "opaque": true, "replaceable": false, @@ -232878,7 +237935,7 @@ ] }, { - "id": 21643, + "id": 22125, "luminance": 0, "opaque": true, "replaceable": false, @@ -232888,7 +237945,7 @@ ] }, { - "id": 21644, + "id": 22126, "luminance": 0, "opaque": true, "replaceable": false, @@ -232898,7 +237955,7 @@ ] }, { - "id": 21645, + "id": 22127, "luminance": 0, "opaque": true, "replaceable": false, @@ -232909,7 +237966,7 @@ ] }, { - "id": 21646, + "id": 22128, "luminance": 0, "opaque": true, "replaceable": false, @@ -232920,7 +237977,7 @@ ] }, { - "id": 21647, + "id": 22129, "luminance": 0, "opaque": true, "replaceable": false, @@ -232931,7 +237988,7 @@ ] }, { - "id": 21648, + "id": 22130, "luminance": 0, "opaque": true, "replaceable": false, @@ -232942,7 +237999,7 @@ ] }, { - "id": 21649, + "id": 22131, "luminance": 0, "opaque": true, "replaceable": false, @@ -232953,7 +238010,7 @@ ] }, { - "id": 21650, + "id": 22132, "luminance": 0, "opaque": true, "replaceable": false, @@ -232964,7 +238021,7 @@ ] }, { - "id": 21651, + "id": 22133, "luminance": 0, "opaque": true, "replaceable": false, @@ -232975,7 +238032,7 @@ ] }, { - "id": 21652, + "id": 22134, "luminance": 0, "opaque": true, "replaceable": false, @@ -232986,7 +238043,7 @@ ] }, { - "id": 21653, + "id": 22135, "luminance": 0, "opaque": true, "replaceable": false, @@ -232996,7 +238053,7 @@ ] }, { - "id": 21654, + "id": 22136, "luminance": 0, "opaque": true, "replaceable": false, @@ -233006,7 +238063,7 @@ ] }, { - "id": 21655, + "id": 22137, "luminance": 0, "opaque": true, "replaceable": false, @@ -233017,7 +238074,7 @@ ] }, { - "id": 21656, + "id": 22138, "luminance": 0, "opaque": true, "replaceable": false, @@ -233028,7 +238085,7 @@ ] }, { - "id": 21657, + "id": 22139, "luminance": 0, "opaque": true, "replaceable": false, @@ -233039,7 +238096,7 @@ ] }, { - "id": 21658, + "id": 22140, "luminance": 0, "opaque": true, "replaceable": false, @@ -233050,7 +238107,7 @@ ] }, { - "id": 21659, + "id": 22141, "luminance": 0, "opaque": true, "replaceable": false, @@ -233060,7 +238117,7 @@ ] }, { - "id": 21660, + "id": 22142, "luminance": 0, "opaque": true, "replaceable": false, @@ -233070,7 +238127,7 @@ ] }, { - "id": 21661, + "id": 22143, "luminance": 0, "opaque": true, "replaceable": false, @@ -233080,7 +238137,7 @@ ] }, { - "id": 21662, + "id": 22144, "luminance": 0, "opaque": true, "replaceable": false, @@ -233090,7 +238147,7 @@ ] }, { - "id": 21663, + "id": 22145, "luminance": 0, "opaque": true, "replaceable": false, @@ -233100,7 +238157,7 @@ ] }, { - "id": 21664, + "id": 22146, "luminance": 0, "opaque": true, "replaceable": false, @@ -233110,7 +238167,7 @@ ] }, { - "id": 21665, + "id": 22147, "luminance": 0, "opaque": true, "replaceable": false, @@ -233121,7 +238178,7 @@ ] }, { - "id": 21666, + "id": 22148, "luminance": 0, "opaque": true, "replaceable": false, @@ -233132,7 +238189,7 @@ ] }, { - "id": 21667, + "id": 22149, "luminance": 0, "opaque": true, "replaceable": false, @@ -233143,7 +238200,7 @@ ] }, { - "id": 21668, + "id": 22150, "luminance": 0, "opaque": true, "replaceable": false, @@ -233154,7 +238211,7 @@ ] }, { - "id": 21669, + "id": 22151, "luminance": 0, "opaque": true, "replaceable": false, @@ -233165,7 +238222,7 @@ ] }, { - "id": 21670, + "id": 22152, "luminance": 0, "opaque": true, "replaceable": false, @@ -233176,7 +238233,7 @@ ] }, { - "id": 21671, + "id": 22153, "luminance": 0, "opaque": true, "replaceable": false, @@ -233187,7 +238244,7 @@ ] }, { - "id": 21672, + "id": 22154, "luminance": 0, "opaque": true, "replaceable": false, @@ -233198,7 +238255,7 @@ ] }, { - "id": 21673, + "id": 22155, "luminance": 0, "opaque": true, "replaceable": false, @@ -233208,7 +238265,7 @@ ] }, { - "id": 21674, + "id": 22156, "luminance": 0, "opaque": true, "replaceable": false, @@ -233218,7 +238275,7 @@ ] }, { - "id": 21675, + "id": 22157, "luminance": 0, "opaque": true, "replaceable": false, @@ -233229,7 +238286,7 @@ ] }, { - "id": 21676, + "id": 22158, "luminance": 0, "opaque": true, "replaceable": false, @@ -233240,7 +238297,7 @@ ] }, { - "id": 21677, + "id": 22159, "luminance": 0, "opaque": true, "replaceable": false, @@ -233251,7 +238308,7 @@ ] }, { - "id": 21678, + "id": 22160, "luminance": 0, "opaque": true, "replaceable": false, @@ -233262,7 +238319,7 @@ ] }, { - "id": 21679, + "id": 22161, "luminance": 0, "opaque": true, "replaceable": false, @@ -233272,7 +238329,7 @@ ] }, { - "id": 21680, + "id": 22162, "luminance": 0, "opaque": true, "replaceable": false, @@ -233282,7 +238339,7 @@ ] }, { - "id": 21681, + "id": 22163, "luminance": 0, "opaque": true, "replaceable": false, @@ -233292,7 +238349,7 @@ ] }, { - "id": 21682, + "id": 22164, "luminance": 0, "opaque": true, "replaceable": false, @@ -233304,9 +238361,9 @@ ] }, { - "id": 942, - "name": "waxed_exposed_cut_copper_stairs", - "translation_key": "block.minecraft.waxed_exposed_cut_copper_stairs", + "id": 948, + "name": "waxed_cut_copper_stairs", + "translation_key": "block.minecraft.waxed_cut_copper_stairs", "item_id": 102, "properties": [ { @@ -233343,10 +238400,10 @@ ] } ], - "default_state_id": 21694, + "default_state_id": 22176, "states": [ { - "id": 21683, + "id": 22165, "luminance": 0, "opaque": true, "replaceable": false, @@ -233356,7 +238413,7 @@ ] }, { - "id": 21684, + "id": 22166, "luminance": 0, "opaque": true, "replaceable": false, @@ -233366,7 +238423,7 @@ ] }, { - "id": 21685, + "id": 22167, "luminance": 0, "opaque": true, "replaceable": false, @@ -233377,7 +238434,7 @@ ] }, { - "id": 21686, + "id": 22168, "luminance": 0, "opaque": true, "replaceable": false, @@ -233388,7 +238445,7 @@ ] }, { - "id": 21687, + "id": 22169, "luminance": 0, "opaque": true, "replaceable": false, @@ -233399,7 +238456,7 @@ ] }, { - "id": 21688, + "id": 22170, "luminance": 0, "opaque": true, "replaceable": false, @@ -233410,7 +238467,7 @@ ] }, { - "id": 21689, + "id": 22171, "luminance": 0, "opaque": true, "replaceable": false, @@ -233421,7 +238478,7 @@ ] }, { - "id": 21690, + "id": 22172, "luminance": 0, "opaque": true, "replaceable": false, @@ -233432,7 +238489,7 @@ ] }, { - "id": 21691, + "id": 22173, "luminance": 0, "opaque": true, "replaceable": false, @@ -233443,7 +238500,7 @@ ] }, { - "id": 21692, + "id": 22174, "luminance": 0, "opaque": true, "replaceable": false, @@ -233454,7 +238511,7 @@ ] }, { - "id": 21693, + "id": 22175, "luminance": 0, "opaque": true, "replaceable": false, @@ -233464,7 +238521,7 @@ ] }, { - "id": 21694, + "id": 22176, "luminance": 0, "opaque": true, "replaceable": false, @@ -233474,7 +238531,7 @@ ] }, { - "id": 21695, + "id": 22177, "luminance": 0, "opaque": true, "replaceable": false, @@ -233485,7 +238542,7 @@ ] }, { - "id": 21696, + "id": 22178, "luminance": 0, "opaque": true, "replaceable": false, @@ -233496,7 +238553,7 @@ ] }, { - "id": 21697, + "id": 22179, "luminance": 0, "opaque": true, "replaceable": false, @@ -233507,7 +238564,7 @@ ] }, { - "id": 21698, + "id": 22180, "luminance": 0, "opaque": true, "replaceable": false, @@ -233518,7 +238575,7 @@ ] }, { - "id": 21699, + "id": 22181, "luminance": 0, "opaque": true, "replaceable": false, @@ -233528,7 +238585,7 @@ ] }, { - "id": 21700, + "id": 22182, "luminance": 0, "opaque": true, "replaceable": false, @@ -233538,7 +238595,7 @@ ] }, { - "id": 21701, + "id": 22183, "luminance": 0, "opaque": true, "replaceable": false, @@ -233548,7 +238605,7 @@ ] }, { - "id": 21702, + "id": 22184, "luminance": 0, "opaque": true, "replaceable": false, @@ -233558,7 +238615,7 @@ ] }, { - "id": 21703, + "id": 22185, "luminance": 0, "opaque": true, "replaceable": false, @@ -233568,7 +238625,7 @@ ] }, { - "id": 21704, + "id": 22186, "luminance": 0, "opaque": true, "replaceable": false, @@ -233578,7 +238635,7 @@ ] }, { - "id": 21705, + "id": 22187, "luminance": 0, "opaque": true, "replaceable": false, @@ -233589,7 +238646,7 @@ ] }, { - "id": 21706, + "id": 22188, "luminance": 0, "opaque": true, "replaceable": false, @@ -233600,7 +238657,7 @@ ] }, { - "id": 21707, + "id": 22189, "luminance": 0, "opaque": true, "replaceable": false, @@ -233611,7 +238668,7 @@ ] }, { - "id": 21708, + "id": 22190, "luminance": 0, "opaque": true, "replaceable": false, @@ -233622,7 +238679,7 @@ ] }, { - "id": 21709, + "id": 22191, "luminance": 0, "opaque": true, "replaceable": false, @@ -233633,7 +238690,7 @@ ] }, { - "id": 21710, + "id": 22192, "luminance": 0, "opaque": true, "replaceable": false, @@ -233644,7 +238701,7 @@ ] }, { - "id": 21711, + "id": 22193, "luminance": 0, "opaque": true, "replaceable": false, @@ -233655,7 +238712,7 @@ ] }, { - "id": 21712, + "id": 22194, "luminance": 0, "opaque": true, "replaceable": false, @@ -233666,7 +238723,7 @@ ] }, { - "id": 21713, + "id": 22195, "luminance": 0, "opaque": true, "replaceable": false, @@ -233676,7 +238733,7 @@ ] }, { - "id": 21714, + "id": 22196, "luminance": 0, "opaque": true, "replaceable": false, @@ -233686,7 +238743,7 @@ ] }, { - "id": 21715, + "id": 22197, "luminance": 0, "opaque": true, "replaceable": false, @@ -233697,7 +238754,7 @@ ] }, { - "id": 21716, + "id": 22198, "luminance": 0, "opaque": true, "replaceable": false, @@ -233708,7 +238765,7 @@ ] }, { - "id": 21717, + "id": 22199, "luminance": 0, "opaque": true, "replaceable": false, @@ -233719,7 +238776,7 @@ ] }, { - "id": 21718, + "id": 22200, "luminance": 0, "opaque": true, "replaceable": false, @@ -233730,7 +238787,7 @@ ] }, { - "id": 21719, + "id": 22201, "luminance": 0, "opaque": true, "replaceable": false, @@ -233740,7 +238797,7 @@ ] }, { - "id": 21720, + "id": 22202, "luminance": 0, "opaque": true, "replaceable": false, @@ -233750,7 +238807,7 @@ ] }, { - "id": 21721, + "id": 22203, "luminance": 0, "opaque": true, "replaceable": false, @@ -233760,7 +238817,7 @@ ] }, { - "id": 21722, + "id": 22204, "luminance": 0, "opaque": true, "replaceable": false, @@ -233770,7 +238827,7 @@ ] }, { - "id": 21723, + "id": 22205, "luminance": 0, "opaque": true, "replaceable": false, @@ -233780,7 +238837,7 @@ ] }, { - "id": 21724, + "id": 22206, "luminance": 0, "opaque": true, "replaceable": false, @@ -233790,7 +238847,7 @@ ] }, { - "id": 21725, + "id": 22207, "luminance": 0, "opaque": true, "replaceable": false, @@ -233801,7 +238858,7 @@ ] }, { - "id": 21726, + "id": 22208, "luminance": 0, "opaque": true, "replaceable": false, @@ -233812,7 +238869,7 @@ ] }, { - "id": 21727, + "id": 22209, "luminance": 0, "opaque": true, "replaceable": false, @@ -233823,7 +238880,7 @@ ] }, { - "id": 21728, + "id": 22210, "luminance": 0, "opaque": true, "replaceable": false, @@ -233834,7 +238891,7 @@ ] }, { - "id": 21729, + "id": 22211, "luminance": 0, "opaque": true, "replaceable": false, @@ -233845,7 +238902,7 @@ ] }, { - "id": 21730, + "id": 22212, "luminance": 0, "opaque": true, "replaceable": false, @@ -233856,7 +238913,7 @@ ] }, { - "id": 21731, + "id": 22213, "luminance": 0, "opaque": true, "replaceable": false, @@ -233867,7 +238924,7 @@ ] }, { - "id": 21732, + "id": 22214, "luminance": 0, "opaque": true, "replaceable": false, @@ -233878,7 +238935,7 @@ ] }, { - "id": 21733, + "id": 22215, "luminance": 0, "opaque": true, "replaceable": false, @@ -233888,7 +238945,7 @@ ] }, { - "id": 21734, + "id": 22216, "luminance": 0, "opaque": true, "replaceable": false, @@ -233898,7 +238955,7 @@ ] }, { - "id": 21735, + "id": 22217, "luminance": 0, "opaque": true, "replaceable": false, @@ -233909,7 +238966,7 @@ ] }, { - "id": 21736, + "id": 22218, "luminance": 0, "opaque": true, "replaceable": false, @@ -233920,7 +238977,7 @@ ] }, { - "id": 21737, + "id": 22219, "luminance": 0, "opaque": true, "replaceable": false, @@ -233931,7 +238988,7 @@ ] }, { - "id": 21738, + "id": 22220, "luminance": 0, "opaque": true, "replaceable": false, @@ -233942,7 +238999,7 @@ ] }, { - "id": 21739, + "id": 22221, "luminance": 0, "opaque": true, "replaceable": false, @@ -233952,7 +239009,7 @@ ] }, { - "id": 21740, + "id": 22222, "luminance": 0, "opaque": true, "replaceable": false, @@ -233962,7 +239019,7 @@ ] }, { - "id": 21741, + "id": 22223, "luminance": 0, "opaque": true, "replaceable": false, @@ -233972,7 +239029,7 @@ ] }, { - "id": 21742, + "id": 22224, "luminance": 0, "opaque": true, "replaceable": false, @@ -233982,7 +239039,7 @@ ] }, { - "id": 21743, + "id": 22225, "luminance": 0, "opaque": true, "replaceable": false, @@ -233992,7 +239049,7 @@ ] }, { - "id": 21744, + "id": 22226, "luminance": 0, "opaque": true, "replaceable": false, @@ -234002,7 +239059,7 @@ ] }, { - "id": 21745, + "id": 22227, "luminance": 0, "opaque": true, "replaceable": false, @@ -234013,7 +239070,7 @@ ] }, { - "id": 21746, + "id": 22228, "luminance": 0, "opaque": true, "replaceable": false, @@ -234024,7 +239081,7 @@ ] }, { - "id": 21747, + "id": 22229, "luminance": 0, "opaque": true, "replaceable": false, @@ -234035,7 +239092,7 @@ ] }, { - "id": 21748, + "id": 22230, "luminance": 0, "opaque": true, "replaceable": false, @@ -234046,7 +239103,7 @@ ] }, { - "id": 21749, + "id": 22231, "luminance": 0, "opaque": true, "replaceable": false, @@ -234057,7 +239114,7 @@ ] }, { - "id": 21750, + "id": 22232, "luminance": 0, "opaque": true, "replaceable": false, @@ -234068,7 +239125,7 @@ ] }, { - "id": 21751, + "id": 22233, "luminance": 0, "opaque": true, "replaceable": false, @@ -234079,7 +239136,7 @@ ] }, { - "id": 21752, + "id": 22234, "luminance": 0, "opaque": true, "replaceable": false, @@ -234090,7 +239147,7 @@ ] }, { - "id": 21753, + "id": 22235, "luminance": 0, "opaque": true, "replaceable": false, @@ -234100,7 +239157,7 @@ ] }, { - "id": 21754, + "id": 22236, "luminance": 0, "opaque": true, "replaceable": false, @@ -234110,7 +239167,7 @@ ] }, { - "id": 21755, + "id": 22237, "luminance": 0, "opaque": true, "replaceable": false, @@ -234121,7 +239178,7 @@ ] }, { - "id": 21756, + "id": 22238, "luminance": 0, "opaque": true, "replaceable": false, @@ -234132,7 +239189,7 @@ ] }, { - "id": 21757, + "id": 22239, "luminance": 0, "opaque": true, "replaceable": false, @@ -234143,7 +239200,7 @@ ] }, { - "id": 21758, + "id": 22240, "luminance": 0, "opaque": true, "replaceable": false, @@ -234154,7 +239211,7 @@ ] }, { - "id": 21759, + "id": 22241, "luminance": 0, "opaque": true, "replaceable": false, @@ -234164,7 +239221,7 @@ ] }, { - "id": 21760, + "id": 22242, "luminance": 0, "opaque": true, "replaceable": false, @@ -234174,7 +239231,7 @@ ] }, { - "id": 21761, + "id": 22243, "luminance": 0, "opaque": true, "replaceable": false, @@ -234184,7 +239241,7 @@ ] }, { - "id": 21762, + "id": 22244, "luminance": 0, "opaque": true, "replaceable": false, @@ -234196,35 +239253,17 @@ ] }, { - "id": 943, - "name": "waxed_cut_copper_stairs", - "translation_key": "block.minecraft.waxed_cut_copper_stairs", - "item_id": 101, + "id": 949, + "name": "waxed_oxidized_cut_copper_slab", + "translation_key": "block.minecraft.waxed_oxidized_cut_copper_slab", + "item_id": 109, "properties": [ { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", + "name": "type", "values": [ "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" + "bottom", + "double" ] }, { @@ -234235,862 +239274,68 @@ ] } ], - "default_state_id": 21774, + "default_state_id": 22248, "states": [ { - "id": 21763, + "id": 22245, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 42 + 201 ] }, { - "id": 21764, + "id": 22246, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 42 + 201 ] }, { - "id": 21765, + "id": 22247, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 + 51 ] }, { - "id": 21766, + "id": 22248, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 43, - 44, - 45 + 51 ] }, { - "id": 21767, + "id": 22249, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 + 0 ] }, { - "id": 21768, + "id": 22250, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 21769, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 21770, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 21771, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 21772, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 21773, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 21774, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 21775, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 21776, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 21777, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 21778, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 21779, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 21780, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 21781, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 21782, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 21783, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 21784, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 21785, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 21786, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 21787, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 21788, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 21789, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 21790, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 21791, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 21792, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 21793, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 21794, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 21795, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 21796, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 21797, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 21798, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 21799, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 21800, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 21801, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 21802, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 21803, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 21804, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 21805, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 21806, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 21807, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 21808, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 21809, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 21810, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 21811, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 21812, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 21813, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 21814, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 21815, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 21816, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 21817, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 21818, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 21819, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 21820, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 21821, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 21822, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 21823, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 21824, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 21825, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 21826, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 21827, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 21828, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 21829, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 21830, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 21831, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 21832, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 21833, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 21834, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 21835, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 21836, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 21837, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 21838, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 21839, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 21840, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 21841, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 21842, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 + 0 ] } ] }, { - "id": 944, - "name": "waxed_oxidized_cut_copper_slab", - "translation_key": "block.minecraft.waxed_oxidized_cut_copper_slab", + "id": 950, + "name": "waxed_weathered_cut_copper_slab", + "translation_key": "block.minecraft.waxed_weathered_cut_copper_slab", "item_id": 108, "properties": [ { @@ -235109,10 +239354,10 @@ ] } ], - "default_state_id": 21846, + "default_state_id": 22254, "states": [ { - "id": 21843, + "id": 22251, "luminance": 0, "opaque": true, "replaceable": false, @@ -235121,7 +239366,7 @@ ] }, { - "id": 21844, + "id": 22252, "luminance": 0, "opaque": true, "replaceable": false, @@ -235130,7 +239375,7 @@ ] }, { - "id": 21845, + "id": 22253, "luminance": 0, "opaque": true, "replaceable": false, @@ -235139,7 +239384,7 @@ ] }, { - "id": 21846, + "id": 22254, "luminance": 0, "opaque": true, "replaceable": false, @@ -235148,7 +239393,7 @@ ] }, { - "id": 21847, + "id": 22255, "luminance": 0, "opaque": true, "replaceable": false, @@ -235157,7 +239402,7 @@ ] }, { - "id": 21848, + "id": 22256, "luminance": 0, "opaque": true, "replaceable": false, @@ -235168,9 +239413,9 @@ ] }, { - "id": 945, - "name": "waxed_weathered_cut_copper_slab", - "translation_key": "block.minecraft.waxed_weathered_cut_copper_slab", + "id": 951, + "name": "waxed_exposed_cut_copper_slab", + "translation_key": "block.minecraft.waxed_exposed_cut_copper_slab", "item_id": 107, "properties": [ { @@ -235189,10 +239434,10 @@ ] } ], - "default_state_id": 21852, + "default_state_id": 22260, "states": [ { - "id": 21849, + "id": 22257, "luminance": 0, "opaque": true, "replaceable": false, @@ -235201,7 +239446,7 @@ ] }, { - "id": 21850, + "id": 22258, "luminance": 0, "opaque": true, "replaceable": false, @@ -235210,7 +239455,7 @@ ] }, { - "id": 21851, + "id": 22259, "luminance": 0, "opaque": true, "replaceable": false, @@ -235219,7 +239464,7 @@ ] }, { - "id": 21852, + "id": 22260, "luminance": 0, "opaque": true, "replaceable": false, @@ -235228,7 +239473,7 @@ ] }, { - "id": 21853, + "id": 22261, "luminance": 0, "opaque": true, "replaceable": false, @@ -235237,7 +239482,7 @@ ] }, { - "id": 21854, + "id": 22262, "luminance": 0, "opaque": true, "replaceable": false, @@ -235248,9 +239493,9 @@ ] }, { - "id": 946, - "name": "waxed_exposed_cut_copper_slab", - "translation_key": "block.minecraft.waxed_exposed_cut_copper_slab", + "id": 952, + "name": "waxed_cut_copper_slab", + "translation_key": "block.minecraft.waxed_cut_copper_slab", "item_id": 106, "properties": [ { @@ -235269,10 +239514,10 @@ ] } ], - "default_state_id": 21858, + "default_state_id": 22266, "states": [ { - "id": 21855, + "id": 22263, "luminance": 0, "opaque": true, "replaceable": false, @@ -235281,7 +239526,7 @@ ] }, { - "id": 21856, + "id": 22264, "luminance": 0, "opaque": true, "replaceable": false, @@ -235290,7 +239535,7 @@ ] }, { - "id": 21857, + "id": 22265, "luminance": 0, "opaque": true, "replaceable": false, @@ -235299,7 +239544,7 @@ ] }, { - "id": 21858, + "id": 22266, "luminance": 0, "opaque": true, "replaceable": false, @@ -235308,7 +239553,7 @@ ] }, { - "id": 21859, + "id": 22267, "luminance": 0, "opaque": true, "replaceable": false, @@ -235317,7 +239562,7 @@ ] }, { - "id": 21860, + "id": 22268, "luminance": 0, "opaque": true, "replaceable": false, @@ -235328,90 +239573,10 @@ ] }, { - "id": 947, - "name": "waxed_cut_copper_slab", - "translation_key": "block.minecraft.waxed_cut_copper_slab", - "item_id": 105, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 21864, - "states": [ - { - "id": 21861, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 21862, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 21863, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 21864, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 21865, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 21866, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 948, + "id": 953, "name": "lightning_rod", "translation_key": "block.minecraft.lightning_rod", - "item_id": 648, + "item_id": 651, "properties": [ { "name": "facing", @@ -235439,10 +239604,10 @@ ] } ], - "default_state_id": 21886, + "default_state_id": 22288, "states": [ { - "id": 21867, + "id": 22269, "luminance": 0, "opaque": false, "replaceable": false, @@ -235451,7 +239616,7 @@ ] }, { - "id": 21868, + "id": 22270, "luminance": 0, "opaque": false, "replaceable": false, @@ -235460,7 +239625,7 @@ ] }, { - "id": 21869, + "id": 22271, "luminance": 0, "opaque": false, "replaceable": false, @@ -235469,7 +239634,7 @@ ] }, { - "id": 21870, + "id": 22272, "luminance": 0, "opaque": false, "replaceable": false, @@ -235478,7 +239643,7 @@ ] }, { - "id": 21871, + "id": 22273, "luminance": 0, "opaque": false, "replaceable": false, @@ -235487,7 +239652,7 @@ ] }, { - "id": 21872, + "id": 22274, "luminance": 0, "opaque": false, "replaceable": false, @@ -235496,7 +239661,7 @@ ] }, { - "id": 21873, + "id": 22275, "luminance": 0, "opaque": false, "replaceable": false, @@ -235505,7 +239670,7 @@ ] }, { - "id": 21874, + "id": 22276, "luminance": 0, "opaque": false, "replaceable": false, @@ -235514,7 +239679,7 @@ ] }, { - "id": 21875, + "id": 22277, "luminance": 0, "opaque": false, "replaceable": false, @@ -235523,7 +239688,7 @@ ] }, { - "id": 21876, + "id": 22278, "luminance": 0, "opaque": false, "replaceable": false, @@ -235532,7 +239697,7 @@ ] }, { - "id": 21877, + "id": 22279, "luminance": 0, "opaque": false, "replaceable": false, @@ -235541,7 +239706,7 @@ ] }, { - "id": 21878, + "id": 22280, "luminance": 0, "opaque": false, "replaceable": false, @@ -235550,7 +239715,7 @@ ] }, { - "id": 21879, + "id": 22281, "luminance": 0, "opaque": false, "replaceable": false, @@ -235559,7 +239724,7 @@ ] }, { - "id": 21880, + "id": 22282, "luminance": 0, "opaque": false, "replaceable": false, @@ -235568,7 +239733,7 @@ ] }, { - "id": 21881, + "id": 22283, "luminance": 0, "opaque": false, "replaceable": false, @@ -235577,7 +239742,7 @@ ] }, { - "id": 21882, + "id": 22284, "luminance": 0, "opaque": false, "replaceable": false, @@ -235586,7 +239751,7 @@ ] }, { - "id": 21883, + "id": 22285, "luminance": 0, "opaque": false, "replaceable": false, @@ -235595,7 +239760,7 @@ ] }, { - "id": 21884, + "id": 22286, "luminance": 0, "opaque": false, "replaceable": false, @@ -235604,7 +239769,7 @@ ] }, { - "id": 21885, + "id": 22287, "luminance": 0, "opaque": false, "replaceable": false, @@ -235613,7 +239778,7 @@ ] }, { - "id": 21886, + "id": 22288, "luminance": 0, "opaque": false, "replaceable": false, @@ -235622,7 +239787,7 @@ ] }, { - "id": 21887, + "id": 22289, "luminance": 0, "opaque": false, "replaceable": false, @@ -235631,7 +239796,7 @@ ] }, { - "id": 21888, + "id": 22290, "luminance": 0, "opaque": false, "replaceable": false, @@ -235640,7 +239805,7 @@ ] }, { - "id": 21889, + "id": 22291, "luminance": 0, "opaque": false, "replaceable": false, @@ -235649,7 +239814,7 @@ ] }, { - "id": 21890, + "id": 22292, "luminance": 0, "opaque": false, "replaceable": false, @@ -235660,10 +239825,10 @@ ] }, { - "id": 949, + "id": 954, "name": "pointed_dripstone", "translation_key": "block.minecraft.pointed_dripstone", - "item_id": 1205, + "item_id": 1211, "properties": [ { "name": "thickness", @@ -235690,82 +239855,10 @@ ] } ], - "default_state_id": 21896, + "default_state_id": 22298, "states": [ { - "id": 21891, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 329 - ] - }, - { - "id": 21892, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 329 - ] - }, - { - "id": 21893, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 329 - ] - }, - { - "id": 21894, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 329 - ] - }, - { - "id": 21895, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 330 - ] - }, - { - "id": 21896, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 330 - ] - }, - { - "id": 21897, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 331 - ] - }, - { - "id": 21898, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 331 - ] - }, - { - "id": 21899, + "id": 22293, "luminance": 0, "opaque": false, "replaceable": false, @@ -235774,7 +239867,7 @@ ] }, { - "id": 21900, + "id": 22294, "luminance": 0, "opaque": false, "replaceable": false, @@ -235783,7 +239876,7 @@ ] }, { - "id": 21901, + "id": 22295, "luminance": 0, "opaque": false, "replaceable": false, @@ -235792,7 +239885,7 @@ ] }, { - "id": 21902, + "id": 22296, "luminance": 0, "opaque": false, "replaceable": false, @@ -235801,7 +239894,7 @@ ] }, { - "id": 21903, + "id": 22297, "luminance": 0, "opaque": false, "replaceable": false, @@ -235810,7 +239903,7 @@ ] }, { - "id": 21904, + "id": 22298, "luminance": 0, "opaque": false, "replaceable": false, @@ -235819,25 +239912,7 @@ ] }, { - "id": 21905, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 333 - ] - }, - { - "id": 21906, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 333 - ] - }, - { - "id": 21907, + "id": 22299, "luminance": 0, "opaque": false, "replaceable": false, @@ -235846,7 +239921,7 @@ ] }, { - "id": 21908, + "id": 22300, "luminance": 0, "opaque": false, "replaceable": false, @@ -235855,35 +239930,125 @@ ] }, { - "id": 21909, + "id": 22301, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 334 + 335 ] }, { - "id": 21910, + "id": 22302, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ - 334 + 335 + ] + }, + { + "id": 22303, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 335 + ] + }, + { + "id": 22304, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 335 + ] + }, + { + "id": 22305, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 336 + ] + }, + { + "id": 22306, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 336 + ] + }, + { + "id": 22307, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 336 + ] + }, + { + "id": 22308, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 336 + ] + }, + { + "id": 22309, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 337 + ] + }, + { + "id": 22310, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 337 + ] + }, + { + "id": 22311, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 337 + ] + }, + { + "id": 22312, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 337 ] } ] }, { - "id": 950, + "id": 955, "name": "dripstone_block", "translation_key": "block.minecraft.dripstone_block", "item_id": 13, "properties": [], - "default_state_id": 21911, + "default_state_id": 22313, "states": [ { - "id": 21911, + "id": 22313, "luminance": 0, "opaque": true, "replaceable": false, @@ -235894,10 +240059,10 @@ ] }, { - "id": 951, + "id": 956, "name": "cave_vines", "translation_key": "block.minecraft.cave_vines", - "item_id": 1160, + "item_id": 1166, "properties": [ { "name": "age", @@ -235938,367 +240103,367 @@ ] } ], - "default_state_id": 21913, + "default_state_id": 22315, "states": [ { - "id": 21912, + "id": 22314, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21913, + "id": 22315, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21914, + "id": 22316, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21915, + "id": 22317, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21916, + "id": 22318, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21917, + "id": 22319, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21918, + "id": 22320, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21919, + "id": 22321, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21920, + "id": 22322, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21921, + "id": 22323, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21922, + "id": 22324, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21923, + "id": 22325, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21924, + "id": 22326, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21925, + "id": 22327, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21926, + "id": 22328, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21927, + "id": 22329, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21928, + "id": 22330, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21929, + "id": 22331, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21930, + "id": 22332, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21931, + "id": 22333, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21932, + "id": 22334, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21933, + "id": 22335, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21934, + "id": 22336, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21935, + "id": 22337, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21936, + "id": 22338, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21937, + "id": 22339, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21938, + "id": 22340, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21939, + "id": 22341, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21940, + "id": 22342, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21941, + "id": 22343, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21942, + "id": 22344, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21943, + "id": 22345, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21944, + "id": 22346, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21945, + "id": 22347, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21946, + "id": 22348, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21947, + "id": 22349, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21948, + "id": 22350, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21949, + "id": 22351, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21950, + "id": 22352, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21951, + "id": 22353, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21952, + "id": 22354, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21953, + "id": 22355, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21954, + "id": 22356, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21955, + "id": 22357, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21956, + "id": 22358, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21957, + "id": 22359, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21958, + "id": 22360, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21959, + "id": 22361, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21960, + "id": 22362, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21961, + "id": 22363, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21962, + "id": 22364, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21963, + "id": 22365, "luminance": 0, "opaque": false, "replaceable": false, @@ -236307,7 +240472,7 @@ ] }, { - "id": 952, + "id": 957, "name": "cave_vines_plant", "translation_key": "block.minecraft.cave_vines_plant", "item_id": 0, @@ -236320,17 +240485,17 @@ ] } ], - "default_state_id": 21965, + "default_state_id": 22367, "states": [ { - "id": 21964, + "id": 22366, "luminance": 14, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21965, + "id": 22367, "luminance": 0, "opaque": false, "replaceable": false, @@ -236339,15 +240504,15 @@ ] }, { - "id": 953, + "id": 958, "name": "spore_blossom", "translation_key": "block.minecraft.spore_blossom", - "item_id": 209, + "item_id": 211, "properties": [], - "default_state_id": 21966, + "default_state_id": 22368, "states": [ { - "id": 21966, + "id": 22368, "luminance": 0, "opaque": false, "replaceable": false, @@ -236356,61 +240521,61 @@ ] }, { - "id": 954, + "id": 959, "name": "azalea", "translation_key": "block.minecraft.azalea", - "item_id": 174, - "properties": [], - "default_state_id": 21967, - "states": [ - { - "id": 21967, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 32, - 335, - 336, - 337, - 338 - ] - } - ] - }, - { - "id": 955, - "name": "flowering_azalea", - "translation_key": "block.minecraft.flowering_azalea", "item_id": 175, "properties": [], - "default_state_id": 21968, + "default_state_id": 22369, "states": [ { - "id": 21968, + "id": 22369, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ 32, - 335, - 336, - 337, - 338 + 338, + 339, + 340, + 341 ] } ] }, { - "id": 956, - "name": "moss_carpet", - "translation_key": "block.minecraft.moss_carpet", - "item_id": 221, + "id": 960, + "name": "flowering_azalea", + "translation_key": "block.minecraft.flowering_azalea", + "item_id": 176, "properties": [], - "default_state_id": 21969, + "default_state_id": 22370, "states": [ { - "id": 21969, + "id": 22370, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 32, + 338, + 339, + 340, + 341 + ] + } + ] + }, + { + "id": 961, + "name": "moss_carpet", + "translation_key": "block.minecraft.moss_carpet", + "item_id": 223, + "properties": [], + "default_state_id": 22371, + "states": [ + { + "id": 22371, "luminance": 0, "opaque": true, "replaceable": false, @@ -236421,10 +240586,10 @@ ] }, { - "id": 957, + "id": 962, "name": "pink_petals", "translation_key": "block.minecraft.pink_petals", - "item_id": 222, + "item_id": 224, "properties": [ { "name": "facing", @@ -236445,115 +240610,115 @@ ] } ], - "default_state_id": 21970, + "default_state_id": 22372, "states": [ { - "id": 21970, + "id": 22372, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21971, + "id": 22373, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21972, + "id": 22374, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21973, + "id": 22375, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21974, + "id": 22376, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21975, + "id": 22377, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21976, + "id": 22378, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21977, + "id": 22379, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21978, + "id": 22380, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21979, + "id": 22381, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21980, + "id": 22382, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21981, + "id": 22383, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21982, + "id": 22384, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21983, + "id": 22385, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21984, + "id": 22386, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 21985, + "id": 22387, "luminance": 0, "opaque": false, "replaceable": false, @@ -236562,15 +240727,15 @@ ] }, { - "id": 958, + "id": 963, "name": "moss_block", "translation_key": "block.minecraft.moss_block", - "item_id": 223, + "item_id": 225, "properties": [], - "default_state_id": 21986, + "default_state_id": 22388, "states": [ { - "id": 21986, + "id": 22388, "luminance": 0, "opaque": true, "replaceable": false, @@ -236581,10 +240746,10 @@ ] }, { - "id": 959, + "id": 964, "name": "big_dripleaf", "translation_key": "block.minecraft.big_dripleaf", - "item_id": 225, + "item_id": 227, "properties": [ { "name": "facing", @@ -236612,275 +240777,275 @@ ] } ], - "default_state_id": 21988, + "default_state_id": 22390, "states": [ { - "id": 21987, + "id": 22389, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 21988, + "id": 22390, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 21989, + "id": 22391, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 21990, + "id": 22392, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 21991, + "id": 22393, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 340 + 343 ] }, { - "id": 21992, + "id": 22394, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 340 + 343 ] }, { - "id": 21993, + "id": 22395, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 21994, + "id": 22396, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 21995, + "id": 22397, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 21996, + "id": 22398, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 21997, + "id": 22399, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 21998, + "id": 22400, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 21999, + "id": 22401, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 340 + 343 ] }, { - "id": 22000, + "id": 22402, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 340 + 343 ] }, { - "id": 22001, + "id": 22403, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 22002, + "id": 22404, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 22003, + "id": 22405, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 22004, + "id": 22406, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 22005, + "id": 22407, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 22006, + "id": 22408, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 22007, + "id": 22409, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 340 + 343 ] }, { - "id": 22008, + "id": 22410, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 340 + 343 ] }, { - "id": 22009, + "id": 22411, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 22010, + "id": 22412, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 22011, + "id": 22413, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 22012, + "id": 22414, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 22013, + "id": 22415, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 22014, + "id": 22416, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 339 + 342 ] }, { - "id": 22015, + "id": 22417, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 340 + 343 ] }, { - "id": 22016, + "id": 22418, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 340 + 343 ] }, { - "id": 22017, + "id": 22419, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [] }, { - "id": 22018, + "id": 22420, "luminance": 0, "opaque": true, "replaceable": false, @@ -236889,10 +241054,10 @@ ] }, { - "id": 960, + "id": 965, "name": "big_dripleaf_stem", "translation_key": "block.minecraft.big_dripleaf_stem", - "item_id": 225, + "item_id": 227, "properties": [ { "name": "facing", @@ -236911,59 +241076,59 @@ ] } ], - "default_state_id": 22020, + "default_state_id": 22422, "states": [ { - "id": 22019, + "id": 22421, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22020, + "id": 22422, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22021, + "id": 22423, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22022, + "id": 22424, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22023, + "id": 22425, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22024, + "id": 22426, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22025, + "id": 22427, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22026, + "id": 22428, "luminance": 0, "opaque": false, "replaceable": false, @@ -236972,10 +241137,10 @@ ] }, { - "id": 961, + "id": 966, "name": "small_dripleaf", "translation_key": "block.minecraft.small_dripleaf", - "item_id": 226, + "item_id": 228, "properties": [ { "name": "facing", @@ -237001,115 +241166,115 @@ ] } ], - "default_state_id": 22030, + "default_state_id": 22432, "states": [ { - "id": 22027, + "id": 22429, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22028, + "id": 22430, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22029, + "id": 22431, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22030, + "id": 22432, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22031, + "id": 22433, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22032, + "id": 22434, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22033, + "id": 22435, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22034, + "id": 22436, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22035, + "id": 22437, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22036, + "id": 22438, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22037, + "id": 22439, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22038, + "id": 22440, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22039, + "id": 22441, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22040, + "id": 22442, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22041, + "id": 22443, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [] }, { - "id": 22042, + "id": 22444, "luminance": 0, "opaque": false, "replaceable": false, @@ -237118,10 +241283,10 @@ ] }, { - "id": 962, + "id": 967, "name": "hanging_roots", "translation_key": "block.minecraft.hanging_roots", - "item_id": 224, + "item_id": 226, "properties": [ { "name": "waterlogged", @@ -237131,17 +241296,17 @@ ] } ], - "default_state_id": 22044, + "default_state_id": 22446, "states": [ { - "id": 22043, + "id": 22445, "luminance": 0, "opaque": false, "replaceable": true, "collision_shapes": [] }, { - "id": 22044, + "id": 22446, "luminance": 0, "opaque": false, "replaceable": true, @@ -237150,15 +241315,15 @@ ] }, { - "id": 963, + "id": 968, "name": "rooted_dirt", "translation_key": "block.minecraft.rooted_dirt", "item_id": 18, "properties": [], - "default_state_id": 22045, + "default_state_id": 22447, "states": [ { - "id": 22045, + "id": 22447, "luminance": 0, "opaque": true, "replaceable": false, @@ -237169,15 +241334,15 @@ ] }, { - "id": 964, + "id": 969, "name": "mud", "translation_key": "block.minecraft.mud", "item_id": 19, "properties": [], - "default_state_id": 22046, + "default_state_id": 22448, "states": [ { - "id": 22046, + "id": 22448, "luminance": 0, "opaque": true, "replaceable": false, @@ -237188,7 +241353,7 @@ ] }, { - "id": 965, + "id": 970, "name": "deepslate", "translation_key": "block.minecraft.deepslate", "item_id": 8, @@ -237202,4509 +241367,15 @@ ] } ], - "default_state_id": 22048, + "default_state_id": 22450, "states": [ - { - "id": 22047, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 22048, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 22049, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 966, - "name": "cobbled_deepslate", - "translation_key": "block.minecraft.cobbled_deepslate", - "item_id": 9, - "properties": [], - "default_state_id": 22050, - "states": [ - { - "id": 22050, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 967, - "name": "cobbled_deepslate_stairs", - "translation_key": "block.minecraft.cobbled_deepslate_stairs", - "item_id": 610, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 22062, - "states": [ - { - "id": 22051, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 22052, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 22053, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 22054, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 22055, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 22056, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 22057, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 22058, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 22059, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 22060, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 22061, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 22062, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 22063, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 22064, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 22065, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 22066, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 22067, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 22068, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 22069, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 22070, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 22071, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 22072, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 22073, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 22074, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 22075, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 22076, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 22077, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 22078, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 22079, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 22080, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 22081, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 22082, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 22083, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 22084, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 22085, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 22086, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 22087, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 22088, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 22089, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 22090, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 22091, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 22092, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 22093, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 22094, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 22095, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 22096, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 22097, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 22098, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 22099, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 22100, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 22101, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 22102, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 22103, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 22104, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 22105, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 22106, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 22107, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 22108, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 22109, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 22110, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 22111, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 22112, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 22113, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 22114, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 22115, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 22116, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 22117, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 22118, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 22119, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 22120, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 22121, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 22122, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 22123, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 22124, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 22125, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 22126, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 22127, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 22128, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 22129, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 22130, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - } - ] - }, - { - "id": 968, - "name": "cobbled_deepslate_slab", - "translation_key": "block.minecraft.cobbled_deepslate_slab", - "item_id": 627, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 22134, - "states": [ - { - "id": 22131, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 22132, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 22133, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 22134, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 22135, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 22136, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 969, - "name": "cobbled_deepslate_wall", - "translation_key": "block.minecraft.cobbled_deepslate_wall", - "item_id": 391, - "properties": [ - { - "name": "east", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - }, - { - "name": "west", - "values": [ - "none", - "low", - "tall" - ] - } - ], - "default_state_id": 22140, - "states": [ - { - "id": 22137, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140 - ] - }, - { - "id": 22138, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 22139, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 22140, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140 - ] - }, - { - "id": 22141, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 22142, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 22143, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 22144, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 22145, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 22146, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 22147, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 22148, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 22149, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 22150, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22151, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22152, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 22153, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22154, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22155, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 22156, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22157, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22158, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 22159, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22160, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22161, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 22162, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22163, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22164, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 22165, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22166, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22167, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 22168, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22169, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22170, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 22171, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22172, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22173, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 22174, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22175, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22176, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 22177, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22178, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22179, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 22180, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22181, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22182, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 22183, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22184, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22185, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22186, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22187, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22188, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22189, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22190, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22191, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22192, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22193, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22194, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22195, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22196, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22197, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22198, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22199, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22200, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22201, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22202, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22203, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22204, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22205, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22206, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22207, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22208, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22209, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 22210, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22211, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22212, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 22213, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22214, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22215, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 22216, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22217, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22218, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 22219, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22220, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22221, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22222, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22223, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22224, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22225, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22226, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22227, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22228, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22229, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22230, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22231, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22232, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22233, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22234, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22235, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22236, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22237, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22238, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22239, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22240, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22241, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22242, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22243, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22244, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22245, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 22246, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22247, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22248, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 22249, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22250, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22251, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 22252, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22253, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22254, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 22255, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22256, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22257, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22258, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22259, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22260, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22261, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22262, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22263, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22264, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22265, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22266, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22267, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22268, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22269, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22270, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22271, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22272, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22273, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22274, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22275, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22276, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22277, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22278, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22279, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22280, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22281, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22282, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22283, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22284, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22285, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22286, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22287, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22288, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22289, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22290, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22291, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22292, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22293, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22294, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22295, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22296, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22297, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22298, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22299, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22300, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22301, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22302, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22303, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22304, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22305, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22306, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22307, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22308, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22309, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22310, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22311, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22312, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22313, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22314, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22315, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22316, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22317, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22318, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22319, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22320, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22321, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22322, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22323, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22324, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22325, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22326, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22327, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22328, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22329, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22330, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22331, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22332, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22333, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22334, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22335, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22336, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22337, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22338, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22339, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22340, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22341, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22342, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22343, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22344, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22345, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22346, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22347, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22348, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22349, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22350, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22351, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22352, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22353, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 22354, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22355, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22356, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 22357, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22358, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22359, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 22360, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22361, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22362, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 22363, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22364, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22365, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22366, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22367, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22368, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22369, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22370, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22371, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22372, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22373, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22374, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22375, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22376, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22377, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22378, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22379, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22380, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22381, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22382, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22383, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22384, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22385, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22386, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22387, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22388, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22389, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22390, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22391, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22392, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22393, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22394, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22395, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22396, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22397, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22398, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22399, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22400, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22401, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22402, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22403, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22404, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22405, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22406, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22407, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22408, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22409, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22410, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22411, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22412, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22413, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22414, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22415, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22416, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22417, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22418, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22419, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22420, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22421, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22422, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22423, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22424, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22425, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22426, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22427, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22428, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22429, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22430, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22431, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22432, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22433, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22434, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22435, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22436, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22437, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22438, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22439, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22440, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22441, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22442, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22443, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22444, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22445, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22446, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22447, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22448, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, { "id": 22449, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 0 ] }, { @@ -241713,11 +241384,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 + 0 ] }, { @@ -241725,131 +241392,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22452, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22453, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22454, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22455, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22456, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22457, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22458, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22459, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22460, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - } - ] - }, - { - "id": 970, - "name": "polished_deepslate", - "translation_key": "block.minecraft.polished_deepslate", - "item_id": 10, - "properties": [], - "default_state_id": 22461, - "states": [ - { - "id": 22461, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 0 ] @@ -241858,4612 +241400,27 @@ }, { "id": 971, - "name": "polished_deepslate_stairs", - "translation_key": "block.minecraft.polished_deepslate_stairs", - "item_id": 611, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 22473, + "name": "cobbled_deepslate", + "translation_key": "block.minecraft.cobbled_deepslate", + "item_id": 9, + "properties": [], + "default_state_id": 22452, "states": [ { - "id": 22462, + "id": 22452, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 22463, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 22464, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 22465, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 22466, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 22467, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 22468, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 22469, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 22470, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 22471, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 22472, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 22473, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 22474, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 22475, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 22476, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 22477, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 22478, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 22479, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 22480, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 22481, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 22482, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 22483, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 22484, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 22485, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 22486, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 22487, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 22488, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 22489, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 22490, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 22491, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 22492, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 22493, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 22494, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 22495, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 22496, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 22497, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 22498, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 22499, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 22500, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 22501, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 22502, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 22503, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 22504, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 22505, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 22506, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 22507, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 22508, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 22509, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 22510, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 22511, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 22512, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 22513, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 22514, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 22515, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 22516, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 22517, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 22518, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 22519, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 22520, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 22521, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 22522, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 22523, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 22524, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 22525, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 22526, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 22527, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 22528, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 22529, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 22530, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 22531, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 22532, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 22533, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 22534, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 22535, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 22536, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 22537, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 22538, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 22539, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 22540, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 22541, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 + 0 ] } ] }, { "id": 972, - "name": "polished_deepslate_slab", - "translation_key": "block.minecraft.polished_deepslate_slab", - "item_id": 628, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 22545, - "states": [ - { - "id": 22542, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 22543, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 22544, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 22545, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 22546, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 22547, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 973, - "name": "polished_deepslate_wall", - "translation_key": "block.minecraft.polished_deepslate_wall", - "item_id": 392, - "properties": [ - { - "name": "east", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - }, - { - "name": "west", - "values": [ - "none", - "low", - "tall" - ] - } - ], - "default_state_id": 22551, - "states": [ - { - "id": 22548, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140 - ] - }, - { - "id": 22549, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 22550, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 22551, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140 - ] - }, - { - "id": 22552, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 22553, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 22554, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 22555, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 22556, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 22557, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 22558, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 22559, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 22560, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 22561, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22562, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22563, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 22564, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22565, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22566, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 22567, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22568, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22569, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 22570, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22571, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22572, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 22573, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22574, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22575, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 22576, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22577, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22578, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 22579, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22580, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22581, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 22582, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22583, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22584, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 22585, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22586, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22587, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 22588, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22589, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22590, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 22591, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22592, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22593, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 22594, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22595, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22596, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22597, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22598, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22599, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22600, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22601, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22602, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22603, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22604, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22605, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22606, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22607, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22608, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22609, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22610, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22611, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22612, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22613, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22614, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22615, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22616, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22617, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22618, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22619, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22620, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 22621, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22622, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22623, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 22624, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22625, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22626, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 22627, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22628, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22629, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 22630, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22631, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 22632, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22633, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22634, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22635, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22636, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22637, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22638, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22639, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22640, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22641, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22642, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22643, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22644, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22645, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22646, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22647, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 22648, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22649, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22650, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22651, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22652, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22653, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 22654, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22655, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 22656, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 22657, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22658, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22659, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 22660, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22661, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22662, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 22663, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22664, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22665, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 22666, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22667, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22668, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22669, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22670, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22671, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22672, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22673, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22674, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22675, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22676, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22677, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22678, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22679, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22680, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22681, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22682, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22683, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22684, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22685, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22686, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22687, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22688, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22689, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22690, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22691, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22692, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22693, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22694, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22695, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22696, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22697, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22698, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22699, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22700, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22701, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22702, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22703, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22704, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22705, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22706, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22707, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22708, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22709, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22710, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22711, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22712, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22713, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22714, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22715, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22716, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22717, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22718, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22719, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22720, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22721, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22722, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22723, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22724, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22725, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22726, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22727, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22728, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22729, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22730, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22731, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22732, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22733, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22734, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22735, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22736, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22737, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22738, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22739, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22740, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22741, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22742, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22743, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22744, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22745, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22746, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22747, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22748, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22749, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22750, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22751, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22752, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22753, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22754, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22755, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22756, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22757, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22758, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22759, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22760, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22761, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22762, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22763, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22764, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 22765, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22766, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22767, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 22768, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22769, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 22770, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 22771, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22772, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22773, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 22774, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22775, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 22776, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22777, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22778, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22779, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22780, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22781, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22782, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22783, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22784, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22785, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22786, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22787, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22788, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22789, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22790, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22791, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 22792, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22793, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 22794, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22795, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22796, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22797, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 22798, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22799, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 22800, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22801, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22802, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22803, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22804, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22805, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22806, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22807, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22808, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22809, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22810, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22811, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22812, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22813, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22814, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22815, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22816, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22817, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22818, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22819, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22820, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22821, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22822, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22823, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22824, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22825, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22826, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22827, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22828, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22829, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22830, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22831, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22832, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22833, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22834, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22835, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22836, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22837, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22838, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22839, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 22840, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22841, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 22842, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22843, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22844, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22845, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 22846, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22847, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 22848, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22849, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22850, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22851, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22852, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22853, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22854, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22855, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22856, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22857, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22858, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22859, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22860, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22861, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22862, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22863, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 22864, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22865, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 22866, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22867, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22868, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22869, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 22870, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 22871, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - } - ] - }, - { - "id": 974, - "name": "deepslate_tiles", - "translation_key": "block.minecraft.deepslate_tiles", - "item_id": 324, - "properties": [], - "default_state_id": 22872, - "states": [ - { - "id": 22872, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 975, - "name": "deepslate_tile_stairs", - "translation_key": "block.minecraft.deepslate_tile_stairs", + "name": "cobbled_deepslate_stairs", + "translation_key": "block.minecraft.cobbled_deepslate_stairs", "item_id": 613, "properties": [ { @@ -246500,10 +241457,10 @@ ] } ], - "default_state_id": 22884, + "default_state_id": 22464, "states": [ { - "id": 22873, + "id": 22453, "luminance": 0, "opaque": true, "replaceable": false, @@ -246513,7 +241470,7 @@ ] }, { - "id": 22874, + "id": 22454, "luminance": 0, "opaque": true, "replaceable": false, @@ -246523,7 +241480,7 @@ ] }, { - "id": 22875, + "id": 22455, "luminance": 0, "opaque": true, "replaceable": false, @@ -246534,7 +241491,7 @@ ] }, { - "id": 22876, + "id": 22456, "luminance": 0, "opaque": true, "replaceable": false, @@ -246545,7 +241502,7 @@ ] }, { - "id": 22877, + "id": 22457, "luminance": 0, "opaque": true, "replaceable": false, @@ -246556,7 +241513,7 @@ ] }, { - "id": 22878, + "id": 22458, "luminance": 0, "opaque": true, "replaceable": false, @@ -246567,7 +241524,7 @@ ] }, { - "id": 22879, + "id": 22459, "luminance": 0, "opaque": true, "replaceable": false, @@ -246578,7 +241535,7 @@ ] }, { - "id": 22880, + "id": 22460, "luminance": 0, "opaque": true, "replaceable": false, @@ -246589,7 +241546,7 @@ ] }, { - "id": 22881, + "id": 22461, "luminance": 0, "opaque": true, "replaceable": false, @@ -246600,7 +241557,7 @@ ] }, { - "id": 22882, + "id": 22462, "luminance": 0, "opaque": true, "replaceable": false, @@ -246611,7 +241568,7 @@ ] }, { - "id": 22883, + "id": 22463, "luminance": 0, "opaque": true, "replaceable": false, @@ -246621,7 +241578,7 @@ ] }, { - "id": 22884, + "id": 22464, "luminance": 0, "opaque": true, "replaceable": false, @@ -246631,7 +241588,7 @@ ] }, { - "id": 22885, + "id": 22465, "luminance": 0, "opaque": true, "replaceable": false, @@ -246642,7 +241599,7 @@ ] }, { - "id": 22886, + "id": 22466, "luminance": 0, "opaque": true, "replaceable": false, @@ -246653,7 +241610,7 @@ ] }, { - "id": 22887, + "id": 22467, "luminance": 0, "opaque": true, "replaceable": false, @@ -246664,7 +241621,7 @@ ] }, { - "id": 22888, + "id": 22468, "luminance": 0, "opaque": true, "replaceable": false, @@ -246675,7 +241632,7 @@ ] }, { - "id": 22889, + "id": 22469, "luminance": 0, "opaque": true, "replaceable": false, @@ -246685,7 +241642,7 @@ ] }, { - "id": 22890, + "id": 22470, "luminance": 0, "opaque": true, "replaceable": false, @@ -246695,7 +241652,7 @@ ] }, { - "id": 22891, + "id": 22471, "luminance": 0, "opaque": true, "replaceable": false, @@ -246705,7 +241662,7 @@ ] }, { - "id": 22892, + "id": 22472, "luminance": 0, "opaque": true, "replaceable": false, @@ -246715,7 +241672,7 @@ ] }, { - "id": 22893, + "id": 22473, "luminance": 0, "opaque": true, "replaceable": false, @@ -246725,7 +241682,7 @@ ] }, { - "id": 22894, + "id": 22474, "luminance": 0, "opaque": true, "replaceable": false, @@ -246735,7 +241692,7 @@ ] }, { - "id": 22895, + "id": 22475, "luminance": 0, "opaque": true, "replaceable": false, @@ -246746,7 +241703,7 @@ ] }, { - "id": 22896, + "id": 22476, "luminance": 0, "opaque": true, "replaceable": false, @@ -246757,7 +241714,7 @@ ] }, { - "id": 22897, + "id": 22477, "luminance": 0, "opaque": true, "replaceable": false, @@ -246768,7 +241725,7 @@ ] }, { - "id": 22898, + "id": 22478, "luminance": 0, "opaque": true, "replaceable": false, @@ -246779,7 +241736,7 @@ ] }, { - "id": 22899, + "id": 22479, "luminance": 0, "opaque": true, "replaceable": false, @@ -246790,7 +241747,7 @@ ] }, { - "id": 22900, + "id": 22480, "luminance": 0, "opaque": true, "replaceable": false, @@ -246801,7 +241758,7 @@ ] }, { - "id": 22901, + "id": 22481, "luminance": 0, "opaque": true, "replaceable": false, @@ -246812,7 +241769,7 @@ ] }, { - "id": 22902, + "id": 22482, "luminance": 0, "opaque": true, "replaceable": false, @@ -246823,7 +241780,7 @@ ] }, { - "id": 22903, + "id": 22483, "luminance": 0, "opaque": true, "replaceable": false, @@ -246833,7 +241790,7 @@ ] }, { - "id": 22904, + "id": 22484, "luminance": 0, "opaque": true, "replaceable": false, @@ -246843,7 +241800,7 @@ ] }, { - "id": 22905, + "id": 22485, "luminance": 0, "opaque": true, "replaceable": false, @@ -246854,7 +241811,7 @@ ] }, { - "id": 22906, + "id": 22486, "luminance": 0, "opaque": true, "replaceable": false, @@ -246865,7 +241822,7 @@ ] }, { - "id": 22907, + "id": 22487, "luminance": 0, "opaque": true, "replaceable": false, @@ -246876,7 +241833,7 @@ ] }, { - "id": 22908, + "id": 22488, "luminance": 0, "opaque": true, "replaceable": false, @@ -246887,7 +241844,7 @@ ] }, { - "id": 22909, + "id": 22489, "luminance": 0, "opaque": true, "replaceable": false, @@ -246897,7 +241854,7 @@ ] }, { - "id": 22910, + "id": 22490, "luminance": 0, "opaque": true, "replaceable": false, @@ -246907,7 +241864,7 @@ ] }, { - "id": 22911, + "id": 22491, "luminance": 0, "opaque": true, "replaceable": false, @@ -246917,7 +241874,7 @@ ] }, { - "id": 22912, + "id": 22492, "luminance": 0, "opaque": true, "replaceable": false, @@ -246927,7 +241884,7 @@ ] }, { - "id": 22913, + "id": 22493, "luminance": 0, "opaque": true, "replaceable": false, @@ -246937,7 +241894,7 @@ ] }, { - "id": 22914, + "id": 22494, "luminance": 0, "opaque": true, "replaceable": false, @@ -246947,7 +241904,7 @@ ] }, { - "id": 22915, + "id": 22495, "luminance": 0, "opaque": true, "replaceable": false, @@ -246958,7 +241915,7 @@ ] }, { - "id": 22916, + "id": 22496, "luminance": 0, "opaque": true, "replaceable": false, @@ -246969,7 +241926,7 @@ ] }, { - "id": 22917, + "id": 22497, "luminance": 0, "opaque": true, "replaceable": false, @@ -246980,7 +241937,7 @@ ] }, { - "id": 22918, + "id": 22498, "luminance": 0, "opaque": true, "replaceable": false, @@ -246991,7 +241948,7 @@ ] }, { - "id": 22919, + "id": 22499, "luminance": 0, "opaque": true, "replaceable": false, @@ -247002,7 +241959,7 @@ ] }, { - "id": 22920, + "id": 22500, "luminance": 0, "opaque": true, "replaceable": false, @@ -247013,7 +241970,7 @@ ] }, { - "id": 22921, + "id": 22501, "luminance": 0, "opaque": true, "replaceable": false, @@ -247024,7 +241981,7 @@ ] }, { - "id": 22922, + "id": 22502, "luminance": 0, "opaque": true, "replaceable": false, @@ -247035,7 +241992,7 @@ ] }, { - "id": 22923, + "id": 22503, "luminance": 0, "opaque": true, "replaceable": false, @@ -247045,7 +242002,7 @@ ] }, { - "id": 22924, + "id": 22504, "luminance": 0, "opaque": true, "replaceable": false, @@ -247055,7 +242012,7 @@ ] }, { - "id": 22925, + "id": 22505, "luminance": 0, "opaque": true, "replaceable": false, @@ -247066,7 +242023,7 @@ ] }, { - "id": 22926, + "id": 22506, "luminance": 0, "opaque": true, "replaceable": false, @@ -247077,7 +242034,7 @@ ] }, { - "id": 22927, + "id": 22507, "luminance": 0, "opaque": true, "replaceable": false, @@ -247088,7 +242045,7 @@ ] }, { - "id": 22928, + "id": 22508, "luminance": 0, "opaque": true, "replaceable": false, @@ -247099,7 +242056,7 @@ ] }, { - "id": 22929, + "id": 22509, "luminance": 0, "opaque": true, "replaceable": false, @@ -247109,7 +242066,7 @@ ] }, { - "id": 22930, + "id": 22510, "luminance": 0, "opaque": true, "replaceable": false, @@ -247119,7 +242076,7 @@ ] }, { - "id": 22931, + "id": 22511, "luminance": 0, "opaque": true, "replaceable": false, @@ -247129,7 +242086,7 @@ ] }, { - "id": 22932, + "id": 22512, "luminance": 0, "opaque": true, "replaceable": false, @@ -247139,7 +242096,7 @@ ] }, { - "id": 22933, + "id": 22513, "luminance": 0, "opaque": true, "replaceable": false, @@ -247149,7 +242106,7 @@ ] }, { - "id": 22934, + "id": 22514, "luminance": 0, "opaque": true, "replaceable": false, @@ -247159,7 +242116,7 @@ ] }, { - "id": 22935, + "id": 22515, "luminance": 0, "opaque": true, "replaceable": false, @@ -247170,7 +242127,7 @@ ] }, { - "id": 22936, + "id": 22516, "luminance": 0, "opaque": true, "replaceable": false, @@ -247181,7 +242138,7 @@ ] }, { - "id": 22937, + "id": 22517, "luminance": 0, "opaque": true, "replaceable": false, @@ -247192,7 +242149,7 @@ ] }, { - "id": 22938, + "id": 22518, "luminance": 0, "opaque": true, "replaceable": false, @@ -247203,7 +242160,7 @@ ] }, { - "id": 22939, + "id": 22519, "luminance": 0, "opaque": true, "replaceable": false, @@ -247214,7 +242171,7 @@ ] }, { - "id": 22940, + "id": 22520, "luminance": 0, "opaque": true, "replaceable": false, @@ -247225,7 +242182,7 @@ ] }, { - "id": 22941, + "id": 22521, "luminance": 0, "opaque": true, "replaceable": false, @@ -247236,7 +242193,7 @@ ] }, { - "id": 22942, + "id": 22522, "luminance": 0, "opaque": true, "replaceable": false, @@ -247247,7 +242204,7 @@ ] }, { - "id": 22943, + "id": 22523, "luminance": 0, "opaque": true, "replaceable": false, @@ -247257,7 +242214,7 @@ ] }, { - "id": 22944, + "id": 22524, "luminance": 0, "opaque": true, "replaceable": false, @@ -247267,7 +242224,7 @@ ] }, { - "id": 22945, + "id": 22525, "luminance": 0, "opaque": true, "replaceable": false, @@ -247278,7 +242235,7 @@ ] }, { - "id": 22946, + "id": 22526, "luminance": 0, "opaque": true, "replaceable": false, @@ -247289,7 +242246,7 @@ ] }, { - "id": 22947, + "id": 22527, "luminance": 0, "opaque": true, "replaceable": false, @@ -247300,7 +242257,7 @@ ] }, { - "id": 22948, + "id": 22528, "luminance": 0, "opaque": true, "replaceable": false, @@ -247311,7 +242268,7 @@ ] }, { - "id": 22949, + "id": 22529, "luminance": 0, "opaque": true, "replaceable": false, @@ -247321,7 +242278,7 @@ ] }, { - "id": 22950, + "id": 22530, "luminance": 0, "opaque": true, "replaceable": false, @@ -247331,7 +242288,7 @@ ] }, { - "id": 22951, + "id": 22531, "luminance": 0, "opaque": true, "replaceable": false, @@ -247341,7 +242298,7 @@ ] }, { - "id": 22952, + "id": 22532, "luminance": 0, "opaque": true, "replaceable": false, @@ -247353,9 +242310,9 @@ ] }, { - "id": 976, - "name": "deepslate_tile_slab", - "translation_key": "block.minecraft.deepslate_tile_slab", + "id": 973, + "name": "cobbled_deepslate_slab", + "translation_key": "block.minecraft.cobbled_deepslate_slab", "item_id": 630, "properties": [ { @@ -247374,10 +242331,10 @@ ] } ], - "default_state_id": 22956, + "default_state_id": 22536, "states": [ { - "id": 22953, + "id": 22533, "luminance": 0, "opaque": true, "replaceable": false, @@ -247386,7 +242343,7 @@ ] }, { - "id": 22954, + "id": 22534, "luminance": 0, "opaque": true, "replaceable": false, @@ -247395,7 +242352,7 @@ ] }, { - "id": 22955, + "id": 22535, "luminance": 0, "opaque": true, "replaceable": false, @@ -247404,7 +242361,7 @@ ] }, { - "id": 22956, + "id": 22536, "luminance": 0, "opaque": true, "replaceable": false, @@ -247413,7 +242370,7 @@ ] }, { - "id": 22957, + "id": 22537, "luminance": 0, "opaque": true, "replaceable": false, @@ -247422,7 +242379,7 @@ ] }, { - "id": 22958, + "id": 22538, "luminance": 0, "opaque": true, "replaceable": false, @@ -247433,4613 +242390,9 @@ ] }, { - "id": 977, - "name": "deepslate_tile_wall", - "translation_key": "block.minecraft.deepslate_tile_wall", - "item_id": 394, - "properties": [ - { - "name": "east", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "north", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "south", - "values": [ - "none", - "low", - "tall" - ] - }, - { - "name": "up", - "values": [ - "true", - "false" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - }, - { - "name": "west", - "values": [ - "none", - "low", - "tall" - ] - } - ], - "default_state_id": 22962, - "states": [ - { - "id": 22959, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140 - ] - }, - { - "id": 22960, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 22961, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 22962, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140 - ] - }, - { - "id": 22963, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 22964, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143 - ] - }, - { - "id": 22965, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 22966, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 22967, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 22968, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 22969, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 22970, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 22971, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 22972, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22973, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22974, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 22975, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22976, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22977, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 22978, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22979, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22980, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 22981, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22982, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22983, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 22984, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22985, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22986, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145 - ] - }, - { - "id": 22987, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22988, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 145 - ] - }, - { - "id": 22989, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 22990, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22991, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22992, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146 - ] - }, - { - "id": 22993, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22994, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 147 - ] - }, - { - "id": 22995, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 22996, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22997, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 22998, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 22999, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 23000, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 23001, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 23002, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23003, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23004, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 23005, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23006, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23007, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 23008, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23009, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23010, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 23011, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23012, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23013, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 23014, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23015, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23016, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 23017, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23018, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23019, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 23020, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23021, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23022, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 23023, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23024, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23025, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 23026, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23027, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23028, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 23029, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23030, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23031, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 23032, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 23033, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 23034, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148 - ] - }, - { - "id": 23035, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 23036, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148 - ] - }, - { - "id": 23037, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 23038, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23039, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23040, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 23041, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23042, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23043, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 23044, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23045, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23046, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 23047, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23048, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23049, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 23050, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23051, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23052, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 23053, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23054, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23055, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 23056, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23057, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23058, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145 - ] - }, - { - "id": 23059, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23060, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23061, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 23062, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23063, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23064, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 23065, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23066, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23067, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 23068, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 23069, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 23070, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 23071, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 23072, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 23073, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 23074, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23075, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23076, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 23077, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23078, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23079, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 23080, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23081, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23082, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 23083, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23084, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23085, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 23086, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23087, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23088, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 23089, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23090, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23091, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 23092, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23093, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23094, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 23095, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23096, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23097, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 23098, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23099, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23100, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 23101, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23102, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23103, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 23104, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23105, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23106, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 23107, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23108, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23109, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23110, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23111, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23112, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23113, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23114, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23115, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23116, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23117, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23118, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23119, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23120, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23121, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23122, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23123, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23124, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23125, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23126, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23127, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23128, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23129, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23130, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23131, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23132, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23133, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23134, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23135, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23136, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23137, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23138, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23139, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 23140, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23141, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23142, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 23143, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23144, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23145, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23146, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23147, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23148, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23149, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23150, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23151, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23152, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23153, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23154, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23155, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23156, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23157, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23158, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23159, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23160, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23161, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23162, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23163, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23164, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23165, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23166, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23167, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23168, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23169, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23170, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23171, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23172, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23173, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23174, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23175, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 23176, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 23177, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 23178, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 152 - ] - }, - { - "id": 23179, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 23180, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143 - ] - }, - { - "id": 23181, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 23182, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23183, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23184, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 23185, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23186, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23187, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 23188, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23189, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23190, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 23191, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23192, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23193, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 23194, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23195, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23196, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 23197, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23198, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23199, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 23200, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23201, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23202, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 145, - 152 - ] - }, - { - "id": 23203, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23204, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 145 - ] - }, - { - "id": 23205, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 23206, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23207, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23208, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 23209, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23210, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23211, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 23212, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23213, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23214, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 23215, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23216, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23217, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23218, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23219, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23220, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23221, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23222, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23223, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23224, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23225, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23226, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23227, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23228, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23229, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23230, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23231, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23232, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23233, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23234, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23235, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23236, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23237, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23238, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23239, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23240, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23241, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23242, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23243, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23244, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23245, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23246, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23247, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 23248, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23249, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23250, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 152 - ] - }, - { - "id": 23251, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23252, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148 - ] - }, - { - "id": 23253, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23254, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23255, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23256, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23257, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23258, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23259, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23260, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23261, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23262, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23263, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23264, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23265, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23266, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23267, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23268, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23269, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23270, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23271, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23272, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23273, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23274, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23275, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23276, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23277, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23278, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23279, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23280, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23281, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23282, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - } - ] - }, - { - "id": 978, - "name": "deepslate_bricks", - "translation_key": "block.minecraft.deepslate_bricks", - "item_id": 322, - "properties": [], - "default_state_id": 23283, - "states": [ - { - "id": 23283, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 979, - "name": "deepslate_brick_stairs", - "translation_key": "block.minecraft.deepslate_brick_stairs", - "item_id": 612, - "properties": [ - { - "name": "facing", - "values": [ - "north", - "south", - "west", - "east" - ] - }, - { - "name": "half", - "values": [ - "top", - "bottom" - ] - }, - { - "name": "shape", - "values": [ - "straight", - "inner_left", - "inner_right", - "outer_left", - "outer_right" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 23295, - "states": [ - { - "id": 23284, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 23285, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 42 - ] - }, - { - "id": 23286, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 23287, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 23288, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 23289, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 23290, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 23291, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 23292, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 23293, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 23294, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 23295, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52 - ] - }, - { - "id": 23296, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 23297, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 23298, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 23299, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 23300, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 23301, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 23302, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 23303, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 23304, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 23305, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 52 - ] - }, - { - "id": 23306, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 23307, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 23308, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 23309, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 23310, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 23311, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 23312, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 23313, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 23314, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 23315, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42 - ] - }, - { - "id": 23316, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 23317, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 23318, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 23319, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 23320, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 23321, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 23322, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 23323, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 23324, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 23325, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 56 - ] - }, - { - "id": 23326, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 23327, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 46, - 49 - ] - }, - { - "id": 23328, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 23329, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 43, - 44, - 45 - ] - }, - { - "id": 23330, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 23331, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 55, - 52, - 45 - ] - }, - { - "id": 23332, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 23333, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 48, - 42, - 49 - ] - }, - { - "id": 23334, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 23335, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50 - ] - }, - { - "id": 23336, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 23337, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 45 - ] - }, - { - "id": 23338, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 23339, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 50, - 49 - ] - }, - { - "id": 23340, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 23341, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 47 - ] - }, - { - "id": 23342, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 23343, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 53 - ] - }, - { - "id": 23344, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 23345, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 57, - 50 - ] - }, - { - "id": 23346, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 23347, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 41, - 46, - 47 - ] - }, - { - "id": 23348, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 23349, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 54, - 44, - 53 - ] - }, - { - "id": 23350, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 23351, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 44, - 50, - 45 - ] - }, - { - "id": 23352, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 23353, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 46, - 50, - 49 - ] - }, - { - "id": 23354, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 23355, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 56 - ] - }, - { - "id": 23356, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 23357, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 52, - 45 - ] - }, - { - "id": 23358, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 23359, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 42, - 49 - ] - }, - { - "id": 23360, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 23361, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 49 - ] - }, - { - "id": 23362, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - }, - { - "id": 23363, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51, - 45 - ] - } - ] - }, - { - "id": 980, - "name": "deepslate_brick_slab", - "translation_key": "block.minecraft.deepslate_brick_slab", - "item_id": 629, - "properties": [ - { - "name": "type", - "values": [ - "top", - "bottom", - "double" - ] - }, - { - "name": "waterlogged", - "values": [ - "true", - "false" - ] - } - ], - "default_state_id": 23367, - "states": [ - { - "id": 23364, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 23365, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 201 - ] - }, - { - "id": 23366, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 23367, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 51 - ] - }, - { - "id": 23368, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 23369, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - } - ] - }, - { - "id": 981, - "name": "deepslate_brick_wall", - "translation_key": "block.minecraft.deepslate_brick_wall", + "id": 974, + "name": "cobbled_deepslate_wall", + "translation_key": "block.minecraft.cobbled_deepslate_wall", "item_id": 393, "properties": [ { @@ -252089,10 +242442,10 @@ ] } ], - "default_state_id": 23373, + "default_state_id": 22542, "states": [ { - "id": 23370, + "id": 22539, "luminance": 0, "opaque": true, "replaceable": false, @@ -252101,7 +242454,7 @@ ] }, { - "id": 23371, + "id": 22540, "luminance": 0, "opaque": true, "replaceable": false, @@ -252111,15 +242464,9304 @@ 143 ] }, + { + "id": 22541, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 22542, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140 + ] + }, + { + "id": 22543, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 22544, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 22545, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 22546, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 22547, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 22548, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 22549, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 22550, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 22551, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 22552, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22553, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22554, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 22555, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22556, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22557, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 22558, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22559, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22560, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 22561, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22562, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22563, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 22564, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22565, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22566, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 22567, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22568, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22569, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 22570, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22571, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22572, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 22573, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22574, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22575, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 22576, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 22577, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 22578, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 22579, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 22580, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 22581, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 22582, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 22583, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 22584, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 22585, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 22586, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 22587, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 22588, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22589, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22590, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 22591, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22592, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22593, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 22594, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22595, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22596, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 22597, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22598, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22599, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 22600, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22601, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22602, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 22603, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22604, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22605, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 22606, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22607, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22608, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 22609, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22610, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22611, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 22612, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 22613, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 22614, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 22615, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 22616, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 22617, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 22618, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 22619, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 22620, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 22621, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 22622, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 22623, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 22624, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22625, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22626, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 22627, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22628, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22629, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 22630, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22631, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22632, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 22633, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22634, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22635, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 22636, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22637, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22638, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 22639, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22640, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22641, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 22642, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22643, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22644, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 22645, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22646, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 22647, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 22648, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 22649, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 22650, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 22651, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 22652, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 22653, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 22654, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 22655, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 22656, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 22657, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 22658, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 22659, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 22660, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22661, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22662, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 22663, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22664, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22665, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 22666, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22667, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22668, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 22669, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22670, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22671, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 22672, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22673, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22674, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 22675, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22676, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22677, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 22678, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22679, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22680, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 22681, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22682, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22683, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 22684, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22685, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22686, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 22687, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22688, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22689, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 22690, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22691, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22692, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 22693, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22694, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22695, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22696, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22697, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22698, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22699, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22700, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22701, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22702, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22703, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22704, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22705, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22706, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22707, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22708, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22709, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22710, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22711, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22712, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22713, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22714, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22715, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22716, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22717, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22718, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22719, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 22720, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22721, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22722, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 22723, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22724, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22725, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 22726, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22727, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22728, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 22729, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22730, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22731, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22732, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22733, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22734, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22735, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22736, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22737, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22738, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22739, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22740, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22741, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22742, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22743, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22744, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22745, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22746, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22747, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22748, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22749, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22750, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22751, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22752, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22753, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22754, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22755, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 22756, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 22757, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 22758, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 22759, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 22760, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 22761, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 22762, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 22763, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 22764, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 22765, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 22766, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 22767, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 22768, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22769, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22770, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 22771, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22772, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22773, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 22774, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22775, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22776, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 22777, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22778, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22779, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 22780, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22781, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22782, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 22783, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22784, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 22785, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 22786, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22787, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22788, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 22789, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22790, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 22791, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 22792, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22793, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22794, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 22795, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22796, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22797, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 22798, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22799, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22800, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 22801, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22802, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22803, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22804, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22805, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22806, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22807, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22808, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22809, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22810, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22811, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22812, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22813, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22814, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22815, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22816, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22817, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22818, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22819, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22820, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22821, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22822, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22823, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22824, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22825, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22826, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22827, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 22828, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22829, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22830, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 22831, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22832, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 22833, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 22834, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22835, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22836, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 22837, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22838, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 22839, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22840, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22841, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22842, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22843, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22844, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22845, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22846, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22847, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22848, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22849, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22850, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22851, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22852, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22853, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22854, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 22855, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22856, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 22857, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22858, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22859, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22860, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 22861, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 22862, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + } + ] + }, + { + "id": 975, + "name": "polished_deepslate", + "translation_key": "block.minecraft.polished_deepslate", + "item_id": 10, + "properties": [], + "default_state_id": 22863, + "states": [ + { + "id": 22863, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 976, + "name": "polished_deepslate_stairs", + "translation_key": "block.minecraft.polished_deepslate_stairs", + "item_id": 614, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 22875, + "states": [ + { + "id": 22864, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 22865, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 22866, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 22867, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 22868, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 22869, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 22870, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 22871, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 22872, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 22873, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 22874, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 22875, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 22876, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 22877, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 22878, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 22879, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 22880, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 22881, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 22882, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 22883, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 22884, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 22885, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 22886, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 22887, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 22888, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 22889, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 22890, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 22891, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 22892, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 22893, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 22894, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 22895, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 22896, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 22897, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 22898, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 22899, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 22900, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 22901, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 22902, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 22903, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 22904, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 22905, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 22906, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 22907, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 22908, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 22909, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 22910, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 22911, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 22912, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 22913, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 22914, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 22915, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 22916, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 22917, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 22918, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 22919, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 22920, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 22921, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 22922, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 22923, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 22924, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 22925, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 22926, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 22927, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 22928, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 22929, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 22930, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 22931, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 22932, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 22933, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 22934, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 22935, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 22936, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 22937, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 22938, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 22939, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 22940, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 22941, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 22942, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 22943, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 977, + "name": "polished_deepslate_slab", + "translation_key": "block.minecraft.polished_deepslate_slab", + "item_id": 631, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 22947, + "states": [ + { + "id": 22944, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 22945, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 22946, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 22947, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 22948, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 22949, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 978, + "name": "polished_deepslate_wall", + "translation_key": "block.minecraft.polished_deepslate_wall", + "item_id": 394, + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 22953, + "states": [ + { + "id": 22950, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140 + ] + }, + { + "id": 22951, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 22952, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 22953, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140 + ] + }, + { + "id": 22954, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 22955, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 22956, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 22957, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 22958, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 22959, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 22960, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 22961, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 22962, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 22963, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22964, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22965, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 22966, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22967, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22968, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 22969, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22970, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22971, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 22972, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22973, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22974, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 22975, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22976, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22977, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 22978, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22979, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 22980, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 22981, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22982, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22983, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 22984, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22985, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 22986, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 22987, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 22988, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 22989, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 22990, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 22991, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 22992, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 22993, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 22994, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 22995, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 22996, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 22997, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 22998, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 22999, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23000, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23001, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23002, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23003, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23004, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23005, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23006, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23007, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23008, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23009, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23010, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23011, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23012, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23013, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23014, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23015, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23016, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23017, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23018, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23019, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23020, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23021, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23022, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 23023, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 23024, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 23025, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 23026, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 23027, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 23028, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 23029, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 23030, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 23031, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 23032, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 23033, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 23034, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23035, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23036, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23037, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23038, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23039, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23040, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23041, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23042, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23043, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23044, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23045, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23046, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23047, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23048, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23049, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23050, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23051, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23052, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23053, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23054, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23055, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23056, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23057, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23058, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 23059, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23060, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23061, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 23062, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23063, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23064, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 23065, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23066, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23067, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 23068, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23069, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23070, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 23071, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23072, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23073, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 23074, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23075, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23076, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23077, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23078, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23079, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23080, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23081, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23082, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 23083, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23084, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23085, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 23086, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23087, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23088, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23089, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23090, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23091, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23092, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23093, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23094, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 23095, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23096, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23097, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 23098, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23099, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23100, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23101, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23102, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23103, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23104, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23105, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23106, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23107, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23108, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23109, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23110, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23111, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23112, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23113, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23114, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23115, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23116, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23117, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23118, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23119, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23120, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23121, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23122, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23123, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23124, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23125, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23126, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23127, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23128, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23129, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23130, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 23131, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23132, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23133, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 23134, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23135, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23136, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23137, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23138, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23139, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23140, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23141, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23142, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23143, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23144, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23145, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23146, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23147, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23148, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23149, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23150, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23151, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23152, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23153, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23154, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23155, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23156, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23157, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23158, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23159, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23160, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23161, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23162, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23163, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23164, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23165, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23166, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 23167, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23168, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23169, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 23170, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23171, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23172, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 23173, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23174, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23175, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 23176, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23177, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23178, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 23179, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23180, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23181, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 23182, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23183, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23184, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23185, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23186, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23187, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23188, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23189, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23190, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 23191, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23192, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23193, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 23194, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23195, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23196, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23197, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23198, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23199, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23200, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23201, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23202, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 23203, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23204, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23205, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 23206, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23207, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23208, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23209, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23210, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23211, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23212, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23213, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23214, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23215, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23216, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23217, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23218, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23219, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23220, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23221, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23222, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23223, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23224, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23225, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23226, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23227, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23228, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23229, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23230, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23231, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23232, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23233, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23234, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23235, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23236, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23237, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23238, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 23239, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23240, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23241, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 23242, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23243, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23244, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23245, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23246, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23247, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23248, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23249, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23250, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23251, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23252, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23253, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23254, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23255, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23256, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23257, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23258, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23259, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23260, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23261, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23262, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23263, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23264, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23265, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23266, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23267, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23268, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23269, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23270, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23271, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23272, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23273, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + } + ] + }, + { + "id": 979, + "name": "deepslate_tiles", + "translation_key": "block.minecraft.deepslate_tiles", + "item_id": 326, + "properties": [], + "default_state_id": 23274, + "states": [ + { + "id": 23274, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 980, + "name": "deepslate_tile_stairs", + "translation_key": "block.minecraft.deepslate_tile_stairs", + "item_id": 616, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 23286, + "states": [ + { + "id": 23275, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 23276, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 23277, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 23278, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 23279, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 23280, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 23281, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 23282, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 23283, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 23284, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 23285, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 23286, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52 + ] + }, + { + "id": 23287, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 23288, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 23289, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 23290, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 23291, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 23292, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 23293, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 23294, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 23295, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 23296, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 23297, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 23298, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 23299, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 23300, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 23301, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 23302, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 23303, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 23304, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 23305, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 23306, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 23307, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 23308, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 23309, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 23310, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 23311, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 23312, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 23313, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 23314, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 23315, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 23316, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 23317, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 23318, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 23319, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 23320, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 23321, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 23322, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 23323, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 23324, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 23325, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 23326, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 23327, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 23328, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 23329, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 23330, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 23331, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 23332, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 23333, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 23334, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 23335, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 23336, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 23337, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 23338, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 23339, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 23340, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 23341, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 23342, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 23343, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 23344, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 23345, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 23346, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 23347, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 23348, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 23349, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 23350, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 23351, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 23352, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 23353, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 23354, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 981, + "name": "deepslate_tile_slab", + "translation_key": "block.minecraft.deepslate_tile_slab", + "item_id": 633, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 23358, + "states": [ + { + "id": 23355, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 23356, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 23357, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 23358, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 23359, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 23360, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 982, + "name": "deepslate_tile_wall", + "translation_key": "block.minecraft.deepslate_tile_wall", + "item_id": 396, + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 23364, + "states": [ + { + "id": 23361, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140 + ] + }, + { + "id": 23362, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 23363, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 23364, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140 + ] + }, + { + "id": 23365, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 23366, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 23367, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 23368, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 23369, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 23370, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 23371, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, { "id": 23372, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143 + 144 ] }, { @@ -252128,7 +251770,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140 + 140, + 145 ] }, { @@ -252139,7 +251782,8 @@ "collision_shapes": [ 141, 142, - 143 + 143, + 145 ] }, { @@ -252150,7 +251794,8 @@ "collision_shapes": [ 141, 142, - 143 + 143, + 145 ] }, { @@ -252158,63 +251803,13 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [] - }, - { - "id": 23377, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 23378, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 23379, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [] - }, - { - "id": 23380, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 23381, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144 - ] - }, - { - "id": 23382, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 145 ] }, { - "id": 23383, + "id": 23377, "luminance": 0, "opaque": true, "replaceable": false, @@ -252226,7 +251821,7 @@ ] }, { - "id": 23384, + "id": 23378, "luminance": 0, "opaque": true, "replaceable": false, @@ -252237,6 +251832,64 @@ 145 ] }, + { + "id": 23379, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 23380, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 23381, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 23382, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 23383, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 23384, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, { "id": 23385, "luminance": 0, @@ -252277,7 +251930,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146 + 140, + 145 ] }, { @@ -252286,8 +251940,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 141, + 142, + 143, + 145 ] }, { @@ -252296,8 +251952,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 141, + 142, + 143, + 145 ] }, { @@ -252335,8 +251993,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145 + 146 ] }, { @@ -252345,10 +252002,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 145 + 144, + 147 ] }, { @@ -252357,10 +252012,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 145 + 144, + 147 ] }, { @@ -252370,7 +252023,7 @@ "replaceable": false, "collision_shapes": [ 140, - 145 + 148 ] }, { @@ -252382,7 +252035,7 @@ 141, 142, 143, - 145 + 148 ] }, { @@ -252394,7 +252047,7 @@ 141, 142, 143, - 145 + 148 ] }, { @@ -252403,7 +252056,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146 + 140, + 148 ] }, { @@ -252412,8 +252066,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 141, + 142, + 143, + 148 ] }, { @@ -252422,8 +252078,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 147 + 141, + 142, + 143, + 148 ] }, { @@ -252432,7 +252090,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146 + 149 ] }, { @@ -252442,7 +252100,7 @@ "replaceable": false, "collision_shapes": [ 144, - 147 + 150 ] }, { @@ -252452,7 +252110,7 @@ "replaceable": false, "collision_shapes": [ 144, - 147 + 150 ] }, { @@ -252461,8 +252119,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148 + 149 ] }, { @@ -252471,10 +252128,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148 + 144, + 150 ] }, { @@ -252483,10 +252138,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148 + 144, + 150 ] }, { @@ -252496,7 +252149,8 @@ "replaceable": false, "collision_shapes": [ 140, - 148 + 148, + 145 ] }, { @@ -252508,7 +252162,8 @@ 141, 142, 143, - 148 + 148, + 145 ] }, { @@ -252520,7 +252175,8 @@ 141, 142, 143, - 148 + 148, + 145 ] }, { @@ -252528,64 +252184,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 23413, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23414, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23415, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 23416, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23417, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23418, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 148, @@ -252593,7 +252191,7 @@ ] }, { - "id": 23419, + "id": 23413, "luminance": 0, "opaque": true, "replaceable": false, @@ -252606,7 +252204,7 @@ ] }, { - "id": 23420, + "id": 23414, "luminance": 0, "opaque": true, "replaceable": false, @@ -252618,6 +252216,68 @@ 145 ] }, + { + "id": 23415, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23416, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23417, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23418, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23419, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23420, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, { "id": 23421, "luminance": 0, @@ -252661,7 +252321,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 140, + 148, + 145 ] }, { @@ -252670,9 +252332,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -252681,9 +252345,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -252723,9 +252389,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 151 ] }, { @@ -252734,11 +252398,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -252747,11 +252409,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -252761,8 +252421,7 @@ "replaceable": false, "collision_shapes": [ 140, - 148, - 145 + 148 ] }, { @@ -252774,8 +252433,7 @@ 141, 142, 143, - 148, - 145 + 148 ] }, { @@ -252787,8 +252445,7 @@ 141, 142, 143, - 148, - 145 + 148 ] }, { @@ -252797,7 +252454,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 140, + 148 ] }, { @@ -252806,9 +252464,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148 ] }, { @@ -252817,9 +252476,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148 ] }, { @@ -252828,7 +252488,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 149 ] }, { @@ -252838,8 +252498,7 @@ "replaceable": false, "collision_shapes": [ 144, - 150, - 147 + 150 ] }, { @@ -252849,8 +252508,7 @@ "replaceable": false, "collision_shapes": [ 144, - 150, - 147 + 150 ] }, { @@ -252859,8 +252517,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148 + 149 ] }, { @@ -252869,10 +252526,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148 + 144, + 150 ] }, { @@ -252881,10 +252536,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148 + 144, + 150 ] }, { @@ -252894,7 +252547,8 @@ "replaceable": false, "collision_shapes": [ 140, - 148 + 148, + 145 ] }, { @@ -252906,7 +252560,8 @@ 141, 142, 143, - 148 + 148, + 145 ] }, { @@ -252918,7 +252573,8 @@ 141, 142, 143, - 148 + 148, + 145 ] }, { @@ -252926,64 +252582,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 23449, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23450, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23451, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149 - ] - }, - { - "id": 23452, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23453, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150 - ] - }, - { - "id": 23454, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 148, @@ -252991,7 +252589,7 @@ ] }, { - "id": 23455, + "id": 23449, "luminance": 0, "opaque": true, "replaceable": false, @@ -253004,7 +252602,7 @@ ] }, { - "id": 23456, + "id": 23450, "luminance": 0, "opaque": true, "replaceable": false, @@ -253016,6 +252614,68 @@ 145 ] }, + { + "id": 23451, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23452, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23453, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23454, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23455, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23456, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, { "id": 23457, "luminance": 0, @@ -253059,7 +252719,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151 + 140, + 148, + 145 ] }, { @@ -253068,9 +252730,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -253079,9 +252743,11 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 144, - 150, - 147 + 141, + 142, + 143, + 148, + 145 ] }, { @@ -253121,9 +252787,7 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145 + 151 ] }, { @@ -253132,11 +252796,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -253145,11 +252807,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, - 142, - 143, - 148, - 145 + 144, + 150, + 147 ] }, { @@ -253159,8 +252819,7 @@ "replaceable": false, "collision_shapes": [ 140, - 148, - 145 + 152 ] }, { @@ -253169,11 +252828,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, + 153, 142, - 143, - 148, - 145 + 143 ] }, { @@ -253182,11 +252839,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 141, + 153, 142, - 143, - 148, - 145 + 143 ] }, { @@ -253194,75 +252849,13 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 23473, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23474, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23475, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151 - ] - }, - { - "id": 23476, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23477, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 144, - 150, - 147 - ] - }, - { - "id": 23478, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 152 ] }, { - "id": 23479, + "id": 23473, "luminance": 0, "opaque": true, "replaceable": false, @@ -253273,7 +252866,7 @@ ] }, { - "id": 23480, + "id": 23474, "luminance": 0, "opaque": true, "replaceable": false, @@ -253283,6 +252876,60 @@ 143 ] }, + { + "id": 23475, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 23476, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23477, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23478, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 23479, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23480, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, { "id": 23481, "luminance": 0, @@ -253290,6 +252937,7 @@ "replaceable": false, "collision_shapes": [ 140, + 145, 152 ] }, @@ -253301,7 +252949,8 @@ "collision_shapes": [ 153, 142, - 143 + 143, + 145 ] }, { @@ -253312,7 +252961,8 @@ "collision_shapes": [ 153, 142, - 143 + 143, + 145 ] }, { @@ -253320,60 +252970,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 23485, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23486, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23487, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 23488, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23489, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23490, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 145, @@ -253381,7 +252977,7 @@ ] }, { - "id": 23491, + "id": 23485, "luminance": 0, "opaque": true, "replaceable": false, @@ -253393,7 +252989,7 @@ ] }, { - "id": 23492, + "id": 23486, "luminance": 0, "opaque": true, "replaceable": false, @@ -253404,6 +253000,66 @@ 145 ] }, + { + "id": 23487, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23488, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23489, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23490, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23491, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23492, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, { "id": 23493, "luminance": 0, @@ -253445,8 +253101,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 140, + 145, + 152 ] }, { @@ -253456,7 +253113,9 @@ "replaceable": false, "collision_shapes": [ 153, - 147 + 142, + 143, + 145 ] }, { @@ -253466,7 +253125,9 @@ "replaceable": false, "collision_shapes": [ 153, - 147 + 142, + 143, + 145 ] }, { @@ -253505,9 +253166,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 146, + 155 ] }, { @@ -253517,9 +253177,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 145 + 147 ] }, { @@ -253529,9 +253187,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 145 + 147 ] }, { @@ -253541,7 +253197,7 @@ "replaceable": false, "collision_shapes": [ 140, - 145, + 148, 152 ] }, @@ -253554,7 +253210,7 @@ 153, 142, 143, - 145 + 148 ] }, { @@ -253566,7 +253222,7 @@ 153, 142, 143, - 145 + 148 ] }, { @@ -253574,66 +253230,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 23509, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23510, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23511, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 23512, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23513, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23514, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 148, @@ -253641,7 +253237,7 @@ ] }, { - "id": 23515, + "id": 23509, "luminance": 0, "opaque": true, "replaceable": false, @@ -253653,7 +253249,7 @@ ] }, { - "id": 23516, + "id": 23510, "luminance": 0, "opaque": true, "replaceable": false, @@ -253664,6 +253260,66 @@ 148 ] }, + { + "id": 23511, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23512, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23513, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23514, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23515, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23516, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, { "id": 23517, "luminance": 0, @@ -253672,6 +253328,7 @@ "collision_shapes": [ 140, 148, + 145, 152 ] }, @@ -253684,7 +253341,8 @@ 153, 142, 143, - 148 + 148, + 145 ] }, { @@ -253696,7 +253354,8 @@ 153, 142, 143, - 148 + 148, + 145 ] }, { @@ -253704,66 +253363,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23521, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23522, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23523, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23524, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23525, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23526, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 148, @@ -253772,7 +253371,7 @@ ] }, { - "id": 23527, + "id": 23521, "luminance": 0, "opaque": true, "replaceable": false, @@ -253785,7 +253384,7 @@ ] }, { - "id": 23528, + "id": 23522, "luminance": 0, "opaque": true, "replaceable": false, @@ -253797,6 +253396,70 @@ 145 ] }, + { + "id": 23523, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23524, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23525, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23526, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23527, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23528, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, { "id": 23529, "luminance": 0, @@ -253841,8 +253504,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 140, + 148, + 145, + 152 ] }, { @@ -253852,8 +253517,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -253863,8 +253530,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -253905,10 +253574,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 151, + 155 ] }, { @@ -253918,10 +253585,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -253931,10 +253596,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -253945,7 +253608,6 @@ "collision_shapes": [ 140, 148, - 145, 152 ] }, @@ -253958,8 +253620,7 @@ 153, 142, 143, - 148, - 145 + 148 ] }, { @@ -253971,8 +253632,7 @@ 153, 142, 143, - 148, - 145 + 148 ] }, { @@ -253980,70 +253640,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23545, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23546, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23547, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23548, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23549, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23550, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 148, @@ -254051,7 +253647,7 @@ ] }, { - "id": 23551, + "id": 23545, "luminance": 0, "opaque": true, "replaceable": false, @@ -254063,7 +253659,7 @@ ] }, { - "id": 23552, + "id": 23546, "luminance": 0, "opaque": true, "replaceable": false, @@ -254074,6 +253670,66 @@ 148 ] }, + { + "id": 23547, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23548, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23549, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23550, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23551, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23552, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, { "id": 23553, "luminance": 0, @@ -254082,6 +253738,7 @@ "collision_shapes": [ 140, 148, + 145, 152 ] }, @@ -254094,7 +253751,8 @@ 153, 142, 143, - 148 + 148, + 145 ] }, { @@ -254106,7 +253764,8 @@ 153, 142, 143, - 148 + 148, + 145 ] }, { @@ -254114,66 +253773,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23557, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23558, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23559, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23560, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23561, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23562, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 148, @@ -254182,7 +253781,7 @@ ] }, { - "id": 23563, + "id": 23557, "luminance": 0, "opaque": true, "replaceable": false, @@ -254195,7 +253794,7 @@ ] }, { - "id": 23564, + "id": 23558, "luminance": 0, "opaque": true, "replaceable": false, @@ -254207,6 +253806,70 @@ 145 ] }, + { + "id": 23559, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23560, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23561, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23562, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23563, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23564, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, { "id": 23565, "luminance": 0, @@ -254251,8 +253914,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 140, + 148, + 145, + 152 ] }, { @@ -254262,8 +253927,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -254273,8 +253940,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -254315,10 +253984,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 151, + 155 ] }, { @@ -254328,10 +253995,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -254341,10 +254006,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -254354,8 +254017,6 @@ "replaceable": false, "collision_shapes": [ 140, - 148, - 145, 152 ] }, @@ -254367,9 +254028,7 @@ "collision_shapes": [ 153, 142, - 143, - 148, - 145 + 143 ] }, { @@ -254380,9 +254039,7 @@ "collision_shapes": [ 153, 142, - 143, - 148, - 145 + 143 ] }, { @@ -254390,77 +254047,13 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23581, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23582, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23583, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23584, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23585, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23586, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 152 ] }, { - "id": 23587, + "id": 23581, "luminance": 0, "opaque": true, "replaceable": false, @@ -254471,7 +254064,7 @@ ] }, { - "id": 23588, + "id": 23582, "luminance": 0, "opaque": true, "replaceable": false, @@ -254481,6 +254074,60 @@ 143 ] }, + { + "id": 23583, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 23584, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23585, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23586, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 23587, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23588, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, { "id": 23589, "luminance": 0, @@ -254488,6 +254135,7 @@ "replaceable": false, "collision_shapes": [ 140, + 145, 152 ] }, @@ -254499,7 +254147,8 @@ "collision_shapes": [ 153, 142, - 143 + 143, + 145 ] }, { @@ -254510,7 +254159,8 @@ "collision_shapes": [ 153, 142, - 143 + 143, + 145 ] }, { @@ -254518,60 +254168,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 23593, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23594, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23595, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 154 - ] - }, - { - "id": 23596, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23597, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153 - ] - }, - { - "id": 23598, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 145, @@ -254579,7 +254175,7 @@ ] }, { - "id": 23599, + "id": 23593, "luminance": 0, "opaque": true, "replaceable": false, @@ -254591,7 +254187,7 @@ ] }, { - "id": 23600, + "id": 23594, "luminance": 0, "opaque": true, "replaceable": false, @@ -254602,6 +254198,66 @@ 145 ] }, + { + "id": 23595, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23596, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23597, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23598, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23599, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23600, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, { "id": 23601, "luminance": 0, @@ -254643,8 +254299,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 146, - 155 + 140, + 145, + 152 ] }, { @@ -254654,7 +254311,9 @@ "replaceable": false, "collision_shapes": [ 153, - 147 + 142, + 143, + 145 ] }, { @@ -254664,7 +254323,9 @@ "replaceable": false, "collision_shapes": [ 153, - 147 + 142, + 143, + 145 ] }, { @@ -254703,9 +254364,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 145, - 152 + 146, + 155 ] }, { @@ -254715,9 +254375,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 145 + 147 ] }, { @@ -254727,9 +254385,7 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 145 + 147 ] }, { @@ -254739,7 +254395,7 @@ "replaceable": false, "collision_shapes": [ 140, - 145, + 148, 152 ] }, @@ -254752,7 +254408,7 @@ 153, 142, 143, - 145 + 148 ] }, { @@ -254764,7 +254420,7 @@ 153, 142, 143, - 145 + 148 ] }, { @@ -254772,66 +254428,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 23617, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23618, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23619, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 146, - 155 - ] - }, - { - "id": 23620, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23621, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 147 - ] - }, - { - "id": 23622, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 148, @@ -254839,7 +254435,7 @@ ] }, { - "id": 23623, + "id": 23617, "luminance": 0, "opaque": true, "replaceable": false, @@ -254851,7 +254447,7 @@ ] }, { - "id": 23624, + "id": 23618, "luminance": 0, "opaque": true, "replaceable": false, @@ -254862,6 +254458,66 @@ 148 ] }, + { + "id": 23619, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23620, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23621, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23622, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23623, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23624, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, { "id": 23625, "luminance": 0, @@ -254870,6 +254526,7 @@ "collision_shapes": [ 140, 148, + 145, 152 ] }, @@ -254882,7 +254539,8 @@ 153, 142, 143, - 148 + 148, + 145 ] }, { @@ -254894,7 +254552,8 @@ 153, 142, 143, - 148 + 148, + 145 ] }, { @@ -254902,66 +254561,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23629, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23630, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23631, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23632, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23633, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23634, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 148, @@ -254970,7 +254569,7 @@ ] }, { - "id": 23635, + "id": 23629, "luminance": 0, "opaque": true, "replaceable": false, @@ -254983,7 +254582,7 @@ ] }, { - "id": 23636, + "id": 23630, "luminance": 0, "opaque": true, "replaceable": false, @@ -254995,6 +254594,70 @@ 145 ] }, + { + "id": 23631, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23632, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23633, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23634, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23635, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23636, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, { "id": 23637, "luminance": 0, @@ -255039,8 +254702,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 140, + 148, + 145, + 152 ] }, { @@ -255050,8 +254715,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -255061,8 +254728,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -255103,10 +254772,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 151, + 155 ] }, { @@ -255116,10 +254783,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -255129,10 +254794,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -255143,7 +254806,6 @@ "collision_shapes": [ 140, 148, - 145, 152 ] }, @@ -255156,8 +254818,7 @@ 153, 142, 143, - 148, - 145 + 148 ] }, { @@ -255169,8 +254830,7 @@ 153, 142, 143, - 148, - 145 + 148 ] }, { @@ -255178,70 +254838,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23653, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23654, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23655, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23656, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23657, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23658, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 148, @@ -255249,7 +254845,7 @@ ] }, { - "id": 23659, + "id": 23653, "luminance": 0, "opaque": true, "replaceable": false, @@ -255261,7 +254857,7 @@ ] }, { - "id": 23660, + "id": 23654, "luminance": 0, "opaque": true, "replaceable": false, @@ -255272,6 +254868,66 @@ 148 ] }, + { + "id": 23655, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23656, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23657, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23658, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23659, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23660, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, { "id": 23661, "luminance": 0, @@ -255280,6 +254936,7 @@ "collision_shapes": [ 140, 148, + 145, 152 ] }, @@ -255292,7 +254949,8 @@ 153, 142, 143, - 148 + 148, + 145 ] }, { @@ -255304,7 +254962,8 @@ 153, 142, 143, - 148 + 148, + 145 ] }, { @@ -255312,66 +254971,6 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23665, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23666, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23667, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 149, - 155 - ] - }, - { - "id": 23668, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23669, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150 - ] - }, - { - "id": 23670, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 140, 148, @@ -255380,7 +254979,7 @@ ] }, { - "id": 23671, + "id": 23665, "luminance": 0, "opaque": true, "replaceable": false, @@ -255393,7 +254992,7 @@ ] }, { - "id": 23672, + "id": 23666, "luminance": 0, "opaque": true, "replaceable": false, @@ -255405,6 +255004,70 @@ 145 ] }, + { + "id": 23667, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23668, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23669, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23670, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23671, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23672, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, { "id": 23673, "luminance": 0, @@ -255449,8 +255112,10 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 151, - 155 + 140, + 148, + 145, + 152 ] }, { @@ -255460,8 +255125,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -255471,8 +255138,10 @@ "replaceable": false, "collision_shapes": [ 153, - 150, - 147 + 142, + 143, + 148, + 145 ] }, { @@ -255513,10 +255182,8 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 140, - 148, - 145, - 152 + 151, + 155 ] }, { @@ -255526,10 +255193,8 @@ "replaceable": false, "collision_shapes": [ 153, - 142, - 143, - 148, - 145 + 150, + 147 ] }, { @@ -255537,147 +255202,24 @@ "luminance": 0, "opaque": true, "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23685, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 140, - 148, - 145, - 152 - ] - }, - { - "id": 23686, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23687, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 142, - 143, - 148, - 145 - ] - }, - { - "id": 23688, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23689, - "luminance": 0, - "opaque": true, - "replaceable": false, "collision_shapes": [ 153, 150, 147 ] - }, - { - "id": 23690, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23691, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 151, - 155 - ] - }, - { - "id": 23692, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - }, - { - "id": 23693, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 153, - 150, - 147 - ] - } - ] - }, - { - "id": 982, - "name": "chiseled_deepslate", - "translation_key": "block.minecraft.chiseled_deepslate", - "item_id": 326, - "properties": [], - "default_state_id": 23694, - "states": [ - { - "id": 23694, - "luminance": 0, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] } ] }, { "id": 983, - "name": "cracked_deepslate_bricks", - "translation_key": "block.minecraft.cracked_deepslate_bricks", - "item_id": 323, + "name": "deepslate_bricks", + "translation_key": "block.minecraft.deepslate_bricks", + "item_id": 324, "properties": [], - "default_state_id": 23695, + "default_state_id": 23685, "states": [ { - "id": 23695, + "id": 23685, "luminance": 0, "opaque": true, "replaceable": false, @@ -255689,47 +255231,172 @@ }, { "id": 984, - "name": "cracked_deepslate_tiles", - "translation_key": "block.minecraft.cracked_deepslate_tiles", - "item_id": 325, - "properties": [], - "default_state_id": 23696, + "name": "deepslate_brick_stairs", + "translation_key": "block.minecraft.deepslate_brick_stairs", + "item_id": 615, + "properties": [ + { + "name": "facing", + "values": [ + "north", + "south", + "west", + "east" + ] + }, + { + "name": "half", + "values": [ + "top", + "bottom" + ] + }, + { + "name": "shape", + "values": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 23697, "states": [ + { + "id": 23686, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 23687, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 42 + ] + }, + { + "id": 23688, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 23689, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 23690, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 23691, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 23692, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 23693, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 23694, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 23695, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, { "id": 23696, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 51, + 52 ] - } - ] - }, - { - "id": 985, - "name": "infested_deepslate", - "translation_key": "block.minecraft.infested_deepslate", - "item_id": 315, - "properties": [ - { - "name": "axis", - "values": [ - "x", - "y", - "z" - ] - } - ], - "default_state_id": 23698, - "states": [ + }, { "id": 23697, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 51, + 52 ] }, { @@ -255738,7 +255405,9 @@ "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 51, + 50, + 49 ] }, { @@ -255746,6 +255415,786 @@ "luminance": 0, "opaque": true, "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 23700, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 23701, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 23702, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 23703, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 23704, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 23705, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 23706, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 23707, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 52 + ] + }, + { + "id": 23708, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 23709, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 23710, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 23711, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 23712, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 23713, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 23714, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 23715, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 23716, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 23717, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42 + ] + }, + { + "id": 23718, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 23719, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 23720, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 23721, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 23722, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 23723, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 23724, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 23725, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 23726, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 23727, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 56 + ] + }, + { + "id": 23728, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 23729, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 46, + 49 + ] + }, + { + "id": 23730, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 23731, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 43, + 44, + 45 + ] + }, + { + "id": 23732, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 23733, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 55, + 52, + 45 + ] + }, + { + "id": 23734, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 23735, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 48, + 42, + 49 + ] + }, + { + "id": 23736, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 23737, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50 + ] + }, + { + "id": 23738, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 23739, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 45 + ] + }, + { + "id": 23740, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 23741, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 50, + 49 + ] + }, + { + "id": 23742, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 23743, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 47 + ] + }, + { + "id": 23744, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 23745, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 53 + ] + }, + { + "id": 23746, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 23747, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 57, + 50 + ] + }, + { + "id": 23748, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 23749, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 41, + 46, + 47 + ] + }, + { + "id": 23750, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 23751, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 54, + 44, + 53 + ] + }, + { + "id": 23752, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 23753, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 44, + 50, + 45 + ] + }, + { + "id": 23754, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 23755, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 46, + 50, + 49 + ] + }, + { + "id": 23756, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 23757, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 56 + ] + }, + { + "id": 23758, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 23759, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 52, + 45 + ] + }, + { + "id": 23760, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 23761, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 42, + 49 + ] + }, + { + "id": 23762, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 23763, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 49 + ] + }, + { + "id": 23764, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + }, + { + "id": 23765, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51, + 45 + ] + } + ] + }, + { + "id": 985, + "name": "deepslate_brick_slab", + "translation_key": "block.minecraft.deepslate_brick_slab", + "item_id": 632, + "properties": [ + { + "name": "type", + "values": [ + "top", + "bottom", + "double" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + } + ], + "default_state_id": 23769, + "states": [ + { + "id": 23766, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 23767, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 201 + ] + }, + { + "id": 23768, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 23769, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 51 + ] + }, + { + "id": 23770, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 23771, + "luminance": 0, + "opaque": true, + "replaceable": false, "collision_shapes": [ 0 ] @@ -255754,33 +256203,3627 @@ }, { "id": 986, - "name": "smooth_basalt", - "translation_key": "block.minecraft.smooth_basalt", - "item_id": 306, - "properties": [], - "default_state_id": 23700, + "name": "deepslate_brick_wall", + "translation_key": "block.minecraft.deepslate_brick_wall", + "item_id": 395, + "properties": [ + { + "name": "east", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "north", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "south", + "values": [ + "none", + "low", + "tall" + ] + }, + { + "name": "up", + "values": [ + "true", + "false" + ] + }, + { + "name": "waterlogged", + "values": [ + "true", + "false" + ] + }, + { + "name": "west", + "values": [ + "none", + "low", + "tall" + ] + } + ], + "default_state_id": 23775, "states": [ { - "id": 23700, + "id": 23772, "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ - 0 + 140 + ] + }, + { + "id": 23773, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 23774, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 23775, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140 + ] + }, + { + "id": 23776, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 23777, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143 + ] + }, + { + "id": 23778, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 23779, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 23780, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 23781, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [] + }, + { + "id": 23782, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 23783, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144 + ] + }, + { + "id": 23784, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 23785, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 23786, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 23787, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 23788, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 23789, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 23790, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 23791, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 23792, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 23793, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 23794, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 23795, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 23796, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 23797, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 23798, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 23799, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145 + ] + }, + { + "id": 23800, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 23801, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 145 + ] + }, + { + "id": 23802, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 23803, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 23804, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 23805, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146 + ] + }, + { + "id": 23806, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 23807, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 147 + ] + }, + { + "id": 23808, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 23809, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 23810, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 23811, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 23812, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 23813, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 23814, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 23815, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 23816, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 23817, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 23818, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 23819, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 23820, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23821, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23822, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23823, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23824, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23825, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23826, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23827, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23828, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23829, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23830, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23831, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23832, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23833, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23834, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23835, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23836, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23837, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23838, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23839, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23840, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23841, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23842, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23843, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23844, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 23845, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 23846, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 23847, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148 + ] + }, + { + "id": 23848, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 23849, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148 + ] + }, + { + "id": 23850, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 23851, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 23852, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 23853, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149 + ] + }, + { + "id": 23854, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 23855, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150 + ] + }, + { + "id": 23856, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23857, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23858, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23859, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23860, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23861, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23862, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23863, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23864, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23865, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23866, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23867, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23868, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23869, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23870, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23871, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145 + ] + }, + { + "id": 23872, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23873, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 141, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23874, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23875, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23876, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23877, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151 + ] + }, + { + "id": 23878, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23879, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 144, + 150, + 147 + ] + }, + { + "id": 23880, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 23881, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23882, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23883, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 23884, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23885, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23886, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 23887, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23888, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23889, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 23890, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23891, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23892, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 23893, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23894, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23895, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 23896, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23897, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23898, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23899, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23900, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23901, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23902, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23903, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23904, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 23905, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23906, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23907, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 23908, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23909, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 23910, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23911, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23912, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23913, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 23914, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23915, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 23916, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 23917, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23918, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23919, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 23920, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23921, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23922, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23923, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23924, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23925, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23926, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23927, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23928, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23929, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23930, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23931, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23932, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23933, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23934, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23935, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23936, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23937, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23938, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23939, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23940, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23941, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23942, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23943, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23944, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23945, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23946, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23947, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23948, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23949, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23950, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23951, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23952, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 23953, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23954, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23955, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 23956, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23957, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 23958, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23959, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23960, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23961, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 23962, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23963, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 23964, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23965, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23966, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23967, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23968, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23969, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23970, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23971, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23972, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23973, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23974, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23975, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23976, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23977, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23978, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23979, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 23980, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23981, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 23982, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23983, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23984, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23985, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 23986, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23987, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 23988, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 23989, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23990, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23991, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 152 + ] + }, + { + "id": 23992, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23993, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143 + ] + }, + { + "id": 23994, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 23995, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23996, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23997, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 154 + ] + }, + { + "id": 23998, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 23999, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153 + ] + }, + { + "id": 24000, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 24001, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 24002, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 24003, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 24004, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 24005, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 24006, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 24007, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 24008, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 24009, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 24010, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 24011, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 24012, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 24013, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 24014, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 24015, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 145, + 152 + ] + }, + { + "id": 24016, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 24017, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 145 + ] + }, + { + "id": 24018, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 24019, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 24020, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 24021, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 146, + 155 + ] + }, + { + "id": 24022, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 24023, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 147 + ] + }, + { + "id": 24024, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 24025, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 24026, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 24027, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 24028, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 24029, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 24030, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 24031, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 24032, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 24033, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 24034, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 24035, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 24036, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 24037, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24038, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24039, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 24040, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24041, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24042, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 24043, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24044, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24045, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 24046, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24047, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24048, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 24049, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24050, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24051, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 24052, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24053, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24054, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 24055, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24056, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24057, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 24058, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24059, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24060, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 24061, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 24062, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 24063, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 152 + ] + }, + { + "id": 24064, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 24065, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148 + ] + }, + { + "id": 24066, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 24067, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 24068, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 24069, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 149, + 155 + ] + }, + { + "id": 24070, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 24071, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150 + ] + }, + { + "id": 24072, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 24073, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24074, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24075, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 24076, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24077, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24078, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 24079, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24080, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24081, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 24082, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24083, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24084, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 24085, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24086, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24087, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 140, + 148, + 145, + 152 + ] + }, + { + "id": 24088, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24089, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 142, + 143, + 148, + 145 + ] + }, + { + "id": 24090, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 24091, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24092, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24093, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 151, + 155 + ] + }, + { + "id": 24094, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 + ] + }, + { + "id": 24095, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 153, + 150, + 147 ] } ] }, { "id": 987, - "name": "raw_iron_block", - "translation_key": "block.minecraft.raw_iron_block", - "item_id": 68, + "name": "chiseled_deepslate", + "translation_key": "block.minecraft.chiseled_deepslate", + "item_id": 328, "properties": [], - "default_state_id": 23701, + "default_state_id": 24096, "states": [ { - "id": 23701, + "id": 24096, "luminance": 0, "opaque": true, "replaceable": false, @@ -255792,14 +259835,14 @@ }, { "id": 988, - "name": "raw_copper_block", - "translation_key": "block.minecraft.raw_copper_block", - "item_id": 69, + "name": "cracked_deepslate_bricks", + "translation_key": "block.minecraft.cracked_deepslate_bricks", + "item_id": 325, "properties": [], - "default_state_id": 23702, + "default_state_id": 24097, "states": [ { - "id": 23702, + "id": 24097, "luminance": 0, "opaque": true, "replaceable": false, @@ -255811,14 +259854,14 @@ }, { "id": 989, - "name": "raw_gold_block", - "translation_key": "block.minecraft.raw_gold_block", - "item_id": 70, + "name": "cracked_deepslate_tiles", + "translation_key": "block.minecraft.cracked_deepslate_tiles", + "item_id": 327, "properties": [], - "default_state_id": 23703, + "default_state_id": 24098, "states": [ { - "id": 23703, + "id": 24098, "luminance": 0, "opaque": true, "replaceable": false, @@ -255830,47 +259873,9 @@ }, { "id": 990, - "name": "potted_azalea_bush", - "translation_key": "block.minecraft.potted_azalea_bush", - "item_id": 0, - "properties": [], - "default_state_id": 23704, - "states": [ - { - "id": 23704, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 156 - ] - } - ] - }, - { - "id": 991, - "name": "potted_flowering_azalea_bush", - "translation_key": "block.minecraft.potted_flowering_azalea_bush", - "item_id": 0, - "properties": [], - "default_state_id": 23705, - "states": [ - { - "id": 23705, - "luminance": 0, - "opaque": false, - "replaceable": false, - "collision_shapes": [ - 156 - ] - } - ] - }, - { - "id": 992, - "name": "ochre_froglight", - "translation_key": "block.minecraft.ochre_froglight", - "item_id": 1206, + "name": "infested_deepslate", + "translation_key": "block.minecraft.infested_deepslate", + "item_id": 317, "properties": [ { "name": "axis", @@ -255881,11 +259886,11 @@ ] } ], - "default_state_id": 23707, + "default_state_id": 24100, "states": [ { - "id": 23706, - "luminance": 15, + "id": 24099, + "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ @@ -255893,8 +259898,8 @@ ] }, { - "id": 23707, - "luminance": 15, + "id": 24100, + "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ @@ -255902,8 +259907,46 @@ ] }, { - "id": 23708, - "luminance": 15, + "id": 24101, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 991, + "name": "smooth_basalt", + "translation_key": "block.minecraft.smooth_basalt", + "item_id": 308, + "properties": [], + "default_state_id": 24102, + "states": [ + { + "id": 24102, + "luminance": 0, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 992, + "name": "raw_iron_block", + "translation_key": "block.minecraft.raw_iron_block", + "item_id": 69, + "properties": [], + "default_state_id": 24103, + "states": [ + { + "id": 24103, + "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ @@ -255914,42 +259957,15 @@ }, { "id": 993, - "name": "verdant_froglight", - "translation_key": "block.minecraft.verdant_froglight", - "item_id": 1207, - "properties": [ - { - "name": "axis", - "values": [ - "x", - "y", - "z" - ] - } - ], - "default_state_id": 23710, + "name": "raw_copper_block", + "translation_key": "block.minecraft.raw_copper_block", + "item_id": 70, + "properties": [], + "default_state_id": 24104, "states": [ { - "id": 23709, - "luminance": 15, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 23710, - "luminance": 15, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 23711, - "luminance": 15, + "id": 24104, + "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ @@ -255960,42 +259976,15 @@ }, { "id": 994, - "name": "pearlescent_froglight", - "translation_key": "block.minecraft.pearlescent_froglight", - "item_id": 1208, - "properties": [ - { - "name": "axis", - "values": [ - "x", - "y", - "z" - ] - } - ], - "default_state_id": 23713, + "name": "raw_gold_block", + "translation_key": "block.minecraft.raw_gold_block", + "item_id": 71, + "properties": [], + "default_state_id": 24105, "states": [ { - "id": 23712, - "luminance": 15, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 23713, - "luminance": 15, - "opaque": true, - "replaceable": false, - "collision_shapes": [ - 0 - ] - }, - { - "id": 23714, - "luminance": 15, + "id": 24105, + "luminance": 0, "opaque": true, "replaceable": false, "collision_shapes": [ @@ -256006,14 +259995,190 @@ }, { "id": 995, - "name": "frogspawn", - "translation_key": "block.minecraft.frogspawn", - "item_id": 1209, + "name": "potted_azalea_bush", + "translation_key": "block.minecraft.potted_azalea_bush", + "item_id": 0, "properties": [], - "default_state_id": 23715, + "default_state_id": 24106, "states": [ { - "id": 23715, + "id": 24106, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 156 + ] + } + ] + }, + { + "id": 996, + "name": "potted_flowering_azalea_bush", + "translation_key": "block.minecraft.potted_flowering_azalea_bush", + "item_id": 0, + "properties": [], + "default_state_id": 24107, + "states": [ + { + "id": 24107, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 156 + ] + } + ] + }, + { + "id": 997, + "name": "ochre_froglight", + "translation_key": "block.minecraft.ochre_froglight", + "item_id": 1212, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 24109, + "states": [ + { + "id": 24108, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 24109, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 24110, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 998, + "name": "verdant_froglight", + "translation_key": "block.minecraft.verdant_froglight", + "item_id": 1213, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 24112, + "states": [ + { + "id": 24111, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 24112, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 24113, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 999, + "name": "pearlescent_froglight", + "translation_key": "block.minecraft.pearlescent_froglight", + "item_id": 1214, + "properties": [ + { + "name": "axis", + "values": [ + "x", + "y", + "z" + ] + } + ], + "default_state_id": 24115, + "states": [ + { + "id": 24114, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 24115, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + }, + { + "id": 24116, + "luminance": 15, + "opaque": true, + "replaceable": false, + "collision_shapes": [ + 0 + ] + } + ] + }, + { + "id": 1000, + "name": "frogspawn", + "translation_key": "block.minecraft.frogspawn", + "item_id": 1215, + "properties": [], + "default_state_id": 24117, + "states": [ + { + "id": 24117, "luminance": 0, "opaque": false, "replaceable": false, @@ -256022,15 +260187,15 @@ ] }, { - "id": 996, + "id": 1001, "name": "reinforced_deepslate", "translation_key": "block.minecraft.reinforced_deepslate", - "item_id": 327, + "item_id": 329, "properties": [], - "default_state_id": 23716, + "default_state_id": 24118, "states": [ { - "id": 23716, + "id": 24118, "luminance": 0, "opaque": true, "replaceable": false, @@ -256041,11 +260206,18 @@ ] }, { - "id": 997, + "id": 1002, "name": "decorated_pot", "translation_key": "block.minecraft.decorated_pot", - "item_id": 264, + "item_id": 266, "properties": [ + { + "name": "cracked", + "values": [ + "true", + "false" + ] + }, { "name": "facing", "values": [ @@ -256063,87 +260235,167 @@ ] } ], - "default_state_id": 23718, + "default_state_id": 24128, "states": [ { - "id": 23717, + "id": 24119, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ 127 ], - "block_entity_type": 39 + "block_entity_type": 40 }, { - "id": 23718, + "id": 24120, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ 127 ], - "block_entity_type": 39 + "block_entity_type": 40 }, { - "id": 23719, + "id": 24121, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ 127 ], - "block_entity_type": 39 + "block_entity_type": 40 }, { - "id": 23720, + "id": 24122, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ 127 ], - "block_entity_type": 39 + "block_entity_type": 40 }, { - "id": 23721, + "id": 24123, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ 127 ], - "block_entity_type": 39 + "block_entity_type": 40 }, { - "id": 23722, + "id": 24124, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ 127 ], - "block_entity_type": 39 + "block_entity_type": 40 }, { - "id": 23723, + "id": 24125, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ 127 ], - "block_entity_type": 39 + "block_entity_type": 40 }, { - "id": 23724, + "id": 24126, "luminance": 0, "opaque": false, "replaceable": false, "collision_shapes": [ 127 ], - "block_entity_type": 39 + "block_entity_type": 40 + }, + { + "id": 24127, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 127 + ], + "block_entity_type": 40 + }, + { + "id": 24128, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 127 + ], + "block_entity_type": 40 + }, + { + "id": 24129, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 127 + ], + "block_entity_type": 40 + }, + { + "id": 24130, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 127 + ], + "block_entity_type": 40 + }, + { + "id": 24131, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 127 + ], + "block_entity_type": 40 + }, + { + "id": 24132, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 127 + ], + "block_entity_type": 40 + }, + { + "id": 24133, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 127 + ], + "block_entity_type": 40 + }, + { + "id": 24134, + "luminance": 0, + "opaque": false, + "replaceable": false, + "collision_shapes": [ + 127 + ], + "block_entity_type": 40 } ] } diff --git a/extracted/entities.json b/extracted/entities.json index 018961e..aa7c038 100644 --- a/extracted/entities.json +++ b/extracted/entities.json @@ -21,7 +21,7 @@ "name": "item", "index": 8, "type": "item_stack", - "default_value": "1 air" + "default_value": "0 air" } ] }, @@ -997,7 +997,7 @@ "name": "item", "index": 8, "type": "item_stack", - "default_value": "1 air" + "default_value": "0 air" } ], "default_bounding_box": { @@ -1048,7 +1048,7 @@ "name": "item", "index": 8, "type": "item_stack", - "default_value": "1 air" + "default_value": "0 air" }, { "name": "shooter_entity_id", @@ -1436,7 +1436,7 @@ "name": "item", "index": 22, "type": "item_stack", - "default_value": "1 air" + "default_value": "0 air" }, { "name": "item_display", @@ -1460,7 +1460,7 @@ "name": "stack", "index": 8, "type": "item_stack", - "default_value": "1 air" + "default_value": "0 air" } ], "default_bounding_box": { @@ -1478,7 +1478,7 @@ "name": "item_stack", "index": 8, "type": "item_stack", - "default_value": "1 air" + "default_value": "0 air" }, { "name": "rotation", @@ -1528,7 +1528,7 @@ "name": "health", "index": 9, "type": "float", - "default_value": 20.0 + "default_value": 200.0 }, { "name": "potion_swirls_color", @@ -2302,9 +2302,9 @@ } ], "default_bounding_box": { - "size_x": 0.699999988079071, - "size_y": 0.5, - "size_z": 0.699999988079071 + "size_x": 1.399999976158142, + "size_y": 0.8999999761581421, + "size_z": 1.399999976158142 } }, "SquidEntity": { @@ -2448,7 +2448,7 @@ "name": "item", "index": 8, "type": "item_stack", - "default_value": "1 air" + "default_value": "0 air" } ] }, @@ -2863,7 +2863,7 @@ "type": "villager_data", "default_value": { "type": "plains", - "profession": "none", + "profession": "toolsmith", "level": 1 } } diff --git a/extracted/items.json b/extracted/items.json index 9463406..4272b68 100644 --- a/extracted/items.json +++ b/extracted/items.json @@ -415,6 +415,15 @@ }, { "id": 46, + "name": "suspicious_gravel", + "translation_key": "block.minecraft.suspicious_gravel", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 47, "name": "red_sand", "translation_key": "block.minecraft.red_sand", "max_stack": 64, @@ -423,7 +432,7 @@ "fireproof": false }, { - "id": 47, + "id": 48, "name": "gravel", "translation_key": "block.minecraft.gravel", "max_stack": 64, @@ -432,7 +441,7 @@ "fireproof": false }, { - "id": 48, + "id": 49, "name": "coal_ore", "translation_key": "block.minecraft.coal_ore", "max_stack": 64, @@ -441,7 +450,7 @@ "fireproof": false }, { - "id": 49, + "id": 50, "name": "deepslate_coal_ore", "translation_key": "block.minecraft.deepslate_coal_ore", "max_stack": 64, @@ -450,7 +459,7 @@ "fireproof": false }, { - "id": 50, + "id": 51, "name": "iron_ore", "translation_key": "block.minecraft.iron_ore", "max_stack": 64, @@ -459,7 +468,7 @@ "fireproof": false }, { - "id": 51, + "id": 52, "name": "deepslate_iron_ore", "translation_key": "block.minecraft.deepslate_iron_ore", "max_stack": 64, @@ -468,7 +477,7 @@ "fireproof": false }, { - "id": 52, + "id": 53, "name": "copper_ore", "translation_key": "block.minecraft.copper_ore", "max_stack": 64, @@ -477,7 +486,7 @@ "fireproof": false }, { - "id": 53, + "id": 54, "name": "deepslate_copper_ore", "translation_key": "block.minecraft.deepslate_copper_ore", "max_stack": 64, @@ -486,7 +495,7 @@ "fireproof": false }, { - "id": 54, + "id": 55, "name": "gold_ore", "translation_key": "block.minecraft.gold_ore", "max_stack": 64, @@ -495,7 +504,7 @@ "fireproof": false }, { - "id": 55, + "id": 56, "name": "deepslate_gold_ore", "translation_key": "block.minecraft.deepslate_gold_ore", "max_stack": 64, @@ -504,7 +513,7 @@ "fireproof": false }, { - "id": 56, + "id": 57, "name": "redstone_ore", "translation_key": "block.minecraft.redstone_ore", "max_stack": 64, @@ -513,7 +522,7 @@ "fireproof": false }, { - "id": 57, + "id": 58, "name": "deepslate_redstone_ore", "translation_key": "block.minecraft.deepslate_redstone_ore", "max_stack": 64, @@ -522,7 +531,7 @@ "fireproof": false }, { - "id": 58, + "id": 59, "name": "emerald_ore", "translation_key": "block.minecraft.emerald_ore", "max_stack": 64, @@ -531,7 +540,7 @@ "fireproof": false }, { - "id": 59, + "id": 60, "name": "deepslate_emerald_ore", "translation_key": "block.minecraft.deepslate_emerald_ore", "max_stack": 64, @@ -540,7 +549,7 @@ "fireproof": false }, { - "id": 60, + "id": 61, "name": "lapis_ore", "translation_key": "block.minecraft.lapis_ore", "max_stack": 64, @@ -549,7 +558,7 @@ "fireproof": false }, { - "id": 61, + "id": 62, "name": "deepslate_lapis_ore", "translation_key": "block.minecraft.deepslate_lapis_ore", "max_stack": 64, @@ -558,7 +567,7 @@ "fireproof": false }, { - "id": 62, + "id": 63, "name": "diamond_ore", "translation_key": "block.minecraft.diamond_ore", "max_stack": 64, @@ -567,7 +576,7 @@ "fireproof": false }, { - "id": 63, + "id": 64, "name": "deepslate_diamond_ore", "translation_key": "block.minecraft.deepslate_diamond_ore", "max_stack": 64, @@ -576,7 +585,7 @@ "fireproof": false }, { - "id": 64, + "id": 65, "name": "nether_gold_ore", "translation_key": "block.minecraft.nether_gold_ore", "max_stack": 64, @@ -585,7 +594,7 @@ "fireproof": false }, { - "id": 65, + "id": 66, "name": "nether_quartz_ore", "translation_key": "block.minecraft.nether_quartz_ore", "max_stack": 64, @@ -594,7 +603,7 @@ "fireproof": false }, { - "id": 66, + "id": 67, "name": "ancient_debris", "translation_key": "block.minecraft.ancient_debris", "max_stack": 64, @@ -603,7 +612,7 @@ "fireproof": true }, { - "id": 67, + "id": 68, "name": "coal_block", "translation_key": "block.minecraft.coal_block", "max_stack": 64, @@ -612,7 +621,7 @@ "fireproof": false }, { - "id": 68, + "id": 69, "name": "raw_iron_block", "translation_key": "block.minecraft.raw_iron_block", "max_stack": 64, @@ -621,7 +630,7 @@ "fireproof": false }, { - "id": 69, + "id": 70, "name": "raw_copper_block", "translation_key": "block.minecraft.raw_copper_block", "max_stack": 64, @@ -630,7 +639,7 @@ "fireproof": false }, { - "id": 70, + "id": 71, "name": "raw_gold_block", "translation_key": "block.minecraft.raw_gold_block", "max_stack": 64, @@ -639,7 +648,7 @@ "fireproof": false }, { - "id": 71, + "id": 72, "name": "amethyst_block", "translation_key": "block.minecraft.amethyst_block", "max_stack": 64, @@ -648,7 +657,7 @@ "fireproof": false }, { - "id": 72, + "id": 73, "name": "budding_amethyst", "translation_key": "block.minecraft.budding_amethyst", "max_stack": 64, @@ -657,7 +666,7 @@ "fireproof": false }, { - "id": 73, + "id": 74, "name": "iron_block", "translation_key": "block.minecraft.iron_block", "max_stack": 64, @@ -666,7 +675,7 @@ "fireproof": false }, { - "id": 74, + "id": 75, "name": "copper_block", "translation_key": "block.minecraft.copper_block", "max_stack": 64, @@ -675,7 +684,7 @@ "fireproof": false }, { - "id": 75, + "id": 76, "name": "gold_block", "translation_key": "block.minecraft.gold_block", "max_stack": 64, @@ -684,7 +693,7 @@ "fireproof": false }, { - "id": 76, + "id": 77, "name": "diamond_block", "translation_key": "block.minecraft.diamond_block", "max_stack": 64, @@ -693,7 +702,7 @@ "fireproof": false }, { - "id": 77, + "id": 78, "name": "netherite_block", "translation_key": "block.minecraft.netherite_block", "max_stack": 64, @@ -702,7 +711,7 @@ "fireproof": true }, { - "id": 78, + "id": 79, "name": "exposed_copper", "translation_key": "block.minecraft.exposed_copper", "max_stack": 64, @@ -711,7 +720,7 @@ "fireproof": false }, { - "id": 79, + "id": 80, "name": "weathered_copper", "translation_key": "block.minecraft.weathered_copper", "max_stack": 64, @@ -720,7 +729,7 @@ "fireproof": false }, { - "id": 80, + "id": 81, "name": "oxidized_copper", "translation_key": "block.minecraft.oxidized_copper", "max_stack": 64, @@ -729,7 +738,7 @@ "fireproof": false }, { - "id": 81, + "id": 82, "name": "cut_copper", "translation_key": "block.minecraft.cut_copper", "max_stack": 64, @@ -738,7 +747,7 @@ "fireproof": false }, { - "id": 82, + "id": 83, "name": "exposed_cut_copper", "translation_key": "block.minecraft.exposed_cut_copper", "max_stack": 64, @@ -747,7 +756,7 @@ "fireproof": false }, { - "id": 83, + "id": 84, "name": "weathered_cut_copper", "translation_key": "block.minecraft.weathered_cut_copper", "max_stack": 64, @@ -756,7 +765,7 @@ "fireproof": false }, { - "id": 84, + "id": 85, "name": "oxidized_cut_copper", "translation_key": "block.minecraft.oxidized_cut_copper", "max_stack": 64, @@ -765,7 +774,7 @@ "fireproof": false }, { - "id": 85, + "id": 86, "name": "cut_copper_stairs", "translation_key": "block.minecraft.cut_copper_stairs", "max_stack": 64, @@ -774,7 +783,7 @@ "fireproof": false }, { - "id": 86, + "id": 87, "name": "exposed_cut_copper_stairs", "translation_key": "block.minecraft.exposed_cut_copper_stairs", "max_stack": 64, @@ -783,7 +792,7 @@ "fireproof": false }, { - "id": 87, + "id": 88, "name": "weathered_cut_copper_stairs", "translation_key": "block.minecraft.weathered_cut_copper_stairs", "max_stack": 64, @@ -792,7 +801,7 @@ "fireproof": false }, { - "id": 88, + "id": 89, "name": "oxidized_cut_copper_stairs", "translation_key": "block.minecraft.oxidized_cut_copper_stairs", "max_stack": 64, @@ -801,7 +810,7 @@ "fireproof": false }, { - "id": 89, + "id": 90, "name": "cut_copper_slab", "translation_key": "block.minecraft.cut_copper_slab", "max_stack": 64, @@ -810,7 +819,7 @@ "fireproof": false }, { - "id": 90, + "id": 91, "name": "exposed_cut_copper_slab", "translation_key": "block.minecraft.exposed_cut_copper_slab", "max_stack": 64, @@ -819,7 +828,7 @@ "fireproof": false }, { - "id": 91, + "id": 92, "name": "weathered_cut_copper_slab", "translation_key": "block.minecraft.weathered_cut_copper_slab", "max_stack": 64, @@ -828,7 +837,7 @@ "fireproof": false }, { - "id": 92, + "id": 93, "name": "oxidized_cut_copper_slab", "translation_key": "block.minecraft.oxidized_cut_copper_slab", "max_stack": 64, @@ -837,7 +846,7 @@ "fireproof": false }, { - "id": 93, + "id": 94, "name": "waxed_copper_block", "translation_key": "block.minecraft.waxed_copper_block", "max_stack": 64, @@ -846,7 +855,7 @@ "fireproof": false }, { - "id": 94, + "id": 95, "name": "waxed_exposed_copper", "translation_key": "block.minecraft.waxed_exposed_copper", "max_stack": 64, @@ -855,7 +864,7 @@ "fireproof": false }, { - "id": 95, + "id": 96, "name": "waxed_weathered_copper", "translation_key": "block.minecraft.waxed_weathered_copper", "max_stack": 64, @@ -864,7 +873,7 @@ "fireproof": false }, { - "id": 96, + "id": 97, "name": "waxed_oxidized_copper", "translation_key": "block.minecraft.waxed_oxidized_copper", "max_stack": 64, @@ -873,7 +882,7 @@ "fireproof": false }, { - "id": 97, + "id": 98, "name": "waxed_cut_copper", "translation_key": "block.minecraft.waxed_cut_copper", "max_stack": 64, @@ -882,7 +891,7 @@ "fireproof": false }, { - "id": 98, + "id": 99, "name": "waxed_exposed_cut_copper", "translation_key": "block.minecraft.waxed_exposed_cut_copper", "max_stack": 64, @@ -891,7 +900,7 @@ "fireproof": false }, { - "id": 99, + "id": 100, "name": "waxed_weathered_cut_copper", "translation_key": "block.minecraft.waxed_weathered_cut_copper", "max_stack": 64, @@ -900,7 +909,7 @@ "fireproof": false }, { - "id": 100, + "id": 101, "name": "waxed_oxidized_cut_copper", "translation_key": "block.minecraft.waxed_oxidized_cut_copper", "max_stack": 64, @@ -909,7 +918,7 @@ "fireproof": false }, { - "id": 101, + "id": 102, "name": "waxed_cut_copper_stairs", "translation_key": "block.minecraft.waxed_cut_copper_stairs", "max_stack": 64, @@ -918,7 +927,7 @@ "fireproof": false }, { - "id": 102, + "id": 103, "name": "waxed_exposed_cut_copper_stairs", "translation_key": "block.minecraft.waxed_exposed_cut_copper_stairs", "max_stack": 64, @@ -927,7 +936,7 @@ "fireproof": false }, { - "id": 103, + "id": 104, "name": "waxed_weathered_cut_copper_stairs", "translation_key": "block.minecraft.waxed_weathered_cut_copper_stairs", "max_stack": 64, @@ -936,7 +945,7 @@ "fireproof": false }, { - "id": 104, + "id": 105, "name": "waxed_oxidized_cut_copper_stairs", "translation_key": "block.minecraft.waxed_oxidized_cut_copper_stairs", "max_stack": 64, @@ -945,7 +954,7 @@ "fireproof": false }, { - "id": 105, + "id": 106, "name": "waxed_cut_copper_slab", "translation_key": "block.minecraft.waxed_cut_copper_slab", "max_stack": 64, @@ -954,7 +963,7 @@ "fireproof": false }, { - "id": 106, + "id": 107, "name": "waxed_exposed_cut_copper_slab", "translation_key": "block.minecraft.waxed_exposed_cut_copper_slab", "max_stack": 64, @@ -963,7 +972,7 @@ "fireproof": false }, { - "id": 107, + "id": 108, "name": "waxed_weathered_cut_copper_slab", "translation_key": "block.minecraft.waxed_weathered_cut_copper_slab", "max_stack": 64, @@ -972,7 +981,7 @@ "fireproof": false }, { - "id": 108, + "id": 109, "name": "waxed_oxidized_cut_copper_slab", "translation_key": "block.minecraft.waxed_oxidized_cut_copper_slab", "max_stack": 64, @@ -981,7 +990,7 @@ "fireproof": false }, { - "id": 109, + "id": 110, "name": "oak_log", "translation_key": "block.minecraft.oak_log", "max_stack": 64, @@ -990,7 +999,7 @@ "fireproof": false }, { - "id": 110, + "id": 111, "name": "spruce_log", "translation_key": "block.minecraft.spruce_log", "max_stack": 64, @@ -999,7 +1008,7 @@ "fireproof": false }, { - "id": 111, + "id": 112, "name": "birch_log", "translation_key": "block.minecraft.birch_log", "max_stack": 64, @@ -1008,7 +1017,7 @@ "fireproof": false }, { - "id": 112, + "id": 113, "name": "jungle_log", "translation_key": "block.minecraft.jungle_log", "max_stack": 64, @@ -1017,7 +1026,7 @@ "fireproof": false }, { - "id": 113, + "id": 114, "name": "acacia_log", "translation_key": "block.minecraft.acacia_log", "max_stack": 64, @@ -1026,7 +1035,7 @@ "fireproof": false }, { - "id": 114, + "id": 115, "name": "cherry_log", "translation_key": "block.minecraft.cherry_log", "max_stack": 64, @@ -1035,7 +1044,7 @@ "fireproof": false }, { - "id": 115, + "id": 116, "name": "dark_oak_log", "translation_key": "block.minecraft.dark_oak_log", "max_stack": 64, @@ -1044,7 +1053,7 @@ "fireproof": false }, { - "id": 116, + "id": 117, "name": "mangrove_log", "translation_key": "block.minecraft.mangrove_log", "max_stack": 64, @@ -1053,7 +1062,7 @@ "fireproof": false }, { - "id": 117, + "id": 118, "name": "mangrove_roots", "translation_key": "block.minecraft.mangrove_roots", "max_stack": 64, @@ -1062,7 +1071,7 @@ "fireproof": false }, { - "id": 118, + "id": 119, "name": "muddy_mangrove_roots", "translation_key": "block.minecraft.muddy_mangrove_roots", "max_stack": 64, @@ -1071,7 +1080,7 @@ "fireproof": false }, { - "id": 119, + "id": 120, "name": "crimson_stem", "translation_key": "block.minecraft.crimson_stem", "max_stack": 64, @@ -1080,7 +1089,7 @@ "fireproof": false }, { - "id": 120, + "id": 121, "name": "warped_stem", "translation_key": "block.minecraft.warped_stem", "max_stack": 64, @@ -1089,7 +1098,7 @@ "fireproof": false }, { - "id": 121, + "id": 122, "name": "bamboo_block", "translation_key": "block.minecraft.bamboo_block", "max_stack": 64, @@ -1098,7 +1107,7 @@ "fireproof": false }, { - "id": 122, + "id": 123, "name": "stripped_oak_log", "translation_key": "block.minecraft.stripped_oak_log", "max_stack": 64, @@ -1107,7 +1116,7 @@ "fireproof": false }, { - "id": 123, + "id": 124, "name": "stripped_spruce_log", "translation_key": "block.minecraft.stripped_spruce_log", "max_stack": 64, @@ -1116,7 +1125,7 @@ "fireproof": false }, { - "id": 124, + "id": 125, "name": "stripped_birch_log", "translation_key": "block.minecraft.stripped_birch_log", "max_stack": 64, @@ -1125,7 +1134,7 @@ "fireproof": false }, { - "id": 125, + "id": 126, "name": "stripped_jungle_log", "translation_key": "block.minecraft.stripped_jungle_log", "max_stack": 64, @@ -1134,7 +1143,7 @@ "fireproof": false }, { - "id": 126, + "id": 127, "name": "stripped_acacia_log", "translation_key": "block.minecraft.stripped_acacia_log", "max_stack": 64, @@ -1143,7 +1152,7 @@ "fireproof": false }, { - "id": 127, + "id": 128, "name": "stripped_cherry_log", "translation_key": "block.minecraft.stripped_cherry_log", "max_stack": 64, @@ -1152,7 +1161,7 @@ "fireproof": false }, { - "id": 128, + "id": 129, "name": "stripped_dark_oak_log", "translation_key": "block.minecraft.stripped_dark_oak_log", "max_stack": 64, @@ -1161,7 +1170,7 @@ "fireproof": false }, { - "id": 129, + "id": 130, "name": "stripped_mangrove_log", "translation_key": "block.minecraft.stripped_mangrove_log", "max_stack": 64, @@ -1170,7 +1179,7 @@ "fireproof": false }, { - "id": 130, + "id": 131, "name": "stripped_crimson_stem", "translation_key": "block.minecraft.stripped_crimson_stem", "max_stack": 64, @@ -1179,7 +1188,7 @@ "fireproof": false }, { - "id": 131, + "id": 132, "name": "stripped_warped_stem", "translation_key": "block.minecraft.stripped_warped_stem", "max_stack": 64, @@ -1188,7 +1197,7 @@ "fireproof": false }, { - "id": 132, + "id": 133, "name": "stripped_oak_wood", "translation_key": "block.minecraft.stripped_oak_wood", "max_stack": 64, @@ -1197,7 +1206,7 @@ "fireproof": false }, { - "id": 133, + "id": 134, "name": "stripped_spruce_wood", "translation_key": "block.minecraft.stripped_spruce_wood", "max_stack": 64, @@ -1206,7 +1215,7 @@ "fireproof": false }, { - "id": 134, + "id": 135, "name": "stripped_birch_wood", "translation_key": "block.minecraft.stripped_birch_wood", "max_stack": 64, @@ -1215,7 +1224,7 @@ "fireproof": false }, { - "id": 135, + "id": 136, "name": "stripped_jungle_wood", "translation_key": "block.minecraft.stripped_jungle_wood", "max_stack": 64, @@ -1224,7 +1233,7 @@ "fireproof": false }, { - "id": 136, + "id": 137, "name": "stripped_acacia_wood", "translation_key": "block.minecraft.stripped_acacia_wood", "max_stack": 64, @@ -1233,7 +1242,7 @@ "fireproof": false }, { - "id": 137, + "id": 138, "name": "stripped_cherry_wood", "translation_key": "block.minecraft.stripped_cherry_wood", "max_stack": 64, @@ -1242,7 +1251,7 @@ "fireproof": false }, { - "id": 138, + "id": 139, "name": "stripped_dark_oak_wood", "translation_key": "block.minecraft.stripped_dark_oak_wood", "max_stack": 64, @@ -1251,7 +1260,7 @@ "fireproof": false }, { - "id": 139, + "id": 140, "name": "stripped_mangrove_wood", "translation_key": "block.minecraft.stripped_mangrove_wood", "max_stack": 64, @@ -1260,7 +1269,7 @@ "fireproof": false }, { - "id": 140, + "id": 141, "name": "stripped_crimson_hyphae", "translation_key": "block.minecraft.stripped_crimson_hyphae", "max_stack": 64, @@ -1269,7 +1278,7 @@ "fireproof": false }, { - "id": 141, + "id": 142, "name": "stripped_warped_hyphae", "translation_key": "block.minecraft.stripped_warped_hyphae", "max_stack": 64, @@ -1278,7 +1287,7 @@ "fireproof": false }, { - "id": 142, + "id": 143, "name": "stripped_bamboo_block", "translation_key": "block.minecraft.stripped_bamboo_block", "max_stack": 64, @@ -1287,7 +1296,7 @@ "fireproof": false }, { - "id": 143, + "id": 144, "name": "oak_wood", "translation_key": "block.minecraft.oak_wood", "max_stack": 64, @@ -1296,7 +1305,7 @@ "fireproof": false }, { - "id": 144, + "id": 145, "name": "spruce_wood", "translation_key": "block.minecraft.spruce_wood", "max_stack": 64, @@ -1305,7 +1314,7 @@ "fireproof": false }, { - "id": 145, + "id": 146, "name": "birch_wood", "translation_key": "block.minecraft.birch_wood", "max_stack": 64, @@ -1314,7 +1323,7 @@ "fireproof": false }, { - "id": 146, + "id": 147, "name": "jungle_wood", "translation_key": "block.minecraft.jungle_wood", "max_stack": 64, @@ -1323,7 +1332,7 @@ "fireproof": false }, { - "id": 147, + "id": 148, "name": "acacia_wood", "translation_key": "block.minecraft.acacia_wood", "max_stack": 64, @@ -1332,7 +1341,7 @@ "fireproof": false }, { - "id": 148, + "id": 149, "name": "cherry_wood", "translation_key": "block.minecraft.cherry_wood", "max_stack": 64, @@ -1341,7 +1350,7 @@ "fireproof": false }, { - "id": 149, + "id": 150, "name": "dark_oak_wood", "translation_key": "block.minecraft.dark_oak_wood", "max_stack": 64, @@ -1350,7 +1359,7 @@ "fireproof": false }, { - "id": 150, + "id": 151, "name": "mangrove_wood", "translation_key": "block.minecraft.mangrove_wood", "max_stack": 64, @@ -1359,7 +1368,7 @@ "fireproof": false }, { - "id": 151, + "id": 152, "name": "crimson_hyphae", "translation_key": "block.minecraft.crimson_hyphae", "max_stack": 64, @@ -1368,7 +1377,7 @@ "fireproof": false }, { - "id": 152, + "id": 153, "name": "warped_hyphae", "translation_key": "block.minecraft.warped_hyphae", "max_stack": 64, @@ -1377,7 +1386,7 @@ "fireproof": false }, { - "id": 153, + "id": 154, "name": "oak_leaves", "translation_key": "block.minecraft.oak_leaves", "max_stack": 64, @@ -1386,7 +1395,7 @@ "fireproof": false }, { - "id": 154, + "id": 155, "name": "spruce_leaves", "translation_key": "block.minecraft.spruce_leaves", "max_stack": 64, @@ -1395,7 +1404,7 @@ "fireproof": false }, { - "id": 155, + "id": 156, "name": "birch_leaves", "translation_key": "block.minecraft.birch_leaves", "max_stack": 64, @@ -1404,7 +1413,7 @@ "fireproof": false }, { - "id": 156, + "id": 157, "name": "jungle_leaves", "translation_key": "block.minecraft.jungle_leaves", "max_stack": 64, @@ -1413,7 +1422,7 @@ "fireproof": false }, { - "id": 157, + "id": 158, "name": "acacia_leaves", "translation_key": "block.minecraft.acacia_leaves", "max_stack": 64, @@ -1422,7 +1431,7 @@ "fireproof": false }, { - "id": 158, + "id": 159, "name": "cherry_leaves", "translation_key": "block.minecraft.cherry_leaves", "max_stack": 64, @@ -1431,7 +1440,7 @@ "fireproof": false }, { - "id": 159, + "id": 160, "name": "dark_oak_leaves", "translation_key": "block.minecraft.dark_oak_leaves", "max_stack": 64, @@ -1440,7 +1449,7 @@ "fireproof": false }, { - "id": 160, + "id": 161, "name": "mangrove_leaves", "translation_key": "block.minecraft.mangrove_leaves", "max_stack": 64, @@ -1449,7 +1458,7 @@ "fireproof": false }, { - "id": 161, + "id": 162, "name": "azalea_leaves", "translation_key": "block.minecraft.azalea_leaves", "max_stack": 64, @@ -1458,7 +1467,7 @@ "fireproof": false }, { - "id": 162, + "id": 163, "name": "flowering_azalea_leaves", "translation_key": "block.minecraft.flowering_azalea_leaves", "max_stack": 64, @@ -1467,7 +1476,7 @@ "fireproof": false }, { - "id": 163, + "id": 164, "name": "sponge", "translation_key": "block.minecraft.sponge", "max_stack": 64, @@ -1476,7 +1485,7 @@ "fireproof": false }, { - "id": 164, + "id": 165, "name": "wet_sponge", "translation_key": "block.minecraft.wet_sponge", "max_stack": 64, @@ -1485,7 +1494,7 @@ "fireproof": false }, { - "id": 165, + "id": 166, "name": "glass", "translation_key": "block.minecraft.glass", "max_stack": 64, @@ -1494,7 +1503,7 @@ "fireproof": false }, { - "id": 166, + "id": 167, "name": "tinted_glass", "translation_key": "block.minecraft.tinted_glass", "max_stack": 64, @@ -1503,7 +1512,7 @@ "fireproof": false }, { - "id": 167, + "id": 168, "name": "lapis_block", "translation_key": "block.minecraft.lapis_block", "max_stack": 64, @@ -1512,7 +1521,7 @@ "fireproof": false }, { - "id": 168, + "id": 169, "name": "sandstone", "translation_key": "block.minecraft.sandstone", "max_stack": 64, @@ -1521,7 +1530,7 @@ "fireproof": false }, { - "id": 169, + "id": 170, "name": "chiseled_sandstone", "translation_key": "block.minecraft.chiseled_sandstone", "max_stack": 64, @@ -1530,7 +1539,7 @@ "fireproof": false }, { - "id": 170, + "id": 171, "name": "cut_sandstone", "translation_key": "block.minecraft.cut_sandstone", "max_stack": 64, @@ -1539,7 +1548,7 @@ "fireproof": false }, { - "id": 171, + "id": 172, "name": "cobweb", "translation_key": "block.minecraft.cobweb", "max_stack": 64, @@ -1548,7 +1557,7 @@ "fireproof": false }, { - "id": 172, + "id": 173, "name": "grass", "translation_key": "block.minecraft.grass", "max_stack": 64, @@ -1557,7 +1566,7 @@ "fireproof": false }, { - "id": 173, + "id": 174, "name": "fern", "translation_key": "block.minecraft.fern", "max_stack": 64, @@ -1566,7 +1575,7 @@ "fireproof": false }, { - "id": 174, + "id": 175, "name": "azalea", "translation_key": "block.minecraft.azalea", "max_stack": 64, @@ -1575,7 +1584,7 @@ "fireproof": false }, { - "id": 175, + "id": 176, "name": "flowering_azalea", "translation_key": "block.minecraft.flowering_azalea", "max_stack": 64, @@ -1584,7 +1593,7 @@ "fireproof": false }, { - "id": 176, + "id": 177, "name": "dead_bush", "translation_key": "block.minecraft.dead_bush", "max_stack": 64, @@ -1593,7 +1602,7 @@ "fireproof": false }, { - "id": 177, + "id": 178, "name": "seagrass", "translation_key": "block.minecraft.seagrass", "max_stack": 64, @@ -1602,7 +1611,7 @@ "fireproof": false }, { - "id": 178, + "id": 179, "name": "sea_pickle", "translation_key": "block.minecraft.sea_pickle", "max_stack": 64, @@ -1611,7 +1620,7 @@ "fireproof": false }, { - "id": 179, + "id": 180, "name": "white_wool", "translation_key": "block.minecraft.white_wool", "max_stack": 64, @@ -1620,7 +1629,7 @@ "fireproof": false }, { - "id": 180, + "id": 181, "name": "orange_wool", "translation_key": "block.minecraft.orange_wool", "max_stack": 64, @@ -1629,7 +1638,7 @@ "fireproof": false }, { - "id": 181, + "id": 182, "name": "magenta_wool", "translation_key": "block.minecraft.magenta_wool", "max_stack": 64, @@ -1638,7 +1647,7 @@ "fireproof": false }, { - "id": 182, + "id": 183, "name": "light_blue_wool", "translation_key": "block.minecraft.light_blue_wool", "max_stack": 64, @@ -1647,7 +1656,7 @@ "fireproof": false }, { - "id": 183, + "id": 184, "name": "yellow_wool", "translation_key": "block.minecraft.yellow_wool", "max_stack": 64, @@ -1656,7 +1665,7 @@ "fireproof": false }, { - "id": 184, + "id": 185, "name": "lime_wool", "translation_key": "block.minecraft.lime_wool", "max_stack": 64, @@ -1665,7 +1674,7 @@ "fireproof": false }, { - "id": 185, + "id": 186, "name": "pink_wool", "translation_key": "block.minecraft.pink_wool", "max_stack": 64, @@ -1674,7 +1683,7 @@ "fireproof": false }, { - "id": 186, + "id": 187, "name": "gray_wool", "translation_key": "block.minecraft.gray_wool", "max_stack": 64, @@ -1683,7 +1692,7 @@ "fireproof": false }, { - "id": 187, + "id": 188, "name": "light_gray_wool", "translation_key": "block.minecraft.light_gray_wool", "max_stack": 64, @@ -1692,7 +1701,7 @@ "fireproof": false }, { - "id": 188, + "id": 189, "name": "cyan_wool", "translation_key": "block.minecraft.cyan_wool", "max_stack": 64, @@ -1701,7 +1710,7 @@ "fireproof": false }, { - "id": 189, + "id": 190, "name": "purple_wool", "translation_key": "block.minecraft.purple_wool", "max_stack": 64, @@ -1710,7 +1719,7 @@ "fireproof": false }, { - "id": 190, + "id": 191, "name": "blue_wool", "translation_key": "block.minecraft.blue_wool", "max_stack": 64, @@ -1719,7 +1728,7 @@ "fireproof": false }, { - "id": 191, + "id": 192, "name": "brown_wool", "translation_key": "block.minecraft.brown_wool", "max_stack": 64, @@ -1728,7 +1737,7 @@ "fireproof": false }, { - "id": 192, + "id": 193, "name": "green_wool", "translation_key": "block.minecraft.green_wool", "max_stack": 64, @@ -1737,7 +1746,7 @@ "fireproof": false }, { - "id": 193, + "id": 194, "name": "red_wool", "translation_key": "block.minecraft.red_wool", "max_stack": 64, @@ -1746,7 +1755,7 @@ "fireproof": false }, { - "id": 194, + "id": 195, "name": "black_wool", "translation_key": "block.minecraft.black_wool", "max_stack": 64, @@ -1755,7 +1764,7 @@ "fireproof": false }, { - "id": 195, + "id": 196, "name": "dandelion", "translation_key": "block.minecraft.dandelion", "max_stack": 64, @@ -1764,7 +1773,7 @@ "fireproof": false }, { - "id": 196, + "id": 197, "name": "poppy", "translation_key": "block.minecraft.poppy", "max_stack": 64, @@ -1773,7 +1782,7 @@ "fireproof": false }, { - "id": 197, + "id": 198, "name": "blue_orchid", "translation_key": "block.minecraft.blue_orchid", "max_stack": 64, @@ -1782,7 +1791,7 @@ "fireproof": false }, { - "id": 198, + "id": 199, "name": "allium", "translation_key": "block.minecraft.allium", "max_stack": 64, @@ -1791,7 +1800,7 @@ "fireproof": false }, { - "id": 199, + "id": 200, "name": "azure_bluet", "translation_key": "block.minecraft.azure_bluet", "max_stack": 64, @@ -1800,7 +1809,7 @@ "fireproof": false }, { - "id": 200, + "id": 201, "name": "red_tulip", "translation_key": "block.minecraft.red_tulip", "max_stack": 64, @@ -1809,7 +1818,7 @@ "fireproof": false }, { - "id": 201, + "id": 202, "name": "orange_tulip", "translation_key": "block.minecraft.orange_tulip", "max_stack": 64, @@ -1818,7 +1827,7 @@ "fireproof": false }, { - "id": 202, + "id": 203, "name": "white_tulip", "translation_key": "block.minecraft.white_tulip", "max_stack": 64, @@ -1827,7 +1836,7 @@ "fireproof": false }, { - "id": 203, + "id": 204, "name": "pink_tulip", "translation_key": "block.minecraft.pink_tulip", "max_stack": 64, @@ -1836,7 +1845,7 @@ "fireproof": false }, { - "id": 204, + "id": 205, "name": "oxeye_daisy", "translation_key": "block.minecraft.oxeye_daisy", "max_stack": 64, @@ -1845,7 +1854,7 @@ "fireproof": false }, { - "id": 205, + "id": 206, "name": "cornflower", "translation_key": "block.minecraft.cornflower", "max_stack": 64, @@ -1854,7 +1863,7 @@ "fireproof": false }, { - "id": 206, + "id": 207, "name": "lily_of_the_valley", "translation_key": "block.minecraft.lily_of_the_valley", "max_stack": 64, @@ -1863,7 +1872,7 @@ "fireproof": false }, { - "id": 207, + "id": 208, "name": "wither_rose", "translation_key": "block.minecraft.wither_rose", "max_stack": 64, @@ -1872,7 +1881,7 @@ "fireproof": false }, { - "id": 208, + "id": 209, "name": "torchflower", "translation_key": "block.minecraft.torchflower", "max_stack": 64, @@ -1881,7 +1890,16 @@ "fireproof": false }, { - "id": 209, + "id": 210, + "name": "pitcher_plant", + "translation_key": "block.minecraft.pitcher_plant", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 211, "name": "spore_blossom", "translation_key": "block.minecraft.spore_blossom", "max_stack": 64, @@ -1890,7 +1908,7 @@ "fireproof": false }, { - "id": 210, + "id": 212, "name": "brown_mushroom", "translation_key": "block.minecraft.brown_mushroom", "max_stack": 64, @@ -1899,7 +1917,7 @@ "fireproof": false }, { - "id": 211, + "id": 213, "name": "red_mushroom", "translation_key": "block.minecraft.red_mushroom", "max_stack": 64, @@ -1908,7 +1926,7 @@ "fireproof": false }, { - "id": 212, + "id": 214, "name": "crimson_fungus", "translation_key": "block.minecraft.crimson_fungus", "max_stack": 64, @@ -1917,7 +1935,7 @@ "fireproof": false }, { - "id": 213, + "id": 215, "name": "warped_fungus", "translation_key": "block.minecraft.warped_fungus", "max_stack": 64, @@ -1926,7 +1944,7 @@ "fireproof": false }, { - "id": 214, + "id": 216, "name": "crimson_roots", "translation_key": "block.minecraft.crimson_roots", "max_stack": 64, @@ -1935,7 +1953,7 @@ "fireproof": false }, { - "id": 215, + "id": 217, "name": "warped_roots", "translation_key": "block.minecraft.warped_roots", "max_stack": 64, @@ -1944,7 +1962,7 @@ "fireproof": false }, { - "id": 216, + "id": 218, "name": "nether_sprouts", "translation_key": "block.minecraft.nether_sprouts", "max_stack": 64, @@ -1953,7 +1971,7 @@ "fireproof": false }, { - "id": 217, + "id": 219, "name": "weeping_vines", "translation_key": "block.minecraft.weeping_vines", "max_stack": 64, @@ -1962,7 +1980,7 @@ "fireproof": false }, { - "id": 218, + "id": 220, "name": "twisting_vines", "translation_key": "block.minecraft.twisting_vines", "max_stack": 64, @@ -1971,7 +1989,7 @@ "fireproof": false }, { - "id": 219, + "id": 221, "name": "sugar_cane", "translation_key": "block.minecraft.sugar_cane", "max_stack": 64, @@ -1980,7 +1998,7 @@ "fireproof": false }, { - "id": 220, + "id": 222, "name": "kelp", "translation_key": "block.minecraft.kelp", "max_stack": 64, @@ -1989,7 +2007,7 @@ "fireproof": false }, { - "id": 221, + "id": 223, "name": "moss_carpet", "translation_key": "block.minecraft.moss_carpet", "max_stack": 64, @@ -1998,7 +2016,7 @@ "fireproof": false }, { - "id": 222, + "id": 224, "name": "pink_petals", "translation_key": "block.minecraft.pink_petals", "max_stack": 64, @@ -2007,7 +2025,7 @@ "fireproof": false }, { - "id": 223, + "id": 225, "name": "moss_block", "translation_key": "block.minecraft.moss_block", "max_stack": 64, @@ -2016,7 +2034,7 @@ "fireproof": false }, { - "id": 224, + "id": 226, "name": "hanging_roots", "translation_key": "block.minecraft.hanging_roots", "max_stack": 64, @@ -2025,7 +2043,7 @@ "fireproof": false }, { - "id": 225, + "id": 227, "name": "big_dripleaf", "translation_key": "block.minecraft.big_dripleaf", "max_stack": 64, @@ -2034,7 +2052,7 @@ "fireproof": false }, { - "id": 226, + "id": 228, "name": "small_dripleaf", "translation_key": "block.minecraft.small_dripleaf", "max_stack": 64, @@ -2043,7 +2061,7 @@ "fireproof": false }, { - "id": 227, + "id": 229, "name": "bamboo", "translation_key": "block.minecraft.bamboo", "max_stack": 64, @@ -2052,7 +2070,7 @@ "fireproof": false }, { - "id": 228, + "id": 230, "name": "oak_slab", "translation_key": "block.minecraft.oak_slab", "max_stack": 64, @@ -2061,7 +2079,7 @@ "fireproof": false }, { - "id": 229, + "id": 231, "name": "spruce_slab", "translation_key": "block.minecraft.spruce_slab", "max_stack": 64, @@ -2070,7 +2088,7 @@ "fireproof": false }, { - "id": 230, + "id": 232, "name": "birch_slab", "translation_key": "block.minecraft.birch_slab", "max_stack": 64, @@ -2079,7 +2097,7 @@ "fireproof": false }, { - "id": 231, + "id": 233, "name": "jungle_slab", "translation_key": "block.minecraft.jungle_slab", "max_stack": 64, @@ -2088,7 +2106,7 @@ "fireproof": false }, { - "id": 232, + "id": 234, "name": "acacia_slab", "translation_key": "block.minecraft.acacia_slab", "max_stack": 64, @@ -2097,7 +2115,7 @@ "fireproof": false }, { - "id": 233, + "id": 235, "name": "cherry_slab", "translation_key": "block.minecraft.cherry_slab", "max_stack": 64, @@ -2106,7 +2124,7 @@ "fireproof": false }, { - "id": 234, + "id": 236, "name": "dark_oak_slab", "translation_key": "block.minecraft.dark_oak_slab", "max_stack": 64, @@ -2115,7 +2133,7 @@ "fireproof": false }, { - "id": 235, + "id": 237, "name": "mangrove_slab", "translation_key": "block.minecraft.mangrove_slab", "max_stack": 64, @@ -2124,7 +2142,7 @@ "fireproof": false }, { - "id": 236, + "id": 238, "name": "bamboo_slab", "translation_key": "block.minecraft.bamboo_slab", "max_stack": 64, @@ -2133,7 +2151,7 @@ "fireproof": false }, { - "id": 237, + "id": 239, "name": "bamboo_mosaic_slab", "translation_key": "block.minecraft.bamboo_mosaic_slab", "max_stack": 64, @@ -2142,7 +2160,7 @@ "fireproof": false }, { - "id": 238, + "id": 240, "name": "crimson_slab", "translation_key": "block.minecraft.crimson_slab", "max_stack": 64, @@ -2151,7 +2169,7 @@ "fireproof": false }, { - "id": 239, + "id": 241, "name": "warped_slab", "translation_key": "block.minecraft.warped_slab", "max_stack": 64, @@ -2160,7 +2178,7 @@ "fireproof": false }, { - "id": 240, + "id": 242, "name": "stone_slab", "translation_key": "block.minecraft.stone_slab", "max_stack": 64, @@ -2169,7 +2187,7 @@ "fireproof": false }, { - "id": 241, + "id": 243, "name": "smooth_stone_slab", "translation_key": "block.minecraft.smooth_stone_slab", "max_stack": 64, @@ -2178,7 +2196,7 @@ "fireproof": false }, { - "id": 242, + "id": 244, "name": "sandstone_slab", "translation_key": "block.minecraft.sandstone_slab", "max_stack": 64, @@ -2187,7 +2205,7 @@ "fireproof": false }, { - "id": 243, + "id": 245, "name": "cut_sandstone_slab", "translation_key": "block.minecraft.cut_sandstone_slab", "max_stack": 64, @@ -2196,7 +2214,7 @@ "fireproof": false }, { - "id": 244, + "id": 246, "name": "petrified_oak_slab", "translation_key": "block.minecraft.petrified_oak_slab", "max_stack": 64, @@ -2205,7 +2223,7 @@ "fireproof": false }, { - "id": 245, + "id": 247, "name": "cobblestone_slab", "translation_key": "block.minecraft.cobblestone_slab", "max_stack": 64, @@ -2214,7 +2232,7 @@ "fireproof": false }, { - "id": 246, + "id": 248, "name": "brick_slab", "translation_key": "block.minecraft.brick_slab", "max_stack": 64, @@ -2223,7 +2241,7 @@ "fireproof": false }, { - "id": 247, + "id": 249, "name": "stone_brick_slab", "translation_key": "block.minecraft.stone_brick_slab", "max_stack": 64, @@ -2232,7 +2250,7 @@ "fireproof": false }, { - "id": 248, + "id": 250, "name": "mud_brick_slab", "translation_key": "block.minecraft.mud_brick_slab", "max_stack": 64, @@ -2241,7 +2259,7 @@ "fireproof": false }, { - "id": 249, + "id": 251, "name": "nether_brick_slab", "translation_key": "block.minecraft.nether_brick_slab", "max_stack": 64, @@ -2250,7 +2268,7 @@ "fireproof": false }, { - "id": 250, + "id": 252, "name": "quartz_slab", "translation_key": "block.minecraft.quartz_slab", "max_stack": 64, @@ -2259,7 +2277,7 @@ "fireproof": false }, { - "id": 251, + "id": 253, "name": "red_sandstone_slab", "translation_key": "block.minecraft.red_sandstone_slab", "max_stack": 64, @@ -2268,7 +2286,7 @@ "fireproof": false }, { - "id": 252, + "id": 254, "name": "cut_red_sandstone_slab", "translation_key": "block.minecraft.cut_red_sandstone_slab", "max_stack": 64, @@ -2277,7 +2295,7 @@ "fireproof": false }, { - "id": 253, + "id": 255, "name": "purpur_slab", "translation_key": "block.minecraft.purpur_slab", "max_stack": 64, @@ -2286,7 +2304,7 @@ "fireproof": false }, { - "id": 254, + "id": 256, "name": "prismarine_slab", "translation_key": "block.minecraft.prismarine_slab", "max_stack": 64, @@ -2295,7 +2313,7 @@ "fireproof": false }, { - "id": 255, + "id": 257, "name": "prismarine_brick_slab", "translation_key": "block.minecraft.prismarine_brick_slab", "max_stack": 64, @@ -2304,7 +2322,7 @@ "fireproof": false }, { - "id": 256, + "id": 258, "name": "dark_prismarine_slab", "translation_key": "block.minecraft.dark_prismarine_slab", "max_stack": 64, @@ -2313,7 +2331,7 @@ "fireproof": false }, { - "id": 257, + "id": 259, "name": "smooth_quartz", "translation_key": "block.minecraft.smooth_quartz", "max_stack": 64, @@ -2322,7 +2340,7 @@ "fireproof": false }, { - "id": 258, + "id": 260, "name": "smooth_red_sandstone", "translation_key": "block.minecraft.smooth_red_sandstone", "max_stack": 64, @@ -2331,7 +2349,7 @@ "fireproof": false }, { - "id": 259, + "id": 261, "name": "smooth_sandstone", "translation_key": "block.minecraft.smooth_sandstone", "max_stack": 64, @@ -2340,7 +2358,7 @@ "fireproof": false }, { - "id": 260, + "id": 262, "name": "smooth_stone", "translation_key": "block.minecraft.smooth_stone", "max_stack": 64, @@ -2349,7 +2367,7 @@ "fireproof": false }, { - "id": 261, + "id": 263, "name": "bricks", "translation_key": "block.minecraft.bricks", "max_stack": 64, @@ -2358,7 +2376,7 @@ "fireproof": false }, { - "id": 262, + "id": 264, "name": "bookshelf", "translation_key": "block.minecraft.bookshelf", "max_stack": 64, @@ -2367,7 +2385,7 @@ "fireproof": false }, { - "id": 263, + "id": 265, "name": "chiseled_bookshelf", "translation_key": "block.minecraft.chiseled_bookshelf", "max_stack": 64, @@ -2376,7 +2394,7 @@ "fireproof": false }, { - "id": 264, + "id": 266, "name": "decorated_pot", "translation_key": "block.minecraft.decorated_pot", "max_stack": 1, @@ -2385,7 +2403,7 @@ "fireproof": false }, { - "id": 265, + "id": 267, "name": "mossy_cobblestone", "translation_key": "block.minecraft.mossy_cobblestone", "max_stack": 64, @@ -2394,7 +2412,7 @@ "fireproof": false }, { - "id": 266, + "id": 268, "name": "obsidian", "translation_key": "block.minecraft.obsidian", "max_stack": 64, @@ -2403,7 +2421,7 @@ "fireproof": false }, { - "id": 267, + "id": 269, "name": "torch", "translation_key": "block.minecraft.torch", "max_stack": 64, @@ -2412,7 +2430,7 @@ "fireproof": false }, { - "id": 268, + "id": 270, "name": "end_rod", "translation_key": "block.minecraft.end_rod", "max_stack": 64, @@ -2421,7 +2439,7 @@ "fireproof": false }, { - "id": 269, + "id": 271, "name": "chorus_plant", "translation_key": "block.minecraft.chorus_plant", "max_stack": 64, @@ -2430,7 +2448,7 @@ "fireproof": false }, { - "id": 270, + "id": 272, "name": "chorus_flower", "translation_key": "block.minecraft.chorus_flower", "max_stack": 64, @@ -2439,7 +2457,7 @@ "fireproof": false }, { - "id": 271, + "id": 273, "name": "purpur_block", "translation_key": "block.minecraft.purpur_block", "max_stack": 64, @@ -2448,7 +2466,7 @@ "fireproof": false }, { - "id": 272, + "id": 274, "name": "purpur_pillar", "translation_key": "block.minecraft.purpur_pillar", "max_stack": 64, @@ -2457,7 +2475,7 @@ "fireproof": false }, { - "id": 273, + "id": 275, "name": "purpur_stairs", "translation_key": "block.minecraft.purpur_stairs", "max_stack": 64, @@ -2466,7 +2484,7 @@ "fireproof": false }, { - "id": 274, + "id": 276, "name": "spawner", "translation_key": "block.minecraft.spawner", "max_stack": 64, @@ -2475,7 +2493,7 @@ "fireproof": false }, { - "id": 275, + "id": 277, "name": "chest", "translation_key": "block.minecraft.chest", "max_stack": 64, @@ -2484,7 +2502,7 @@ "fireproof": false }, { - "id": 276, + "id": 278, "name": "crafting_table", "translation_key": "block.minecraft.crafting_table", "max_stack": 64, @@ -2493,7 +2511,7 @@ "fireproof": false }, { - "id": 277, + "id": 279, "name": "farmland", "translation_key": "block.minecraft.farmland", "max_stack": 64, @@ -2502,7 +2520,7 @@ "fireproof": false }, { - "id": 278, + "id": 280, "name": "furnace", "translation_key": "block.minecraft.furnace", "max_stack": 64, @@ -2511,7 +2529,7 @@ "fireproof": false }, { - "id": 279, + "id": 281, "name": "ladder", "translation_key": "block.minecraft.ladder", "max_stack": 64, @@ -2520,7 +2538,7 @@ "fireproof": false }, { - "id": 280, + "id": 282, "name": "cobblestone_stairs", "translation_key": "block.minecraft.cobblestone_stairs", "max_stack": 64, @@ -2529,7 +2547,7 @@ "fireproof": false }, { - "id": 281, + "id": 283, "name": "snow", "translation_key": "block.minecraft.snow", "max_stack": 64, @@ -2538,7 +2556,7 @@ "fireproof": false }, { - "id": 282, + "id": 284, "name": "ice", "translation_key": "block.minecraft.ice", "max_stack": 64, @@ -2547,7 +2565,7 @@ "fireproof": false }, { - "id": 283, + "id": 285, "name": "snow_block", "translation_key": "block.minecraft.snow_block", "max_stack": 64, @@ -2556,7 +2574,7 @@ "fireproof": false }, { - "id": 284, + "id": 286, "name": "cactus", "translation_key": "block.minecraft.cactus", "max_stack": 64, @@ -2565,7 +2583,7 @@ "fireproof": false }, { - "id": 285, + "id": 287, "name": "clay", "translation_key": "block.minecraft.clay", "max_stack": 64, @@ -2574,7 +2592,7 @@ "fireproof": false }, { - "id": 286, + "id": 288, "name": "jukebox", "translation_key": "block.minecraft.jukebox", "max_stack": 64, @@ -2583,7 +2601,7 @@ "fireproof": false }, { - "id": 287, + "id": 289, "name": "oak_fence", "translation_key": "block.minecraft.oak_fence", "max_stack": 64, @@ -2592,7 +2610,7 @@ "fireproof": false }, { - "id": 288, + "id": 290, "name": "spruce_fence", "translation_key": "block.minecraft.spruce_fence", "max_stack": 64, @@ -2601,7 +2619,7 @@ "fireproof": false }, { - "id": 289, + "id": 291, "name": "birch_fence", "translation_key": "block.minecraft.birch_fence", "max_stack": 64, @@ -2610,7 +2628,7 @@ "fireproof": false }, { - "id": 290, + "id": 292, "name": "jungle_fence", "translation_key": "block.minecraft.jungle_fence", "max_stack": 64, @@ -2619,7 +2637,7 @@ "fireproof": false }, { - "id": 291, + "id": 293, "name": "acacia_fence", "translation_key": "block.minecraft.acacia_fence", "max_stack": 64, @@ -2628,7 +2646,7 @@ "fireproof": false }, { - "id": 292, + "id": 294, "name": "cherry_fence", "translation_key": "block.minecraft.cherry_fence", "max_stack": 64, @@ -2637,7 +2655,7 @@ "fireproof": false }, { - "id": 293, + "id": 295, "name": "dark_oak_fence", "translation_key": "block.minecraft.dark_oak_fence", "max_stack": 64, @@ -2646,7 +2664,7 @@ "fireproof": false }, { - "id": 294, + "id": 296, "name": "mangrove_fence", "translation_key": "block.minecraft.mangrove_fence", "max_stack": 64, @@ -2655,7 +2673,7 @@ "fireproof": false }, { - "id": 295, + "id": 297, "name": "bamboo_fence", "translation_key": "block.minecraft.bamboo_fence", "max_stack": 64, @@ -2664,7 +2682,7 @@ "fireproof": false }, { - "id": 296, + "id": 298, "name": "crimson_fence", "translation_key": "block.minecraft.crimson_fence", "max_stack": 64, @@ -2673,7 +2691,7 @@ "fireproof": false }, { - "id": 297, + "id": 299, "name": "warped_fence", "translation_key": "block.minecraft.warped_fence", "max_stack": 64, @@ -2682,7 +2700,7 @@ "fireproof": false }, { - "id": 298, + "id": 300, "name": "pumpkin", "translation_key": "block.minecraft.pumpkin", "max_stack": 64, @@ -2691,7 +2709,7 @@ "fireproof": false }, { - "id": 299, + "id": 301, "name": "carved_pumpkin", "translation_key": "block.minecraft.carved_pumpkin", "max_stack": 64, @@ -2700,7 +2718,7 @@ "fireproof": false }, { - "id": 300, + "id": 302, "name": "jack_o_lantern", "translation_key": "block.minecraft.jack_o_lantern", "max_stack": 64, @@ -2709,7 +2727,7 @@ "fireproof": false }, { - "id": 301, + "id": 303, "name": "netherrack", "translation_key": "block.minecraft.netherrack", "max_stack": 64, @@ -2718,7 +2736,7 @@ "fireproof": false }, { - "id": 302, + "id": 304, "name": "soul_sand", "translation_key": "block.minecraft.soul_sand", "max_stack": 64, @@ -2727,7 +2745,7 @@ "fireproof": false }, { - "id": 303, + "id": 305, "name": "soul_soil", "translation_key": "block.minecraft.soul_soil", "max_stack": 64, @@ -2736,7 +2754,7 @@ "fireproof": false }, { - "id": 304, + "id": 306, "name": "basalt", "translation_key": "block.minecraft.basalt", "max_stack": 64, @@ -2745,7 +2763,7 @@ "fireproof": false }, { - "id": 305, + "id": 307, "name": "polished_basalt", "translation_key": "block.minecraft.polished_basalt", "max_stack": 64, @@ -2754,7 +2772,7 @@ "fireproof": false }, { - "id": 306, + "id": 308, "name": "smooth_basalt", "translation_key": "block.minecraft.smooth_basalt", "max_stack": 64, @@ -2763,7 +2781,7 @@ "fireproof": false }, { - "id": 307, + "id": 309, "name": "soul_torch", "translation_key": "block.minecraft.soul_torch", "max_stack": 64, @@ -2772,7 +2790,7 @@ "fireproof": false }, { - "id": 308, + "id": 310, "name": "glowstone", "translation_key": "block.minecraft.glowstone", "max_stack": 64, @@ -2781,7 +2799,7 @@ "fireproof": false }, { - "id": 309, + "id": 311, "name": "infested_stone", "translation_key": "block.minecraft.infested_stone", "max_stack": 64, @@ -2790,7 +2808,7 @@ "fireproof": false }, { - "id": 310, + "id": 312, "name": "infested_cobblestone", "translation_key": "block.minecraft.infested_cobblestone", "max_stack": 64, @@ -2799,7 +2817,7 @@ "fireproof": false }, { - "id": 311, + "id": 313, "name": "infested_stone_bricks", "translation_key": "block.minecraft.infested_stone_bricks", "max_stack": 64, @@ -2808,7 +2826,7 @@ "fireproof": false }, { - "id": 312, + "id": 314, "name": "infested_mossy_stone_bricks", "translation_key": "block.minecraft.infested_mossy_stone_bricks", "max_stack": 64, @@ -2817,7 +2835,7 @@ "fireproof": false }, { - "id": 313, + "id": 315, "name": "infested_cracked_stone_bricks", "translation_key": "block.minecraft.infested_cracked_stone_bricks", "max_stack": 64, @@ -2826,7 +2844,7 @@ "fireproof": false }, { - "id": 314, + "id": 316, "name": "infested_chiseled_stone_bricks", "translation_key": "block.minecraft.infested_chiseled_stone_bricks", "max_stack": 64, @@ -2835,7 +2853,7 @@ "fireproof": false }, { - "id": 315, + "id": 317, "name": "infested_deepslate", "translation_key": "block.minecraft.infested_deepslate", "max_stack": 64, @@ -2844,7 +2862,7 @@ "fireproof": false }, { - "id": 316, + "id": 318, "name": "stone_bricks", "translation_key": "block.minecraft.stone_bricks", "max_stack": 64, @@ -2853,7 +2871,7 @@ "fireproof": false }, { - "id": 317, + "id": 319, "name": "mossy_stone_bricks", "translation_key": "block.minecraft.mossy_stone_bricks", "max_stack": 64, @@ -2862,7 +2880,7 @@ "fireproof": false }, { - "id": 318, + "id": 320, "name": "cracked_stone_bricks", "translation_key": "block.minecraft.cracked_stone_bricks", "max_stack": 64, @@ -2871,7 +2889,7 @@ "fireproof": false }, { - "id": 319, + "id": 321, "name": "chiseled_stone_bricks", "translation_key": "block.minecraft.chiseled_stone_bricks", "max_stack": 64, @@ -2880,7 +2898,7 @@ "fireproof": false }, { - "id": 320, + "id": 322, "name": "packed_mud", "translation_key": "block.minecraft.packed_mud", "max_stack": 64, @@ -2889,7 +2907,7 @@ "fireproof": false }, { - "id": 321, + "id": 323, "name": "mud_bricks", "translation_key": "block.minecraft.mud_bricks", "max_stack": 64, @@ -2898,7 +2916,7 @@ "fireproof": false }, { - "id": 322, + "id": 324, "name": "deepslate_bricks", "translation_key": "block.minecraft.deepslate_bricks", "max_stack": 64, @@ -2907,7 +2925,7 @@ "fireproof": false }, { - "id": 323, + "id": 325, "name": "cracked_deepslate_bricks", "translation_key": "block.minecraft.cracked_deepslate_bricks", "max_stack": 64, @@ -2916,7 +2934,7 @@ "fireproof": false }, { - "id": 324, + "id": 326, "name": "deepslate_tiles", "translation_key": "block.minecraft.deepslate_tiles", "max_stack": 64, @@ -2925,7 +2943,7 @@ "fireproof": false }, { - "id": 325, + "id": 327, "name": "cracked_deepslate_tiles", "translation_key": "block.minecraft.cracked_deepslate_tiles", "max_stack": 64, @@ -2934,7 +2952,7 @@ "fireproof": false }, { - "id": 326, + "id": 328, "name": "chiseled_deepslate", "translation_key": "block.minecraft.chiseled_deepslate", "max_stack": 64, @@ -2943,7 +2961,7 @@ "fireproof": false }, { - "id": 327, + "id": 329, "name": "reinforced_deepslate", "translation_key": "block.minecraft.reinforced_deepslate", "max_stack": 64, @@ -2952,7 +2970,7 @@ "fireproof": false }, { - "id": 328, + "id": 330, "name": "brown_mushroom_block", "translation_key": "block.minecraft.brown_mushroom_block", "max_stack": 64, @@ -2961,7 +2979,7 @@ "fireproof": false }, { - "id": 329, + "id": 331, "name": "red_mushroom_block", "translation_key": "block.minecraft.red_mushroom_block", "max_stack": 64, @@ -2970,7 +2988,7 @@ "fireproof": false }, { - "id": 330, + "id": 332, "name": "mushroom_stem", "translation_key": "block.minecraft.mushroom_stem", "max_stack": 64, @@ -2979,7 +2997,7 @@ "fireproof": false }, { - "id": 331, + "id": 333, "name": "iron_bars", "translation_key": "block.minecraft.iron_bars", "max_stack": 64, @@ -2988,7 +3006,7 @@ "fireproof": false }, { - "id": 332, + "id": 334, "name": "chain", "translation_key": "block.minecraft.chain", "max_stack": 64, @@ -2997,7 +3015,7 @@ "fireproof": false }, { - "id": 333, + "id": 335, "name": "glass_pane", "translation_key": "block.minecraft.glass_pane", "max_stack": 64, @@ -3006,7 +3024,7 @@ "fireproof": false }, { - "id": 334, + "id": 336, "name": "melon", "translation_key": "block.minecraft.melon", "max_stack": 64, @@ -3015,7 +3033,7 @@ "fireproof": false }, { - "id": 335, + "id": 337, "name": "vine", "translation_key": "block.minecraft.vine", "max_stack": 64, @@ -3024,7 +3042,7 @@ "fireproof": false }, { - "id": 336, + "id": 338, "name": "glow_lichen", "translation_key": "block.minecraft.glow_lichen", "max_stack": 64, @@ -3033,7 +3051,7 @@ "fireproof": false }, { - "id": 337, + "id": 339, "name": "brick_stairs", "translation_key": "block.minecraft.brick_stairs", "max_stack": 64, @@ -3042,7 +3060,7 @@ "fireproof": false }, { - "id": 338, + "id": 340, "name": "stone_brick_stairs", "translation_key": "block.minecraft.stone_brick_stairs", "max_stack": 64, @@ -3051,7 +3069,7 @@ "fireproof": false }, { - "id": 339, + "id": 341, "name": "mud_brick_stairs", "translation_key": "block.minecraft.mud_brick_stairs", "max_stack": 64, @@ -3060,7 +3078,7 @@ "fireproof": false }, { - "id": 340, + "id": 342, "name": "mycelium", "translation_key": "block.minecraft.mycelium", "max_stack": 64, @@ -3069,7 +3087,7 @@ "fireproof": false }, { - "id": 341, + "id": 343, "name": "lily_pad", "translation_key": "block.minecraft.lily_pad", "max_stack": 64, @@ -3078,7 +3096,7 @@ "fireproof": false }, { - "id": 342, + "id": 344, "name": "nether_bricks", "translation_key": "block.minecraft.nether_bricks", "max_stack": 64, @@ -3087,7 +3105,7 @@ "fireproof": false }, { - "id": 343, + "id": 345, "name": "cracked_nether_bricks", "translation_key": "block.minecraft.cracked_nether_bricks", "max_stack": 64, @@ -3096,7 +3114,7 @@ "fireproof": false }, { - "id": 344, + "id": 346, "name": "chiseled_nether_bricks", "translation_key": "block.minecraft.chiseled_nether_bricks", "max_stack": 64, @@ -3105,7 +3123,7 @@ "fireproof": false }, { - "id": 345, + "id": 347, "name": "nether_brick_fence", "translation_key": "block.minecraft.nether_brick_fence", "max_stack": 64, @@ -3114,7 +3132,7 @@ "fireproof": false }, { - "id": 346, + "id": 348, "name": "nether_brick_stairs", "translation_key": "block.minecraft.nether_brick_stairs", "max_stack": 64, @@ -3123,7 +3141,7 @@ "fireproof": false }, { - "id": 347, + "id": 349, "name": "sculk", "translation_key": "block.minecraft.sculk", "max_stack": 64, @@ -3132,7 +3150,7 @@ "fireproof": false }, { - "id": 348, + "id": 350, "name": "sculk_vein", "translation_key": "block.minecraft.sculk_vein", "max_stack": 64, @@ -3141,7 +3159,7 @@ "fireproof": false }, { - "id": 349, + "id": 351, "name": "sculk_catalyst", "translation_key": "block.minecraft.sculk_catalyst", "max_stack": 64, @@ -3150,7 +3168,7 @@ "fireproof": false }, { - "id": 350, + "id": 352, "name": "sculk_shrieker", "translation_key": "block.minecraft.sculk_shrieker", "max_stack": 64, @@ -3159,7 +3177,7 @@ "fireproof": false }, { - "id": 351, + "id": 353, "name": "enchanting_table", "translation_key": "block.minecraft.enchanting_table", "max_stack": 64, @@ -3168,7 +3186,7 @@ "fireproof": false }, { - "id": 352, + "id": 354, "name": "end_portal_frame", "translation_key": "block.minecraft.end_portal_frame", "max_stack": 64, @@ -3177,7 +3195,7 @@ "fireproof": false }, { - "id": 353, + "id": 355, "name": "end_stone", "translation_key": "block.minecraft.end_stone", "max_stack": 64, @@ -3186,7 +3204,7 @@ "fireproof": false }, { - "id": 354, + "id": 356, "name": "end_stone_bricks", "translation_key": "block.minecraft.end_stone_bricks", "max_stack": 64, @@ -3195,7 +3213,7 @@ "fireproof": false }, { - "id": 355, + "id": 357, "name": "dragon_egg", "translation_key": "block.minecraft.dragon_egg", "max_stack": 64, @@ -3204,7 +3222,7 @@ "fireproof": false }, { - "id": 356, + "id": 358, "name": "sandstone_stairs", "translation_key": "block.minecraft.sandstone_stairs", "max_stack": 64, @@ -3213,7 +3231,7 @@ "fireproof": false }, { - "id": 357, + "id": 359, "name": "ender_chest", "translation_key": "block.minecraft.ender_chest", "max_stack": 64, @@ -3222,7 +3240,7 @@ "fireproof": false }, { - "id": 358, + "id": 360, "name": "emerald_block", "translation_key": "block.minecraft.emerald_block", "max_stack": 64, @@ -3231,7 +3249,7 @@ "fireproof": false }, { - "id": 359, + "id": 361, "name": "oak_stairs", "translation_key": "block.minecraft.oak_stairs", "max_stack": 64, @@ -3240,7 +3258,7 @@ "fireproof": false }, { - "id": 360, + "id": 362, "name": "spruce_stairs", "translation_key": "block.minecraft.spruce_stairs", "max_stack": 64, @@ -3249,7 +3267,7 @@ "fireproof": false }, { - "id": 361, + "id": 363, "name": "birch_stairs", "translation_key": "block.minecraft.birch_stairs", "max_stack": 64, @@ -3258,7 +3276,7 @@ "fireproof": false }, { - "id": 362, + "id": 364, "name": "jungle_stairs", "translation_key": "block.minecraft.jungle_stairs", "max_stack": 64, @@ -3267,7 +3285,7 @@ "fireproof": false }, { - "id": 363, + "id": 365, "name": "acacia_stairs", "translation_key": "block.minecraft.acacia_stairs", "max_stack": 64, @@ -3276,7 +3294,7 @@ "fireproof": false }, { - "id": 364, + "id": 366, "name": "cherry_stairs", "translation_key": "block.minecraft.cherry_stairs", "max_stack": 64, @@ -3285,7 +3303,7 @@ "fireproof": false }, { - "id": 365, + "id": 367, "name": "dark_oak_stairs", "translation_key": "block.minecraft.dark_oak_stairs", "max_stack": 64, @@ -3294,7 +3312,7 @@ "fireproof": false }, { - "id": 366, + "id": 368, "name": "mangrove_stairs", "translation_key": "block.minecraft.mangrove_stairs", "max_stack": 64, @@ -3303,7 +3321,7 @@ "fireproof": false }, { - "id": 367, + "id": 369, "name": "bamboo_stairs", "translation_key": "block.minecraft.bamboo_stairs", "max_stack": 64, @@ -3312,7 +3330,7 @@ "fireproof": false }, { - "id": 368, + "id": 370, "name": "bamboo_mosaic_stairs", "translation_key": "block.minecraft.bamboo_mosaic_stairs", "max_stack": 64, @@ -3321,7 +3339,7 @@ "fireproof": false }, { - "id": 369, + "id": 371, "name": "crimson_stairs", "translation_key": "block.minecraft.crimson_stairs", "max_stack": 64, @@ -3330,7 +3348,7 @@ "fireproof": false }, { - "id": 370, + "id": 372, "name": "warped_stairs", "translation_key": "block.minecraft.warped_stairs", "max_stack": 64, @@ -3339,7 +3357,7 @@ "fireproof": false }, { - "id": 371, + "id": 373, "name": "command_block", "translation_key": "block.minecraft.command_block", "max_stack": 64, @@ -3348,7 +3366,7 @@ "fireproof": false }, { - "id": 372, + "id": 374, "name": "beacon", "translation_key": "block.minecraft.beacon", "max_stack": 64, @@ -3357,7 +3375,7 @@ "fireproof": false }, { - "id": 373, + "id": 375, "name": "cobblestone_wall", "translation_key": "block.minecraft.cobblestone_wall", "max_stack": 64, @@ -3366,7 +3384,7 @@ "fireproof": false }, { - "id": 374, + "id": 376, "name": "mossy_cobblestone_wall", "translation_key": "block.minecraft.mossy_cobblestone_wall", "max_stack": 64, @@ -3375,7 +3393,7 @@ "fireproof": false }, { - "id": 375, + "id": 377, "name": "brick_wall", "translation_key": "block.minecraft.brick_wall", "max_stack": 64, @@ -3384,7 +3402,7 @@ "fireproof": false }, { - "id": 376, + "id": 378, "name": "prismarine_wall", "translation_key": "block.minecraft.prismarine_wall", "max_stack": 64, @@ -3393,7 +3411,7 @@ "fireproof": false }, { - "id": 377, + "id": 379, "name": "red_sandstone_wall", "translation_key": "block.minecraft.red_sandstone_wall", "max_stack": 64, @@ -3402,7 +3420,7 @@ "fireproof": false }, { - "id": 378, + "id": 380, "name": "mossy_stone_brick_wall", "translation_key": "block.minecraft.mossy_stone_brick_wall", "max_stack": 64, @@ -3411,7 +3429,7 @@ "fireproof": false }, { - "id": 379, + "id": 381, "name": "granite_wall", "translation_key": "block.minecraft.granite_wall", "max_stack": 64, @@ -3420,7 +3438,7 @@ "fireproof": false }, { - "id": 380, + "id": 382, "name": "stone_brick_wall", "translation_key": "block.minecraft.stone_brick_wall", "max_stack": 64, @@ -3429,7 +3447,7 @@ "fireproof": false }, { - "id": 381, + "id": 383, "name": "mud_brick_wall", "translation_key": "block.minecraft.mud_brick_wall", "max_stack": 64, @@ -3438,7 +3456,7 @@ "fireproof": false }, { - "id": 382, + "id": 384, "name": "nether_brick_wall", "translation_key": "block.minecraft.nether_brick_wall", "max_stack": 64, @@ -3447,7 +3465,7 @@ "fireproof": false }, { - "id": 383, + "id": 385, "name": "andesite_wall", "translation_key": "block.minecraft.andesite_wall", "max_stack": 64, @@ -3456,7 +3474,7 @@ "fireproof": false }, { - "id": 384, + "id": 386, "name": "red_nether_brick_wall", "translation_key": "block.minecraft.red_nether_brick_wall", "max_stack": 64, @@ -3465,7 +3483,7 @@ "fireproof": false }, { - "id": 385, + "id": 387, "name": "sandstone_wall", "translation_key": "block.minecraft.sandstone_wall", "max_stack": 64, @@ -3474,7 +3492,7 @@ "fireproof": false }, { - "id": 386, + "id": 388, "name": "end_stone_brick_wall", "translation_key": "block.minecraft.end_stone_brick_wall", "max_stack": 64, @@ -3483,7 +3501,7 @@ "fireproof": false }, { - "id": 387, + "id": 389, "name": "diorite_wall", "translation_key": "block.minecraft.diorite_wall", "max_stack": 64, @@ -3492,7 +3510,7 @@ "fireproof": false }, { - "id": 388, + "id": 390, "name": "blackstone_wall", "translation_key": "block.minecraft.blackstone_wall", "max_stack": 64, @@ -3501,7 +3519,7 @@ "fireproof": false }, { - "id": 389, + "id": 391, "name": "polished_blackstone_wall", "translation_key": "block.minecraft.polished_blackstone_wall", "max_stack": 64, @@ -3510,7 +3528,7 @@ "fireproof": false }, { - "id": 390, + "id": 392, "name": "polished_blackstone_brick_wall", "translation_key": "block.minecraft.polished_blackstone_brick_wall", "max_stack": 64, @@ -3519,7 +3537,7 @@ "fireproof": false }, { - "id": 391, + "id": 393, "name": "cobbled_deepslate_wall", "translation_key": "block.minecraft.cobbled_deepslate_wall", "max_stack": 64, @@ -3528,7 +3546,7 @@ "fireproof": false }, { - "id": 392, + "id": 394, "name": "polished_deepslate_wall", "translation_key": "block.minecraft.polished_deepslate_wall", "max_stack": 64, @@ -3537,7 +3555,7 @@ "fireproof": false }, { - "id": 393, + "id": 395, "name": "deepslate_brick_wall", "translation_key": "block.minecraft.deepslate_brick_wall", "max_stack": 64, @@ -3546,7 +3564,7 @@ "fireproof": false }, { - "id": 394, + "id": 396, "name": "deepslate_tile_wall", "translation_key": "block.minecraft.deepslate_tile_wall", "max_stack": 64, @@ -3555,7 +3573,7 @@ "fireproof": false }, { - "id": 395, + "id": 397, "name": "anvil", "translation_key": "block.minecraft.anvil", "max_stack": 64, @@ -3564,7 +3582,7 @@ "fireproof": false }, { - "id": 396, + "id": 398, "name": "chipped_anvil", "translation_key": "block.minecraft.chipped_anvil", "max_stack": 64, @@ -3573,7 +3591,7 @@ "fireproof": false }, { - "id": 397, + "id": 399, "name": "damaged_anvil", "translation_key": "block.minecraft.damaged_anvil", "max_stack": 64, @@ -3582,7 +3600,7 @@ "fireproof": false }, { - "id": 398, + "id": 400, "name": "chiseled_quartz_block", "translation_key": "block.minecraft.chiseled_quartz_block", "max_stack": 64, @@ -3591,7 +3609,7 @@ "fireproof": false }, { - "id": 399, + "id": 401, "name": "quartz_block", "translation_key": "block.minecraft.quartz_block", "max_stack": 64, @@ -3600,7 +3618,7 @@ "fireproof": false }, { - "id": 400, + "id": 402, "name": "quartz_bricks", "translation_key": "block.minecraft.quartz_bricks", "max_stack": 64, @@ -3609,7 +3627,7 @@ "fireproof": false }, { - "id": 401, + "id": 403, "name": "quartz_pillar", "translation_key": "block.minecraft.quartz_pillar", "max_stack": 64, @@ -3618,7 +3636,7 @@ "fireproof": false }, { - "id": 402, + "id": 404, "name": "quartz_stairs", "translation_key": "block.minecraft.quartz_stairs", "max_stack": 64, @@ -3627,7 +3645,7 @@ "fireproof": false }, { - "id": 403, + "id": 405, "name": "white_terracotta", "translation_key": "block.minecraft.white_terracotta", "max_stack": 64, @@ -3636,7 +3654,7 @@ "fireproof": false }, { - "id": 404, + "id": 406, "name": "orange_terracotta", "translation_key": "block.minecraft.orange_terracotta", "max_stack": 64, @@ -3645,7 +3663,7 @@ "fireproof": false }, { - "id": 405, + "id": 407, "name": "magenta_terracotta", "translation_key": "block.minecraft.magenta_terracotta", "max_stack": 64, @@ -3654,7 +3672,7 @@ "fireproof": false }, { - "id": 406, + "id": 408, "name": "light_blue_terracotta", "translation_key": "block.minecraft.light_blue_terracotta", "max_stack": 64, @@ -3663,7 +3681,7 @@ "fireproof": false }, { - "id": 407, + "id": 409, "name": "yellow_terracotta", "translation_key": "block.minecraft.yellow_terracotta", "max_stack": 64, @@ -3672,7 +3690,7 @@ "fireproof": false }, { - "id": 408, + "id": 410, "name": "lime_terracotta", "translation_key": "block.minecraft.lime_terracotta", "max_stack": 64, @@ -3681,7 +3699,7 @@ "fireproof": false }, { - "id": 409, + "id": 411, "name": "pink_terracotta", "translation_key": "block.minecraft.pink_terracotta", "max_stack": 64, @@ -3690,7 +3708,7 @@ "fireproof": false }, { - "id": 410, + "id": 412, "name": "gray_terracotta", "translation_key": "block.minecraft.gray_terracotta", "max_stack": 64, @@ -3699,7 +3717,7 @@ "fireproof": false }, { - "id": 411, + "id": 413, "name": "light_gray_terracotta", "translation_key": "block.minecraft.light_gray_terracotta", "max_stack": 64, @@ -3708,7 +3726,7 @@ "fireproof": false }, { - "id": 412, + "id": 414, "name": "cyan_terracotta", "translation_key": "block.minecraft.cyan_terracotta", "max_stack": 64, @@ -3717,7 +3735,7 @@ "fireproof": false }, { - "id": 413, + "id": 415, "name": "purple_terracotta", "translation_key": "block.minecraft.purple_terracotta", "max_stack": 64, @@ -3726,7 +3744,7 @@ "fireproof": false }, { - "id": 414, + "id": 416, "name": "blue_terracotta", "translation_key": "block.minecraft.blue_terracotta", "max_stack": 64, @@ -3735,7 +3753,7 @@ "fireproof": false }, { - "id": 415, + "id": 417, "name": "brown_terracotta", "translation_key": "block.minecraft.brown_terracotta", "max_stack": 64, @@ -3744,7 +3762,7 @@ "fireproof": false }, { - "id": 416, + "id": 418, "name": "green_terracotta", "translation_key": "block.minecraft.green_terracotta", "max_stack": 64, @@ -3753,7 +3771,7 @@ "fireproof": false }, { - "id": 417, + "id": 419, "name": "red_terracotta", "translation_key": "block.minecraft.red_terracotta", "max_stack": 64, @@ -3762,7 +3780,7 @@ "fireproof": false }, { - "id": 418, + "id": 420, "name": "black_terracotta", "translation_key": "block.minecraft.black_terracotta", "max_stack": 64, @@ -3771,7 +3789,7 @@ "fireproof": false }, { - "id": 419, + "id": 421, "name": "barrier", "translation_key": "block.minecraft.barrier", "max_stack": 64, @@ -3780,7 +3798,7 @@ "fireproof": false }, { - "id": 420, + "id": 422, "name": "light", "translation_key": "block.minecraft.light", "max_stack": 64, @@ -3789,7 +3807,7 @@ "fireproof": false }, { - "id": 421, + "id": 423, "name": "hay_block", "translation_key": "block.minecraft.hay_block", "max_stack": 64, @@ -3798,7 +3816,7 @@ "fireproof": false }, { - "id": 422, + "id": 424, "name": "white_carpet", "translation_key": "block.minecraft.white_carpet", "max_stack": 64, @@ -3807,7 +3825,7 @@ "fireproof": false }, { - "id": 423, + "id": 425, "name": "orange_carpet", "translation_key": "block.minecraft.orange_carpet", "max_stack": 64, @@ -3816,7 +3834,7 @@ "fireproof": false }, { - "id": 424, + "id": 426, "name": "magenta_carpet", "translation_key": "block.minecraft.magenta_carpet", "max_stack": 64, @@ -3825,7 +3843,7 @@ "fireproof": false }, { - "id": 425, + "id": 427, "name": "light_blue_carpet", "translation_key": "block.minecraft.light_blue_carpet", "max_stack": 64, @@ -3834,7 +3852,7 @@ "fireproof": false }, { - "id": 426, + "id": 428, "name": "yellow_carpet", "translation_key": "block.minecraft.yellow_carpet", "max_stack": 64, @@ -3843,7 +3861,7 @@ "fireproof": false }, { - "id": 427, + "id": 429, "name": "lime_carpet", "translation_key": "block.minecraft.lime_carpet", "max_stack": 64, @@ -3852,7 +3870,7 @@ "fireproof": false }, { - "id": 428, + "id": 430, "name": "pink_carpet", "translation_key": "block.minecraft.pink_carpet", "max_stack": 64, @@ -3861,7 +3879,7 @@ "fireproof": false }, { - "id": 429, + "id": 431, "name": "gray_carpet", "translation_key": "block.minecraft.gray_carpet", "max_stack": 64, @@ -3870,7 +3888,7 @@ "fireproof": false }, { - "id": 430, + "id": 432, "name": "light_gray_carpet", "translation_key": "block.minecraft.light_gray_carpet", "max_stack": 64, @@ -3879,7 +3897,7 @@ "fireproof": false }, { - "id": 431, + "id": 433, "name": "cyan_carpet", "translation_key": "block.minecraft.cyan_carpet", "max_stack": 64, @@ -3888,7 +3906,7 @@ "fireproof": false }, { - "id": 432, + "id": 434, "name": "purple_carpet", "translation_key": "block.minecraft.purple_carpet", "max_stack": 64, @@ -3897,7 +3915,7 @@ "fireproof": false }, { - "id": 433, + "id": 435, "name": "blue_carpet", "translation_key": "block.minecraft.blue_carpet", "max_stack": 64, @@ -3906,7 +3924,7 @@ "fireproof": false }, { - "id": 434, + "id": 436, "name": "brown_carpet", "translation_key": "block.minecraft.brown_carpet", "max_stack": 64, @@ -3915,7 +3933,7 @@ "fireproof": false }, { - "id": 435, + "id": 437, "name": "green_carpet", "translation_key": "block.minecraft.green_carpet", "max_stack": 64, @@ -3924,7 +3942,7 @@ "fireproof": false }, { - "id": 436, + "id": 438, "name": "red_carpet", "translation_key": "block.minecraft.red_carpet", "max_stack": 64, @@ -3933,7 +3951,7 @@ "fireproof": false }, { - "id": 437, + "id": 439, "name": "black_carpet", "translation_key": "block.minecraft.black_carpet", "max_stack": 64, @@ -3942,7 +3960,7 @@ "fireproof": false }, { - "id": 438, + "id": 440, "name": "terracotta", "translation_key": "block.minecraft.terracotta", "max_stack": 64, @@ -3951,7 +3969,7 @@ "fireproof": false }, { - "id": 439, + "id": 441, "name": "packed_ice", "translation_key": "block.minecraft.packed_ice", "max_stack": 64, @@ -3960,7 +3978,7 @@ "fireproof": false }, { - "id": 440, + "id": 442, "name": "dirt_path", "translation_key": "block.minecraft.dirt_path", "max_stack": 64, @@ -3969,7 +3987,7 @@ "fireproof": false }, { - "id": 441, + "id": 443, "name": "sunflower", "translation_key": "block.minecraft.sunflower", "max_stack": 64, @@ -3978,7 +3996,7 @@ "fireproof": false }, { - "id": 442, + "id": 444, "name": "lilac", "translation_key": "block.minecraft.lilac", "max_stack": 64, @@ -3987,7 +4005,7 @@ "fireproof": false }, { - "id": 443, + "id": 445, "name": "rose_bush", "translation_key": "block.minecraft.rose_bush", "max_stack": 64, @@ -3996,7 +4014,7 @@ "fireproof": false }, { - "id": 444, + "id": 446, "name": "peony", "translation_key": "block.minecraft.peony", "max_stack": 64, @@ -4005,7 +4023,7 @@ "fireproof": false }, { - "id": 445, + "id": 447, "name": "tall_grass", "translation_key": "block.minecraft.tall_grass", "max_stack": 64, @@ -4014,7 +4032,7 @@ "fireproof": false }, { - "id": 446, + "id": 448, "name": "large_fern", "translation_key": "block.minecraft.large_fern", "max_stack": 64, @@ -4023,7 +4041,7 @@ "fireproof": false }, { - "id": 447, + "id": 449, "name": "white_stained_glass", "translation_key": "block.minecraft.white_stained_glass", "max_stack": 64, @@ -4032,7 +4050,7 @@ "fireproof": false }, { - "id": 448, + "id": 450, "name": "orange_stained_glass", "translation_key": "block.minecraft.orange_stained_glass", "max_stack": 64, @@ -4041,7 +4059,7 @@ "fireproof": false }, { - "id": 449, + "id": 451, "name": "magenta_stained_glass", "translation_key": "block.minecraft.magenta_stained_glass", "max_stack": 64, @@ -4050,7 +4068,7 @@ "fireproof": false }, { - "id": 450, + "id": 452, "name": "light_blue_stained_glass", "translation_key": "block.minecraft.light_blue_stained_glass", "max_stack": 64, @@ -4059,7 +4077,7 @@ "fireproof": false }, { - "id": 451, + "id": 453, "name": "yellow_stained_glass", "translation_key": "block.minecraft.yellow_stained_glass", "max_stack": 64, @@ -4068,7 +4086,7 @@ "fireproof": false }, { - "id": 452, + "id": 454, "name": "lime_stained_glass", "translation_key": "block.minecraft.lime_stained_glass", "max_stack": 64, @@ -4077,7 +4095,7 @@ "fireproof": false }, { - "id": 453, + "id": 455, "name": "pink_stained_glass", "translation_key": "block.minecraft.pink_stained_glass", "max_stack": 64, @@ -4086,7 +4104,7 @@ "fireproof": false }, { - "id": 454, + "id": 456, "name": "gray_stained_glass", "translation_key": "block.minecraft.gray_stained_glass", "max_stack": 64, @@ -4095,7 +4113,7 @@ "fireproof": false }, { - "id": 455, + "id": 457, "name": "light_gray_stained_glass", "translation_key": "block.minecraft.light_gray_stained_glass", "max_stack": 64, @@ -4104,7 +4122,7 @@ "fireproof": false }, { - "id": 456, + "id": 458, "name": "cyan_stained_glass", "translation_key": "block.minecraft.cyan_stained_glass", "max_stack": 64, @@ -4113,7 +4131,7 @@ "fireproof": false }, { - "id": 457, + "id": 459, "name": "purple_stained_glass", "translation_key": "block.minecraft.purple_stained_glass", "max_stack": 64, @@ -4122,7 +4140,7 @@ "fireproof": false }, { - "id": 458, + "id": 460, "name": "blue_stained_glass", "translation_key": "block.minecraft.blue_stained_glass", "max_stack": 64, @@ -4131,7 +4149,7 @@ "fireproof": false }, { - "id": 459, + "id": 461, "name": "brown_stained_glass", "translation_key": "block.minecraft.brown_stained_glass", "max_stack": 64, @@ -4140,7 +4158,7 @@ "fireproof": false }, { - "id": 460, + "id": 462, "name": "green_stained_glass", "translation_key": "block.minecraft.green_stained_glass", "max_stack": 64, @@ -4149,7 +4167,7 @@ "fireproof": false }, { - "id": 461, + "id": 463, "name": "red_stained_glass", "translation_key": "block.minecraft.red_stained_glass", "max_stack": 64, @@ -4158,7 +4176,7 @@ "fireproof": false }, { - "id": 462, + "id": 464, "name": "black_stained_glass", "translation_key": "block.minecraft.black_stained_glass", "max_stack": 64, @@ -4167,7 +4185,7 @@ "fireproof": false }, { - "id": 463, + "id": 465, "name": "white_stained_glass_pane", "translation_key": "block.minecraft.white_stained_glass_pane", "max_stack": 64, @@ -4176,7 +4194,7 @@ "fireproof": false }, { - "id": 464, + "id": 466, "name": "orange_stained_glass_pane", "translation_key": "block.minecraft.orange_stained_glass_pane", "max_stack": 64, @@ -4185,7 +4203,7 @@ "fireproof": false }, { - "id": 465, + "id": 467, "name": "magenta_stained_glass_pane", "translation_key": "block.minecraft.magenta_stained_glass_pane", "max_stack": 64, @@ -4194,7 +4212,7 @@ "fireproof": false }, { - "id": 466, + "id": 468, "name": "light_blue_stained_glass_pane", "translation_key": "block.minecraft.light_blue_stained_glass_pane", "max_stack": 64, @@ -4203,7 +4221,7 @@ "fireproof": false }, { - "id": 467, + "id": 469, "name": "yellow_stained_glass_pane", "translation_key": "block.minecraft.yellow_stained_glass_pane", "max_stack": 64, @@ -4212,7 +4230,7 @@ "fireproof": false }, { - "id": 468, + "id": 470, "name": "lime_stained_glass_pane", "translation_key": "block.minecraft.lime_stained_glass_pane", "max_stack": 64, @@ -4221,7 +4239,7 @@ "fireproof": false }, { - "id": 469, + "id": 471, "name": "pink_stained_glass_pane", "translation_key": "block.minecraft.pink_stained_glass_pane", "max_stack": 64, @@ -4230,7 +4248,7 @@ "fireproof": false }, { - "id": 470, + "id": 472, "name": "gray_stained_glass_pane", "translation_key": "block.minecraft.gray_stained_glass_pane", "max_stack": 64, @@ -4239,7 +4257,7 @@ "fireproof": false }, { - "id": 471, + "id": 473, "name": "light_gray_stained_glass_pane", "translation_key": "block.minecraft.light_gray_stained_glass_pane", "max_stack": 64, @@ -4248,7 +4266,7 @@ "fireproof": false }, { - "id": 472, + "id": 474, "name": "cyan_stained_glass_pane", "translation_key": "block.minecraft.cyan_stained_glass_pane", "max_stack": 64, @@ -4257,7 +4275,7 @@ "fireproof": false }, { - "id": 473, + "id": 475, "name": "purple_stained_glass_pane", "translation_key": "block.minecraft.purple_stained_glass_pane", "max_stack": 64, @@ -4266,7 +4284,7 @@ "fireproof": false }, { - "id": 474, + "id": 476, "name": "blue_stained_glass_pane", "translation_key": "block.minecraft.blue_stained_glass_pane", "max_stack": 64, @@ -4275,7 +4293,7 @@ "fireproof": false }, { - "id": 475, + "id": 477, "name": "brown_stained_glass_pane", "translation_key": "block.minecraft.brown_stained_glass_pane", "max_stack": 64, @@ -4284,7 +4302,7 @@ "fireproof": false }, { - "id": 476, + "id": 478, "name": "green_stained_glass_pane", "translation_key": "block.minecraft.green_stained_glass_pane", "max_stack": 64, @@ -4293,7 +4311,7 @@ "fireproof": false }, { - "id": 477, + "id": 479, "name": "red_stained_glass_pane", "translation_key": "block.minecraft.red_stained_glass_pane", "max_stack": 64, @@ -4302,7 +4320,7 @@ "fireproof": false }, { - "id": 478, + "id": 480, "name": "black_stained_glass_pane", "translation_key": "block.minecraft.black_stained_glass_pane", "max_stack": 64, @@ -4311,7 +4329,7 @@ "fireproof": false }, { - "id": 479, + "id": 481, "name": "prismarine", "translation_key": "block.minecraft.prismarine", "max_stack": 64, @@ -4320,7 +4338,7 @@ "fireproof": false }, { - "id": 480, + "id": 482, "name": "prismarine_bricks", "translation_key": "block.minecraft.prismarine_bricks", "max_stack": 64, @@ -4329,7 +4347,7 @@ "fireproof": false }, { - "id": 481, + "id": 483, "name": "dark_prismarine", "translation_key": "block.minecraft.dark_prismarine", "max_stack": 64, @@ -4338,7 +4356,7 @@ "fireproof": false }, { - "id": 482, + "id": 484, "name": "prismarine_stairs", "translation_key": "block.minecraft.prismarine_stairs", "max_stack": 64, @@ -4347,7 +4365,7 @@ "fireproof": false }, { - "id": 483, + "id": 485, "name": "prismarine_brick_stairs", "translation_key": "block.minecraft.prismarine_brick_stairs", "max_stack": 64, @@ -4356,7 +4374,7 @@ "fireproof": false }, { - "id": 484, + "id": 486, "name": "dark_prismarine_stairs", "translation_key": "block.minecraft.dark_prismarine_stairs", "max_stack": 64, @@ -4365,7 +4383,7 @@ "fireproof": false }, { - "id": 485, + "id": 487, "name": "sea_lantern", "translation_key": "block.minecraft.sea_lantern", "max_stack": 64, @@ -4374,7 +4392,7 @@ "fireproof": false }, { - "id": 486, + "id": 488, "name": "red_sandstone", "translation_key": "block.minecraft.red_sandstone", "max_stack": 64, @@ -4383,7 +4401,7 @@ "fireproof": false }, { - "id": 487, + "id": 489, "name": "chiseled_red_sandstone", "translation_key": "block.minecraft.chiseled_red_sandstone", "max_stack": 64, @@ -4392,7 +4410,7 @@ "fireproof": false }, { - "id": 488, + "id": 490, "name": "cut_red_sandstone", "translation_key": "block.minecraft.cut_red_sandstone", "max_stack": 64, @@ -4401,7 +4419,7 @@ "fireproof": false }, { - "id": 489, + "id": 491, "name": "red_sandstone_stairs", "translation_key": "block.minecraft.red_sandstone_stairs", "max_stack": 64, @@ -4410,7 +4428,7 @@ "fireproof": false }, { - "id": 490, + "id": 492, "name": "repeating_command_block", "translation_key": "block.minecraft.repeating_command_block", "max_stack": 64, @@ -4419,7 +4437,7 @@ "fireproof": false }, { - "id": 491, + "id": 493, "name": "chain_command_block", "translation_key": "block.minecraft.chain_command_block", "max_stack": 64, @@ -4428,7 +4446,7 @@ "fireproof": false }, { - "id": 492, + "id": 494, "name": "magma_block", "translation_key": "block.minecraft.magma_block", "max_stack": 64, @@ -4437,7 +4455,7 @@ "fireproof": false }, { - "id": 493, + "id": 495, "name": "nether_wart_block", "translation_key": "block.minecraft.nether_wart_block", "max_stack": 64, @@ -4446,7 +4464,7 @@ "fireproof": false }, { - "id": 494, + "id": 496, "name": "warped_wart_block", "translation_key": "block.minecraft.warped_wart_block", "max_stack": 64, @@ -4455,7 +4473,7 @@ "fireproof": false }, { - "id": 495, + "id": 497, "name": "red_nether_bricks", "translation_key": "block.minecraft.red_nether_bricks", "max_stack": 64, @@ -4464,7 +4482,7 @@ "fireproof": false }, { - "id": 496, + "id": 498, "name": "bone_block", "translation_key": "block.minecraft.bone_block", "max_stack": 64, @@ -4473,7 +4491,7 @@ "fireproof": false }, { - "id": 497, + "id": 499, "name": "structure_void", "translation_key": "block.minecraft.structure_void", "max_stack": 64, @@ -4482,7 +4500,7 @@ "fireproof": false }, { - "id": 498, + "id": 500, "name": "shulker_box", "translation_key": "block.minecraft.shulker_box", "max_stack": 1, @@ -4491,7 +4509,7 @@ "fireproof": false }, { - "id": 499, + "id": 501, "name": "white_shulker_box", "translation_key": "block.minecraft.white_shulker_box", "max_stack": 1, @@ -4500,7 +4518,7 @@ "fireproof": false }, { - "id": 500, + "id": 502, "name": "orange_shulker_box", "translation_key": "block.minecraft.orange_shulker_box", "max_stack": 1, @@ -4509,7 +4527,7 @@ "fireproof": false }, { - "id": 501, + "id": 503, "name": "magenta_shulker_box", "translation_key": "block.minecraft.magenta_shulker_box", "max_stack": 1, @@ -4518,7 +4536,7 @@ "fireproof": false }, { - "id": 502, + "id": 504, "name": "light_blue_shulker_box", "translation_key": "block.minecraft.light_blue_shulker_box", "max_stack": 1, @@ -4527,7 +4545,7 @@ "fireproof": false }, { - "id": 503, + "id": 505, "name": "yellow_shulker_box", "translation_key": "block.minecraft.yellow_shulker_box", "max_stack": 1, @@ -4536,7 +4554,7 @@ "fireproof": false }, { - "id": 504, + "id": 506, "name": "lime_shulker_box", "translation_key": "block.minecraft.lime_shulker_box", "max_stack": 1, @@ -4545,7 +4563,7 @@ "fireproof": false }, { - "id": 505, + "id": 507, "name": "pink_shulker_box", "translation_key": "block.minecraft.pink_shulker_box", "max_stack": 1, @@ -4554,7 +4572,7 @@ "fireproof": false }, { - "id": 506, + "id": 508, "name": "gray_shulker_box", "translation_key": "block.minecraft.gray_shulker_box", "max_stack": 1, @@ -4563,7 +4581,7 @@ "fireproof": false }, { - "id": 507, + "id": 509, "name": "light_gray_shulker_box", "translation_key": "block.minecraft.light_gray_shulker_box", "max_stack": 1, @@ -4572,7 +4590,7 @@ "fireproof": false }, { - "id": 508, + "id": 510, "name": "cyan_shulker_box", "translation_key": "block.minecraft.cyan_shulker_box", "max_stack": 1, @@ -4581,7 +4599,7 @@ "fireproof": false }, { - "id": 509, + "id": 511, "name": "purple_shulker_box", "translation_key": "block.minecraft.purple_shulker_box", "max_stack": 1, @@ -4590,7 +4608,7 @@ "fireproof": false }, { - "id": 510, + "id": 512, "name": "blue_shulker_box", "translation_key": "block.minecraft.blue_shulker_box", "max_stack": 1, @@ -4599,7 +4617,7 @@ "fireproof": false }, { - "id": 511, + "id": 513, "name": "brown_shulker_box", "translation_key": "block.minecraft.brown_shulker_box", "max_stack": 1, @@ -4608,7 +4626,7 @@ "fireproof": false }, { - "id": 512, + "id": 514, "name": "green_shulker_box", "translation_key": "block.minecraft.green_shulker_box", "max_stack": 1, @@ -4617,7 +4635,7 @@ "fireproof": false }, { - "id": 513, + "id": 515, "name": "red_shulker_box", "translation_key": "block.minecraft.red_shulker_box", "max_stack": 1, @@ -4626,7 +4644,7 @@ "fireproof": false }, { - "id": 514, + "id": 516, "name": "black_shulker_box", "translation_key": "block.minecraft.black_shulker_box", "max_stack": 1, @@ -4635,7 +4653,7 @@ "fireproof": false }, { - "id": 515, + "id": 517, "name": "white_glazed_terracotta", "translation_key": "block.minecraft.white_glazed_terracotta", "max_stack": 64, @@ -4644,7 +4662,7 @@ "fireproof": false }, { - "id": 516, + "id": 518, "name": "orange_glazed_terracotta", "translation_key": "block.minecraft.orange_glazed_terracotta", "max_stack": 64, @@ -4653,7 +4671,7 @@ "fireproof": false }, { - "id": 517, + "id": 519, "name": "magenta_glazed_terracotta", "translation_key": "block.minecraft.magenta_glazed_terracotta", "max_stack": 64, @@ -4662,7 +4680,7 @@ "fireproof": false }, { - "id": 518, + "id": 520, "name": "light_blue_glazed_terracotta", "translation_key": "block.minecraft.light_blue_glazed_terracotta", "max_stack": 64, @@ -4671,7 +4689,7 @@ "fireproof": false }, { - "id": 519, + "id": 521, "name": "yellow_glazed_terracotta", "translation_key": "block.minecraft.yellow_glazed_terracotta", "max_stack": 64, @@ -4680,7 +4698,7 @@ "fireproof": false }, { - "id": 520, + "id": 522, "name": "lime_glazed_terracotta", "translation_key": "block.minecraft.lime_glazed_terracotta", "max_stack": 64, @@ -4689,7 +4707,7 @@ "fireproof": false }, { - "id": 521, + "id": 523, "name": "pink_glazed_terracotta", "translation_key": "block.minecraft.pink_glazed_terracotta", "max_stack": 64, @@ -4698,7 +4716,7 @@ "fireproof": false }, { - "id": 522, + "id": 524, "name": "gray_glazed_terracotta", "translation_key": "block.minecraft.gray_glazed_terracotta", "max_stack": 64, @@ -4707,7 +4725,7 @@ "fireproof": false }, { - "id": 523, + "id": 525, "name": "light_gray_glazed_terracotta", "translation_key": "block.minecraft.light_gray_glazed_terracotta", "max_stack": 64, @@ -4716,7 +4734,7 @@ "fireproof": false }, { - "id": 524, + "id": 526, "name": "cyan_glazed_terracotta", "translation_key": "block.minecraft.cyan_glazed_terracotta", "max_stack": 64, @@ -4725,7 +4743,7 @@ "fireproof": false }, { - "id": 525, + "id": 527, "name": "purple_glazed_terracotta", "translation_key": "block.minecraft.purple_glazed_terracotta", "max_stack": 64, @@ -4734,7 +4752,7 @@ "fireproof": false }, { - "id": 526, + "id": 528, "name": "blue_glazed_terracotta", "translation_key": "block.minecraft.blue_glazed_terracotta", "max_stack": 64, @@ -4743,7 +4761,7 @@ "fireproof": false }, { - "id": 527, + "id": 529, "name": "brown_glazed_terracotta", "translation_key": "block.minecraft.brown_glazed_terracotta", "max_stack": 64, @@ -4752,7 +4770,7 @@ "fireproof": false }, { - "id": 528, + "id": 530, "name": "green_glazed_terracotta", "translation_key": "block.minecraft.green_glazed_terracotta", "max_stack": 64, @@ -4761,7 +4779,7 @@ "fireproof": false }, { - "id": 529, + "id": 531, "name": "red_glazed_terracotta", "translation_key": "block.minecraft.red_glazed_terracotta", "max_stack": 64, @@ -4770,7 +4788,7 @@ "fireproof": false }, { - "id": 530, + "id": 532, "name": "black_glazed_terracotta", "translation_key": "block.minecraft.black_glazed_terracotta", "max_stack": 64, @@ -4779,7 +4797,7 @@ "fireproof": false }, { - "id": 531, + "id": 533, "name": "white_concrete", "translation_key": "block.minecraft.white_concrete", "max_stack": 64, @@ -4788,7 +4806,7 @@ "fireproof": false }, { - "id": 532, + "id": 534, "name": "orange_concrete", "translation_key": "block.minecraft.orange_concrete", "max_stack": 64, @@ -4797,7 +4815,7 @@ "fireproof": false }, { - "id": 533, + "id": 535, "name": "magenta_concrete", "translation_key": "block.minecraft.magenta_concrete", "max_stack": 64, @@ -4806,7 +4824,7 @@ "fireproof": false }, { - "id": 534, + "id": 536, "name": "light_blue_concrete", "translation_key": "block.minecraft.light_blue_concrete", "max_stack": 64, @@ -4815,7 +4833,7 @@ "fireproof": false }, { - "id": 535, + "id": 537, "name": "yellow_concrete", "translation_key": "block.minecraft.yellow_concrete", "max_stack": 64, @@ -4824,7 +4842,7 @@ "fireproof": false }, { - "id": 536, + "id": 538, "name": "lime_concrete", "translation_key": "block.minecraft.lime_concrete", "max_stack": 64, @@ -4833,7 +4851,7 @@ "fireproof": false }, { - "id": 537, + "id": 539, "name": "pink_concrete", "translation_key": "block.minecraft.pink_concrete", "max_stack": 64, @@ -4842,7 +4860,7 @@ "fireproof": false }, { - "id": 538, + "id": 540, "name": "gray_concrete", "translation_key": "block.minecraft.gray_concrete", "max_stack": 64, @@ -4851,7 +4869,7 @@ "fireproof": false }, { - "id": 539, + "id": 541, "name": "light_gray_concrete", "translation_key": "block.minecraft.light_gray_concrete", "max_stack": 64, @@ -4860,7 +4878,7 @@ "fireproof": false }, { - "id": 540, + "id": 542, "name": "cyan_concrete", "translation_key": "block.minecraft.cyan_concrete", "max_stack": 64, @@ -4869,7 +4887,7 @@ "fireproof": false }, { - "id": 541, + "id": 543, "name": "purple_concrete", "translation_key": "block.minecraft.purple_concrete", "max_stack": 64, @@ -4878,7 +4896,7 @@ "fireproof": false }, { - "id": 542, + "id": 544, "name": "blue_concrete", "translation_key": "block.minecraft.blue_concrete", "max_stack": 64, @@ -4887,7 +4905,7 @@ "fireproof": false }, { - "id": 543, + "id": 545, "name": "brown_concrete", "translation_key": "block.minecraft.brown_concrete", "max_stack": 64, @@ -4896,7 +4914,7 @@ "fireproof": false }, { - "id": 544, + "id": 546, "name": "green_concrete", "translation_key": "block.minecraft.green_concrete", "max_stack": 64, @@ -4905,7 +4923,7 @@ "fireproof": false }, { - "id": 545, + "id": 547, "name": "red_concrete", "translation_key": "block.minecraft.red_concrete", "max_stack": 64, @@ -4914,7 +4932,7 @@ "fireproof": false }, { - "id": 546, + "id": 548, "name": "black_concrete", "translation_key": "block.minecraft.black_concrete", "max_stack": 64, @@ -4923,7 +4941,7 @@ "fireproof": false }, { - "id": 547, + "id": 549, "name": "white_concrete_powder", "translation_key": "block.minecraft.white_concrete_powder", "max_stack": 64, @@ -4932,7 +4950,7 @@ "fireproof": false }, { - "id": 548, + "id": 550, "name": "orange_concrete_powder", "translation_key": "block.minecraft.orange_concrete_powder", "max_stack": 64, @@ -4941,7 +4959,7 @@ "fireproof": false }, { - "id": 549, + "id": 551, "name": "magenta_concrete_powder", "translation_key": "block.minecraft.magenta_concrete_powder", "max_stack": 64, @@ -4950,7 +4968,7 @@ "fireproof": false }, { - "id": 550, + "id": 552, "name": "light_blue_concrete_powder", "translation_key": "block.minecraft.light_blue_concrete_powder", "max_stack": 64, @@ -4959,7 +4977,7 @@ "fireproof": false }, { - "id": 551, + "id": 553, "name": "yellow_concrete_powder", "translation_key": "block.minecraft.yellow_concrete_powder", "max_stack": 64, @@ -4968,7 +4986,7 @@ "fireproof": false }, { - "id": 552, + "id": 554, "name": "lime_concrete_powder", "translation_key": "block.minecraft.lime_concrete_powder", "max_stack": 64, @@ -4977,7 +4995,7 @@ "fireproof": false }, { - "id": 553, + "id": 555, "name": "pink_concrete_powder", "translation_key": "block.minecraft.pink_concrete_powder", "max_stack": 64, @@ -4986,7 +5004,7 @@ "fireproof": false }, { - "id": 554, + "id": 556, "name": "gray_concrete_powder", "translation_key": "block.minecraft.gray_concrete_powder", "max_stack": 64, @@ -4995,7 +5013,7 @@ "fireproof": false }, { - "id": 555, + "id": 557, "name": "light_gray_concrete_powder", "translation_key": "block.minecraft.light_gray_concrete_powder", "max_stack": 64, @@ -5004,7 +5022,7 @@ "fireproof": false }, { - "id": 556, + "id": 558, "name": "cyan_concrete_powder", "translation_key": "block.minecraft.cyan_concrete_powder", "max_stack": 64, @@ -5013,7 +5031,7 @@ "fireproof": false }, { - "id": 557, + "id": 559, "name": "purple_concrete_powder", "translation_key": "block.minecraft.purple_concrete_powder", "max_stack": 64, @@ -5022,7 +5040,7 @@ "fireproof": false }, { - "id": 558, + "id": 560, "name": "blue_concrete_powder", "translation_key": "block.minecraft.blue_concrete_powder", "max_stack": 64, @@ -5031,7 +5049,7 @@ "fireproof": false }, { - "id": 559, + "id": 561, "name": "brown_concrete_powder", "translation_key": "block.minecraft.brown_concrete_powder", "max_stack": 64, @@ -5040,7 +5058,7 @@ "fireproof": false }, { - "id": 560, + "id": 562, "name": "green_concrete_powder", "translation_key": "block.minecraft.green_concrete_powder", "max_stack": 64, @@ -5049,7 +5067,7 @@ "fireproof": false }, { - "id": 561, + "id": 563, "name": "red_concrete_powder", "translation_key": "block.minecraft.red_concrete_powder", "max_stack": 64, @@ -5058,7 +5076,7 @@ "fireproof": false }, { - "id": 562, + "id": 564, "name": "black_concrete_powder", "translation_key": "block.minecraft.black_concrete_powder", "max_stack": 64, @@ -5067,7 +5085,7 @@ "fireproof": false }, { - "id": 563, + "id": 565, "name": "turtle_egg", "translation_key": "block.minecraft.turtle_egg", "max_stack": 64, @@ -5076,7 +5094,16 @@ "fireproof": false }, { - "id": 564, + "id": 566, + "name": "sniffer_egg", + "translation_key": "block.minecraft.sniffer_egg", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 567, "name": "dead_tube_coral_block", "translation_key": "block.minecraft.dead_tube_coral_block", "max_stack": 64, @@ -5085,7 +5112,7 @@ "fireproof": false }, { - "id": 565, + "id": 568, "name": "dead_brain_coral_block", "translation_key": "block.minecraft.dead_brain_coral_block", "max_stack": 64, @@ -5094,7 +5121,7 @@ "fireproof": false }, { - "id": 566, + "id": 569, "name": "dead_bubble_coral_block", "translation_key": "block.minecraft.dead_bubble_coral_block", "max_stack": 64, @@ -5103,7 +5130,7 @@ "fireproof": false }, { - "id": 567, + "id": 570, "name": "dead_fire_coral_block", "translation_key": "block.minecraft.dead_fire_coral_block", "max_stack": 64, @@ -5112,7 +5139,7 @@ "fireproof": false }, { - "id": 568, + "id": 571, "name": "dead_horn_coral_block", "translation_key": "block.minecraft.dead_horn_coral_block", "max_stack": 64, @@ -5121,7 +5148,7 @@ "fireproof": false }, { - "id": 569, + "id": 572, "name": "tube_coral_block", "translation_key": "block.minecraft.tube_coral_block", "max_stack": 64, @@ -5130,7 +5157,7 @@ "fireproof": false }, { - "id": 570, + "id": 573, "name": "brain_coral_block", "translation_key": "block.minecraft.brain_coral_block", "max_stack": 64, @@ -5139,7 +5166,7 @@ "fireproof": false }, { - "id": 571, + "id": 574, "name": "bubble_coral_block", "translation_key": "block.minecraft.bubble_coral_block", "max_stack": 64, @@ -5148,7 +5175,7 @@ "fireproof": false }, { - "id": 572, + "id": 575, "name": "fire_coral_block", "translation_key": "block.minecraft.fire_coral_block", "max_stack": 64, @@ -5157,7 +5184,7 @@ "fireproof": false }, { - "id": 573, + "id": 576, "name": "horn_coral_block", "translation_key": "block.minecraft.horn_coral_block", "max_stack": 64, @@ -5166,7 +5193,7 @@ "fireproof": false }, { - "id": 574, + "id": 577, "name": "tube_coral", "translation_key": "block.minecraft.tube_coral", "max_stack": 64, @@ -5175,7 +5202,7 @@ "fireproof": false }, { - "id": 575, + "id": 578, "name": "brain_coral", "translation_key": "block.minecraft.brain_coral", "max_stack": 64, @@ -5184,7 +5211,7 @@ "fireproof": false }, { - "id": 576, + "id": 579, "name": "bubble_coral", "translation_key": "block.minecraft.bubble_coral", "max_stack": 64, @@ -5193,7 +5220,7 @@ "fireproof": false }, { - "id": 577, + "id": 580, "name": "fire_coral", "translation_key": "block.minecraft.fire_coral", "max_stack": 64, @@ -5202,7 +5229,7 @@ "fireproof": false }, { - "id": 578, + "id": 581, "name": "horn_coral", "translation_key": "block.minecraft.horn_coral", "max_stack": 64, @@ -5211,7 +5238,7 @@ "fireproof": false }, { - "id": 579, + "id": 582, "name": "dead_brain_coral", "translation_key": "block.minecraft.dead_brain_coral", "max_stack": 64, @@ -5220,7 +5247,7 @@ "fireproof": false }, { - "id": 580, + "id": 583, "name": "dead_bubble_coral", "translation_key": "block.minecraft.dead_bubble_coral", "max_stack": 64, @@ -5229,7 +5256,7 @@ "fireproof": false }, { - "id": 581, + "id": 584, "name": "dead_fire_coral", "translation_key": "block.minecraft.dead_fire_coral", "max_stack": 64, @@ -5238,7 +5265,7 @@ "fireproof": false }, { - "id": 582, + "id": 585, "name": "dead_horn_coral", "translation_key": "block.minecraft.dead_horn_coral", "max_stack": 64, @@ -5247,7 +5274,7 @@ "fireproof": false }, { - "id": 583, + "id": 586, "name": "dead_tube_coral", "translation_key": "block.minecraft.dead_tube_coral", "max_stack": 64, @@ -5256,7 +5283,7 @@ "fireproof": false }, { - "id": 584, + "id": 587, "name": "tube_coral_fan", "translation_key": "block.minecraft.tube_coral_fan", "max_stack": 64, @@ -5265,7 +5292,7 @@ "fireproof": false }, { - "id": 585, + "id": 588, "name": "brain_coral_fan", "translation_key": "block.minecraft.brain_coral_fan", "max_stack": 64, @@ -5274,7 +5301,7 @@ "fireproof": false }, { - "id": 586, + "id": 589, "name": "bubble_coral_fan", "translation_key": "block.minecraft.bubble_coral_fan", "max_stack": 64, @@ -5283,7 +5310,7 @@ "fireproof": false }, { - "id": 587, + "id": 590, "name": "fire_coral_fan", "translation_key": "block.minecraft.fire_coral_fan", "max_stack": 64, @@ -5292,7 +5319,7 @@ "fireproof": false }, { - "id": 588, + "id": 591, "name": "horn_coral_fan", "translation_key": "block.minecraft.horn_coral_fan", "max_stack": 64, @@ -5301,7 +5328,7 @@ "fireproof": false }, { - "id": 589, + "id": 592, "name": "dead_tube_coral_fan", "translation_key": "block.minecraft.dead_tube_coral_fan", "max_stack": 64, @@ -5310,7 +5337,7 @@ "fireproof": false }, { - "id": 590, + "id": 593, "name": "dead_brain_coral_fan", "translation_key": "block.minecraft.dead_brain_coral_fan", "max_stack": 64, @@ -5319,7 +5346,7 @@ "fireproof": false }, { - "id": 591, + "id": 594, "name": "dead_bubble_coral_fan", "translation_key": "block.minecraft.dead_bubble_coral_fan", "max_stack": 64, @@ -5328,7 +5355,7 @@ "fireproof": false }, { - "id": 592, + "id": 595, "name": "dead_fire_coral_fan", "translation_key": "block.minecraft.dead_fire_coral_fan", "max_stack": 64, @@ -5337,7 +5364,7 @@ "fireproof": false }, { - "id": 593, + "id": 596, "name": "dead_horn_coral_fan", "translation_key": "block.minecraft.dead_horn_coral_fan", "max_stack": 64, @@ -5346,7 +5373,7 @@ "fireproof": false }, { - "id": 594, + "id": 597, "name": "blue_ice", "translation_key": "block.minecraft.blue_ice", "max_stack": 64, @@ -5355,7 +5382,7 @@ "fireproof": false }, { - "id": 595, + "id": 598, "name": "conduit", "translation_key": "block.minecraft.conduit", "max_stack": 64, @@ -5364,7 +5391,7 @@ "fireproof": false }, { - "id": 596, + "id": 599, "name": "polished_granite_stairs", "translation_key": "block.minecraft.polished_granite_stairs", "max_stack": 64, @@ -5373,7 +5400,7 @@ "fireproof": false }, { - "id": 597, + "id": 600, "name": "smooth_red_sandstone_stairs", "translation_key": "block.minecraft.smooth_red_sandstone_stairs", "max_stack": 64, @@ -5382,7 +5409,7 @@ "fireproof": false }, { - "id": 598, + "id": 601, "name": "mossy_stone_brick_stairs", "translation_key": "block.minecraft.mossy_stone_brick_stairs", "max_stack": 64, @@ -5391,7 +5418,7 @@ "fireproof": false }, { - "id": 599, + "id": 602, "name": "polished_diorite_stairs", "translation_key": "block.minecraft.polished_diorite_stairs", "max_stack": 64, @@ -5400,7 +5427,7 @@ "fireproof": false }, { - "id": 600, + "id": 603, "name": "mossy_cobblestone_stairs", "translation_key": "block.minecraft.mossy_cobblestone_stairs", "max_stack": 64, @@ -5409,7 +5436,7 @@ "fireproof": false }, { - "id": 601, + "id": 604, "name": "end_stone_brick_stairs", "translation_key": "block.minecraft.end_stone_brick_stairs", "max_stack": 64, @@ -5418,7 +5445,7 @@ "fireproof": false }, { - "id": 602, + "id": 605, "name": "stone_stairs", "translation_key": "block.minecraft.stone_stairs", "max_stack": 64, @@ -5427,7 +5454,7 @@ "fireproof": false }, { - "id": 603, + "id": 606, "name": "smooth_sandstone_stairs", "translation_key": "block.minecraft.smooth_sandstone_stairs", "max_stack": 64, @@ -5436,7 +5463,7 @@ "fireproof": false }, { - "id": 604, + "id": 607, "name": "smooth_quartz_stairs", "translation_key": "block.minecraft.smooth_quartz_stairs", "max_stack": 64, @@ -5445,7 +5472,7 @@ "fireproof": false }, { - "id": 605, + "id": 608, "name": "granite_stairs", "translation_key": "block.minecraft.granite_stairs", "max_stack": 64, @@ -5454,7 +5481,7 @@ "fireproof": false }, { - "id": 606, + "id": 609, "name": "andesite_stairs", "translation_key": "block.minecraft.andesite_stairs", "max_stack": 64, @@ -5463,7 +5490,7 @@ "fireproof": false }, { - "id": 607, + "id": 610, "name": "red_nether_brick_stairs", "translation_key": "block.minecraft.red_nether_brick_stairs", "max_stack": 64, @@ -5472,7 +5499,7 @@ "fireproof": false }, { - "id": 608, + "id": 611, "name": "polished_andesite_stairs", "translation_key": "block.minecraft.polished_andesite_stairs", "max_stack": 64, @@ -5481,7 +5508,7 @@ "fireproof": false }, { - "id": 609, + "id": 612, "name": "diorite_stairs", "translation_key": "block.minecraft.diorite_stairs", "max_stack": 64, @@ -5490,7 +5517,7 @@ "fireproof": false }, { - "id": 610, + "id": 613, "name": "cobbled_deepslate_stairs", "translation_key": "block.minecraft.cobbled_deepslate_stairs", "max_stack": 64, @@ -5499,7 +5526,7 @@ "fireproof": false }, { - "id": 611, + "id": 614, "name": "polished_deepslate_stairs", "translation_key": "block.minecraft.polished_deepslate_stairs", "max_stack": 64, @@ -5508,7 +5535,7 @@ "fireproof": false }, { - "id": 612, + "id": 615, "name": "deepslate_brick_stairs", "translation_key": "block.minecraft.deepslate_brick_stairs", "max_stack": 64, @@ -5517,7 +5544,7 @@ "fireproof": false }, { - "id": 613, + "id": 616, "name": "deepslate_tile_stairs", "translation_key": "block.minecraft.deepslate_tile_stairs", "max_stack": 64, @@ -5526,7 +5553,7 @@ "fireproof": false }, { - "id": 614, + "id": 617, "name": "polished_granite_slab", "translation_key": "block.minecraft.polished_granite_slab", "max_stack": 64, @@ -5535,7 +5562,7 @@ "fireproof": false }, { - "id": 615, + "id": 618, "name": "smooth_red_sandstone_slab", "translation_key": "block.minecraft.smooth_red_sandstone_slab", "max_stack": 64, @@ -5544,7 +5571,7 @@ "fireproof": false }, { - "id": 616, + "id": 619, "name": "mossy_stone_brick_slab", "translation_key": "block.minecraft.mossy_stone_brick_slab", "max_stack": 64, @@ -5553,7 +5580,7 @@ "fireproof": false }, { - "id": 617, + "id": 620, "name": "polished_diorite_slab", "translation_key": "block.minecraft.polished_diorite_slab", "max_stack": 64, @@ -5562,7 +5589,7 @@ "fireproof": false }, { - "id": 618, + "id": 621, "name": "mossy_cobblestone_slab", "translation_key": "block.minecraft.mossy_cobblestone_slab", "max_stack": 64, @@ -5571,7 +5598,7 @@ "fireproof": false }, { - "id": 619, + "id": 622, "name": "end_stone_brick_slab", "translation_key": "block.minecraft.end_stone_brick_slab", "max_stack": 64, @@ -5580,7 +5607,7 @@ "fireproof": false }, { - "id": 620, + "id": 623, "name": "smooth_sandstone_slab", "translation_key": "block.minecraft.smooth_sandstone_slab", "max_stack": 64, @@ -5589,7 +5616,7 @@ "fireproof": false }, { - "id": 621, + "id": 624, "name": "smooth_quartz_slab", "translation_key": "block.minecraft.smooth_quartz_slab", "max_stack": 64, @@ -5598,7 +5625,7 @@ "fireproof": false }, { - "id": 622, + "id": 625, "name": "granite_slab", "translation_key": "block.minecraft.granite_slab", "max_stack": 64, @@ -5607,7 +5634,7 @@ "fireproof": false }, { - "id": 623, + "id": 626, "name": "andesite_slab", "translation_key": "block.minecraft.andesite_slab", "max_stack": 64, @@ -5616,7 +5643,7 @@ "fireproof": false }, { - "id": 624, + "id": 627, "name": "red_nether_brick_slab", "translation_key": "block.minecraft.red_nether_brick_slab", "max_stack": 64, @@ -5625,7 +5652,7 @@ "fireproof": false }, { - "id": 625, + "id": 628, "name": "polished_andesite_slab", "translation_key": "block.minecraft.polished_andesite_slab", "max_stack": 64, @@ -5634,7 +5661,7 @@ "fireproof": false }, { - "id": 626, + "id": 629, "name": "diorite_slab", "translation_key": "block.minecraft.diorite_slab", "max_stack": 64, @@ -5643,7 +5670,7 @@ "fireproof": false }, { - "id": 627, + "id": 630, "name": "cobbled_deepslate_slab", "translation_key": "block.minecraft.cobbled_deepslate_slab", "max_stack": 64, @@ -5652,7 +5679,7 @@ "fireproof": false }, { - "id": 628, + "id": 631, "name": "polished_deepslate_slab", "translation_key": "block.minecraft.polished_deepslate_slab", "max_stack": 64, @@ -5661,7 +5688,7 @@ "fireproof": false }, { - "id": 629, + "id": 632, "name": "deepslate_brick_slab", "translation_key": "block.minecraft.deepslate_brick_slab", "max_stack": 64, @@ -5670,7 +5697,7 @@ "fireproof": false }, { - "id": 630, + "id": 633, "name": "deepslate_tile_slab", "translation_key": "block.minecraft.deepslate_tile_slab", "max_stack": 64, @@ -5679,7 +5706,7 @@ "fireproof": false }, { - "id": 631, + "id": 634, "name": "scaffolding", "translation_key": "block.minecraft.scaffolding", "max_stack": 64, @@ -5688,7 +5715,7 @@ "fireproof": false }, { - "id": 632, + "id": 635, "name": "redstone", "translation_key": "item.minecraft.redstone", "max_stack": 64, @@ -5697,7 +5724,7 @@ "fireproof": false }, { - "id": 633, + "id": 636, "name": "redstone_torch", "translation_key": "block.minecraft.redstone_torch", "max_stack": 64, @@ -5706,7 +5733,7 @@ "fireproof": false }, { - "id": 634, + "id": 637, "name": "redstone_block", "translation_key": "block.minecraft.redstone_block", "max_stack": 64, @@ -5715,7 +5742,7 @@ "fireproof": false }, { - "id": 635, + "id": 638, "name": "repeater", "translation_key": "block.minecraft.repeater", "max_stack": 64, @@ -5724,7 +5751,7 @@ "fireproof": false }, { - "id": 636, + "id": 639, "name": "comparator", "translation_key": "block.minecraft.comparator", "max_stack": 64, @@ -5733,7 +5760,7 @@ "fireproof": false }, { - "id": 637, + "id": 640, "name": "piston", "translation_key": "block.minecraft.piston", "max_stack": 64, @@ -5742,7 +5769,7 @@ "fireproof": false }, { - "id": 638, + "id": 641, "name": "sticky_piston", "translation_key": "block.minecraft.sticky_piston", "max_stack": 64, @@ -5751,7 +5778,7 @@ "fireproof": false }, { - "id": 639, + "id": 642, "name": "slime_block", "translation_key": "block.minecraft.slime_block", "max_stack": 64, @@ -5760,7 +5787,7 @@ "fireproof": false }, { - "id": 640, + "id": 643, "name": "honey_block", "translation_key": "block.minecraft.honey_block", "max_stack": 64, @@ -5769,7 +5796,7 @@ "fireproof": false }, { - "id": 641, + "id": 644, "name": "observer", "translation_key": "block.minecraft.observer", "max_stack": 64, @@ -5778,7 +5805,7 @@ "fireproof": false }, { - "id": 642, + "id": 645, "name": "hopper", "translation_key": "block.minecraft.hopper", "max_stack": 64, @@ -5787,7 +5814,7 @@ "fireproof": false }, { - "id": 643, + "id": 646, "name": "dispenser", "translation_key": "block.minecraft.dispenser", "max_stack": 64, @@ -5796,7 +5823,7 @@ "fireproof": false }, { - "id": 644, + "id": 647, "name": "dropper", "translation_key": "block.minecraft.dropper", "max_stack": 64, @@ -5805,7 +5832,7 @@ "fireproof": false }, { - "id": 645, + "id": 648, "name": "lectern", "translation_key": "block.minecraft.lectern", "max_stack": 64, @@ -5814,7 +5841,7 @@ "fireproof": false }, { - "id": 646, + "id": 649, "name": "target", "translation_key": "block.minecraft.target", "max_stack": 64, @@ -5823,7 +5850,7 @@ "fireproof": false }, { - "id": 647, + "id": 650, "name": "lever", "translation_key": "block.minecraft.lever", "max_stack": 64, @@ -5832,7 +5859,7 @@ "fireproof": false }, { - "id": 648, + "id": 651, "name": "lightning_rod", "translation_key": "block.minecraft.lightning_rod", "max_stack": 64, @@ -5841,7 +5868,7 @@ "fireproof": false }, { - "id": 649, + "id": 652, "name": "daylight_detector", "translation_key": "block.minecraft.daylight_detector", "max_stack": 64, @@ -5850,7 +5877,7 @@ "fireproof": false }, { - "id": 650, + "id": 653, "name": "sculk_sensor", "translation_key": "block.minecraft.sculk_sensor", "max_stack": 64, @@ -5859,7 +5886,16 @@ "fireproof": false }, { - "id": 651, + "id": 654, + "name": "calibrated_sculk_sensor", + "translation_key": "block.minecraft.calibrated_sculk_sensor", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 655, "name": "tripwire_hook", "translation_key": "block.minecraft.tripwire_hook", "max_stack": 64, @@ -5868,7 +5904,7 @@ "fireproof": false }, { - "id": 652, + "id": 656, "name": "trapped_chest", "translation_key": "block.minecraft.trapped_chest", "max_stack": 64, @@ -5877,7 +5913,7 @@ "fireproof": false }, { - "id": 653, + "id": 657, "name": "tnt", "translation_key": "block.minecraft.tnt", "max_stack": 64, @@ -5886,7 +5922,7 @@ "fireproof": false }, { - "id": 654, + "id": 658, "name": "redstone_lamp", "translation_key": "block.minecraft.redstone_lamp", "max_stack": 64, @@ -5895,7 +5931,7 @@ "fireproof": false }, { - "id": 655, + "id": 659, "name": "note_block", "translation_key": "block.minecraft.note_block", "max_stack": 64, @@ -5904,7 +5940,7 @@ "fireproof": false }, { - "id": 656, + "id": 660, "name": "stone_button", "translation_key": "block.minecraft.stone_button", "max_stack": 64, @@ -5913,7 +5949,7 @@ "fireproof": false }, { - "id": 657, + "id": 661, "name": "polished_blackstone_button", "translation_key": "block.minecraft.polished_blackstone_button", "max_stack": 64, @@ -5922,7 +5958,7 @@ "fireproof": false }, { - "id": 658, + "id": 662, "name": "oak_button", "translation_key": "block.minecraft.oak_button", "max_stack": 64, @@ -5931,7 +5967,7 @@ "fireproof": false }, { - "id": 659, + "id": 663, "name": "spruce_button", "translation_key": "block.minecraft.spruce_button", "max_stack": 64, @@ -5940,7 +5976,7 @@ "fireproof": false }, { - "id": 660, + "id": 664, "name": "birch_button", "translation_key": "block.minecraft.birch_button", "max_stack": 64, @@ -5949,7 +5985,7 @@ "fireproof": false }, { - "id": 661, + "id": 665, "name": "jungle_button", "translation_key": "block.minecraft.jungle_button", "max_stack": 64, @@ -5958,7 +5994,7 @@ "fireproof": false }, { - "id": 662, + "id": 666, "name": "acacia_button", "translation_key": "block.minecraft.acacia_button", "max_stack": 64, @@ -5967,7 +6003,7 @@ "fireproof": false }, { - "id": 663, + "id": 667, "name": "cherry_button", "translation_key": "block.minecraft.cherry_button", "max_stack": 64, @@ -5976,7 +6012,7 @@ "fireproof": false }, { - "id": 664, + "id": 668, "name": "dark_oak_button", "translation_key": "block.minecraft.dark_oak_button", "max_stack": 64, @@ -5985,7 +6021,7 @@ "fireproof": false }, { - "id": 665, + "id": 669, "name": "mangrove_button", "translation_key": "block.minecraft.mangrove_button", "max_stack": 64, @@ -5994,7 +6030,7 @@ "fireproof": false }, { - "id": 666, + "id": 670, "name": "bamboo_button", "translation_key": "block.minecraft.bamboo_button", "max_stack": 64, @@ -6003,7 +6039,7 @@ "fireproof": false }, { - "id": 667, + "id": 671, "name": "crimson_button", "translation_key": "block.minecraft.crimson_button", "max_stack": 64, @@ -6012,7 +6048,7 @@ "fireproof": false }, { - "id": 668, + "id": 672, "name": "warped_button", "translation_key": "block.minecraft.warped_button", "max_stack": 64, @@ -6021,7 +6057,7 @@ "fireproof": false }, { - "id": 669, + "id": 673, "name": "stone_pressure_plate", "translation_key": "block.minecraft.stone_pressure_plate", "max_stack": 64, @@ -6030,7 +6066,7 @@ "fireproof": false }, { - "id": 670, + "id": 674, "name": "polished_blackstone_pressure_plate", "translation_key": "block.minecraft.polished_blackstone_pressure_plate", "max_stack": 64, @@ -6039,7 +6075,7 @@ "fireproof": false }, { - "id": 671, + "id": 675, "name": "light_weighted_pressure_plate", "translation_key": "block.minecraft.light_weighted_pressure_plate", "max_stack": 64, @@ -6048,7 +6084,7 @@ "fireproof": false }, { - "id": 672, + "id": 676, "name": "heavy_weighted_pressure_plate", "translation_key": "block.minecraft.heavy_weighted_pressure_plate", "max_stack": 64, @@ -6057,7 +6093,7 @@ "fireproof": false }, { - "id": 673, + "id": 677, "name": "oak_pressure_plate", "translation_key": "block.minecraft.oak_pressure_plate", "max_stack": 64, @@ -6066,7 +6102,7 @@ "fireproof": false }, { - "id": 674, + "id": 678, "name": "spruce_pressure_plate", "translation_key": "block.minecraft.spruce_pressure_plate", "max_stack": 64, @@ -6075,7 +6111,7 @@ "fireproof": false }, { - "id": 675, + "id": 679, "name": "birch_pressure_plate", "translation_key": "block.minecraft.birch_pressure_plate", "max_stack": 64, @@ -6084,7 +6120,7 @@ "fireproof": false }, { - "id": 676, + "id": 680, "name": "jungle_pressure_plate", "translation_key": "block.minecraft.jungle_pressure_plate", "max_stack": 64, @@ -6093,7 +6129,7 @@ "fireproof": false }, { - "id": 677, + "id": 681, "name": "acacia_pressure_plate", "translation_key": "block.minecraft.acacia_pressure_plate", "max_stack": 64, @@ -6102,7 +6138,7 @@ "fireproof": false }, { - "id": 678, + "id": 682, "name": "cherry_pressure_plate", "translation_key": "block.minecraft.cherry_pressure_plate", "max_stack": 64, @@ -6111,7 +6147,7 @@ "fireproof": false }, { - "id": 679, + "id": 683, "name": "dark_oak_pressure_plate", "translation_key": "block.minecraft.dark_oak_pressure_plate", "max_stack": 64, @@ -6120,7 +6156,7 @@ "fireproof": false }, { - "id": 680, + "id": 684, "name": "mangrove_pressure_plate", "translation_key": "block.minecraft.mangrove_pressure_plate", "max_stack": 64, @@ -6129,7 +6165,7 @@ "fireproof": false }, { - "id": 681, + "id": 685, "name": "bamboo_pressure_plate", "translation_key": "block.minecraft.bamboo_pressure_plate", "max_stack": 64, @@ -6138,7 +6174,7 @@ "fireproof": false }, { - "id": 682, + "id": 686, "name": "crimson_pressure_plate", "translation_key": "block.minecraft.crimson_pressure_plate", "max_stack": 64, @@ -6147,7 +6183,7 @@ "fireproof": false }, { - "id": 683, + "id": 687, "name": "warped_pressure_plate", "translation_key": "block.minecraft.warped_pressure_plate", "max_stack": 64, @@ -6156,7 +6192,7 @@ "fireproof": false }, { - "id": 684, + "id": 688, "name": "iron_door", "translation_key": "block.minecraft.iron_door", "max_stack": 64, @@ -6165,7 +6201,7 @@ "fireproof": false }, { - "id": 685, + "id": 689, "name": "oak_door", "translation_key": "block.minecraft.oak_door", "max_stack": 64, @@ -6174,7 +6210,7 @@ "fireproof": false }, { - "id": 686, + "id": 690, "name": "spruce_door", "translation_key": "block.minecraft.spruce_door", "max_stack": 64, @@ -6183,7 +6219,7 @@ "fireproof": false }, { - "id": 687, + "id": 691, "name": "birch_door", "translation_key": "block.minecraft.birch_door", "max_stack": 64, @@ -6192,7 +6228,7 @@ "fireproof": false }, { - "id": 688, + "id": 692, "name": "jungle_door", "translation_key": "block.minecraft.jungle_door", "max_stack": 64, @@ -6201,7 +6237,7 @@ "fireproof": false }, { - "id": 689, + "id": 693, "name": "acacia_door", "translation_key": "block.minecraft.acacia_door", "max_stack": 64, @@ -6210,7 +6246,7 @@ "fireproof": false }, { - "id": 690, + "id": 694, "name": "cherry_door", "translation_key": "block.minecraft.cherry_door", "max_stack": 64, @@ -6219,7 +6255,7 @@ "fireproof": false }, { - "id": 691, + "id": 695, "name": "dark_oak_door", "translation_key": "block.minecraft.dark_oak_door", "max_stack": 64, @@ -6228,7 +6264,7 @@ "fireproof": false }, { - "id": 692, + "id": 696, "name": "mangrove_door", "translation_key": "block.minecraft.mangrove_door", "max_stack": 64, @@ -6237,7 +6273,7 @@ "fireproof": false }, { - "id": 693, + "id": 697, "name": "bamboo_door", "translation_key": "block.minecraft.bamboo_door", "max_stack": 64, @@ -6246,7 +6282,7 @@ "fireproof": false }, { - "id": 694, + "id": 698, "name": "crimson_door", "translation_key": "block.minecraft.crimson_door", "max_stack": 64, @@ -6255,7 +6291,7 @@ "fireproof": false }, { - "id": 695, + "id": 699, "name": "warped_door", "translation_key": "block.minecraft.warped_door", "max_stack": 64, @@ -6264,7 +6300,7 @@ "fireproof": false }, { - "id": 696, + "id": 700, "name": "iron_trapdoor", "translation_key": "block.minecraft.iron_trapdoor", "max_stack": 64, @@ -6273,7 +6309,7 @@ "fireproof": false }, { - "id": 697, + "id": 701, "name": "oak_trapdoor", "translation_key": "block.minecraft.oak_trapdoor", "max_stack": 64, @@ -6282,7 +6318,7 @@ "fireproof": false }, { - "id": 698, + "id": 702, "name": "spruce_trapdoor", "translation_key": "block.minecraft.spruce_trapdoor", "max_stack": 64, @@ -6291,7 +6327,7 @@ "fireproof": false }, { - "id": 699, + "id": 703, "name": "birch_trapdoor", "translation_key": "block.minecraft.birch_trapdoor", "max_stack": 64, @@ -6300,7 +6336,7 @@ "fireproof": false }, { - "id": 700, + "id": 704, "name": "jungle_trapdoor", "translation_key": "block.minecraft.jungle_trapdoor", "max_stack": 64, @@ -6309,7 +6345,7 @@ "fireproof": false }, { - "id": 701, + "id": 705, "name": "acacia_trapdoor", "translation_key": "block.minecraft.acacia_trapdoor", "max_stack": 64, @@ -6318,7 +6354,7 @@ "fireproof": false }, { - "id": 702, + "id": 706, "name": "cherry_trapdoor", "translation_key": "block.minecraft.cherry_trapdoor", "max_stack": 64, @@ -6327,7 +6363,7 @@ "fireproof": false }, { - "id": 703, + "id": 707, "name": "dark_oak_trapdoor", "translation_key": "block.minecraft.dark_oak_trapdoor", "max_stack": 64, @@ -6336,7 +6372,7 @@ "fireproof": false }, { - "id": 704, + "id": 708, "name": "mangrove_trapdoor", "translation_key": "block.minecraft.mangrove_trapdoor", "max_stack": 64, @@ -6345,7 +6381,7 @@ "fireproof": false }, { - "id": 705, + "id": 709, "name": "bamboo_trapdoor", "translation_key": "block.minecraft.bamboo_trapdoor", "max_stack": 64, @@ -6354,7 +6390,7 @@ "fireproof": false }, { - "id": 706, + "id": 710, "name": "crimson_trapdoor", "translation_key": "block.minecraft.crimson_trapdoor", "max_stack": 64, @@ -6363,7 +6399,7 @@ "fireproof": false }, { - "id": 707, + "id": 711, "name": "warped_trapdoor", "translation_key": "block.minecraft.warped_trapdoor", "max_stack": 64, @@ -6372,7 +6408,7 @@ "fireproof": false }, { - "id": 708, + "id": 712, "name": "oak_fence_gate", "translation_key": "block.minecraft.oak_fence_gate", "max_stack": 64, @@ -6381,7 +6417,7 @@ "fireproof": false }, { - "id": 709, + "id": 713, "name": "spruce_fence_gate", "translation_key": "block.minecraft.spruce_fence_gate", "max_stack": 64, @@ -6390,7 +6426,7 @@ "fireproof": false }, { - "id": 710, + "id": 714, "name": "birch_fence_gate", "translation_key": "block.minecraft.birch_fence_gate", "max_stack": 64, @@ -6399,7 +6435,7 @@ "fireproof": false }, { - "id": 711, + "id": 715, "name": "jungle_fence_gate", "translation_key": "block.minecraft.jungle_fence_gate", "max_stack": 64, @@ -6408,7 +6444,7 @@ "fireproof": false }, { - "id": 712, + "id": 716, "name": "acacia_fence_gate", "translation_key": "block.minecraft.acacia_fence_gate", "max_stack": 64, @@ -6417,7 +6453,7 @@ "fireproof": false }, { - "id": 713, + "id": 717, "name": "cherry_fence_gate", "translation_key": "block.minecraft.cherry_fence_gate", "max_stack": 64, @@ -6426,7 +6462,7 @@ "fireproof": false }, { - "id": 714, + "id": 718, "name": "dark_oak_fence_gate", "translation_key": "block.minecraft.dark_oak_fence_gate", "max_stack": 64, @@ -6435,7 +6471,7 @@ "fireproof": false }, { - "id": 715, + "id": 719, "name": "mangrove_fence_gate", "translation_key": "block.minecraft.mangrove_fence_gate", "max_stack": 64, @@ -6444,7 +6480,7 @@ "fireproof": false }, { - "id": 716, + "id": 720, "name": "bamboo_fence_gate", "translation_key": "block.minecraft.bamboo_fence_gate", "max_stack": 64, @@ -6453,7 +6489,7 @@ "fireproof": false }, { - "id": 717, + "id": 721, "name": "crimson_fence_gate", "translation_key": "block.minecraft.crimson_fence_gate", "max_stack": 64, @@ -6462,7 +6498,7 @@ "fireproof": false }, { - "id": 718, + "id": 722, "name": "warped_fence_gate", "translation_key": "block.minecraft.warped_fence_gate", "max_stack": 64, @@ -6471,7 +6507,7 @@ "fireproof": false }, { - "id": 719, + "id": 723, "name": "powered_rail", "translation_key": "block.minecraft.powered_rail", "max_stack": 64, @@ -6480,7 +6516,7 @@ "fireproof": false }, { - "id": 720, + "id": 724, "name": "detector_rail", "translation_key": "block.minecraft.detector_rail", "max_stack": 64, @@ -6489,7 +6525,7 @@ "fireproof": false }, { - "id": 721, + "id": 725, "name": "rail", "translation_key": "block.minecraft.rail", "max_stack": 64, @@ -6498,7 +6534,7 @@ "fireproof": false }, { - "id": 722, + "id": 726, "name": "activator_rail", "translation_key": "block.minecraft.activator_rail", "max_stack": 64, @@ -6507,7 +6543,7 @@ "fireproof": false }, { - "id": 723, + "id": 727, "name": "saddle", "translation_key": "item.minecraft.saddle", "max_stack": 1, @@ -6516,7 +6552,7 @@ "fireproof": false }, { - "id": 724, + "id": 728, "name": "minecart", "translation_key": "item.minecraft.minecart", "max_stack": 1, @@ -6525,7 +6561,7 @@ "fireproof": false }, { - "id": 725, + "id": 729, "name": "chest_minecart", "translation_key": "item.minecraft.chest_minecart", "max_stack": 1, @@ -6534,7 +6570,7 @@ "fireproof": false }, { - "id": 726, + "id": 730, "name": "furnace_minecart", "translation_key": "item.minecraft.furnace_minecart", "max_stack": 1, @@ -6543,7 +6579,7 @@ "fireproof": false }, { - "id": 727, + "id": 731, "name": "tnt_minecart", "translation_key": "item.minecraft.tnt_minecart", "max_stack": 1, @@ -6552,7 +6588,7 @@ "fireproof": false }, { - "id": 728, + "id": 732, "name": "hopper_minecart", "translation_key": "item.minecraft.hopper_minecart", "max_stack": 1, @@ -6561,7 +6597,7 @@ "fireproof": false }, { - "id": 729, + "id": 733, "name": "carrot_on_a_stick", "translation_key": "item.minecraft.carrot_on_a_stick", "max_stack": 1, @@ -6570,7 +6606,7 @@ "fireproof": false }, { - "id": 730, + "id": 734, "name": "warped_fungus_on_a_stick", "translation_key": "item.minecraft.warped_fungus_on_a_stick", "max_stack": 1, @@ -6579,7 +6615,7 @@ "fireproof": false }, { - "id": 731, + "id": 735, "name": "elytra", "translation_key": "item.minecraft.elytra", "max_stack": 1, @@ -6588,7 +6624,7 @@ "fireproof": false }, { - "id": 732, + "id": 736, "name": "oak_boat", "translation_key": "item.minecraft.oak_boat", "max_stack": 1, @@ -6597,7 +6633,7 @@ "fireproof": false }, { - "id": 733, + "id": 737, "name": "oak_chest_boat", "translation_key": "item.minecraft.oak_chest_boat", "max_stack": 1, @@ -6606,7 +6642,7 @@ "fireproof": false }, { - "id": 734, + "id": 738, "name": "spruce_boat", "translation_key": "item.minecraft.spruce_boat", "max_stack": 1, @@ -6615,7 +6651,7 @@ "fireproof": false }, { - "id": 735, + "id": 739, "name": "spruce_chest_boat", "translation_key": "item.minecraft.spruce_chest_boat", "max_stack": 1, @@ -6624,7 +6660,7 @@ "fireproof": false }, { - "id": 736, + "id": 740, "name": "birch_boat", "translation_key": "item.minecraft.birch_boat", "max_stack": 1, @@ -6633,7 +6669,7 @@ "fireproof": false }, { - "id": 737, + "id": 741, "name": "birch_chest_boat", "translation_key": "item.minecraft.birch_chest_boat", "max_stack": 1, @@ -6642,7 +6678,7 @@ "fireproof": false }, { - "id": 738, + "id": 742, "name": "jungle_boat", "translation_key": "item.minecraft.jungle_boat", "max_stack": 1, @@ -6651,7 +6687,7 @@ "fireproof": false }, { - "id": 739, + "id": 743, "name": "jungle_chest_boat", "translation_key": "item.minecraft.jungle_chest_boat", "max_stack": 1, @@ -6660,7 +6696,7 @@ "fireproof": false }, { - "id": 740, + "id": 744, "name": "acacia_boat", "translation_key": "item.minecraft.acacia_boat", "max_stack": 1, @@ -6669,7 +6705,7 @@ "fireproof": false }, { - "id": 741, + "id": 745, "name": "acacia_chest_boat", "translation_key": "item.minecraft.acacia_chest_boat", "max_stack": 1, @@ -6678,7 +6714,7 @@ "fireproof": false }, { - "id": 742, + "id": 746, "name": "cherry_boat", "translation_key": "item.minecraft.cherry_boat", "max_stack": 1, @@ -6687,7 +6723,7 @@ "fireproof": false }, { - "id": 743, + "id": 747, "name": "cherry_chest_boat", "translation_key": "item.minecraft.cherry_chest_boat", "max_stack": 1, @@ -6696,7 +6732,7 @@ "fireproof": false }, { - "id": 744, + "id": 748, "name": "dark_oak_boat", "translation_key": "item.minecraft.dark_oak_boat", "max_stack": 1, @@ -6705,7 +6741,7 @@ "fireproof": false }, { - "id": 745, + "id": 749, "name": "dark_oak_chest_boat", "translation_key": "item.minecraft.dark_oak_chest_boat", "max_stack": 1, @@ -6714,7 +6750,7 @@ "fireproof": false }, { - "id": 746, + "id": 750, "name": "mangrove_boat", "translation_key": "item.minecraft.mangrove_boat", "max_stack": 1, @@ -6723,7 +6759,7 @@ "fireproof": false }, { - "id": 747, + "id": 751, "name": "mangrove_chest_boat", "translation_key": "item.minecraft.mangrove_chest_boat", "max_stack": 1, @@ -6732,7 +6768,7 @@ "fireproof": false }, { - "id": 748, + "id": 752, "name": "bamboo_raft", "translation_key": "item.minecraft.bamboo_raft", "max_stack": 1, @@ -6741,7 +6777,7 @@ "fireproof": false }, { - "id": 749, + "id": 753, "name": "bamboo_chest_raft", "translation_key": "item.minecraft.bamboo_chest_raft", "max_stack": 1, @@ -6750,7 +6786,7 @@ "fireproof": false }, { - "id": 750, + "id": 754, "name": "structure_block", "translation_key": "block.minecraft.structure_block", "max_stack": 64, @@ -6759,7 +6795,7 @@ "fireproof": false }, { - "id": 751, + "id": 755, "name": "jigsaw", "translation_key": "block.minecraft.jigsaw", "max_stack": 64, @@ -6768,7 +6804,7 @@ "fireproof": false }, { - "id": 752, + "id": 756, "name": "turtle_helmet", "translation_key": "item.minecraft.turtle_helmet", "max_stack": 1, @@ -6777,7 +6813,7 @@ "fireproof": false }, { - "id": 753, + "id": 757, "name": "scute", "translation_key": "item.minecraft.scute", "max_stack": 64, @@ -6786,7 +6822,7 @@ "fireproof": false }, { - "id": 754, + "id": 758, "name": "flint_and_steel", "translation_key": "item.minecraft.flint_and_steel", "max_stack": 1, @@ -6795,7 +6831,7 @@ "fireproof": false }, { - "id": 755, + "id": 759, "name": "apple", "translation_key": "item.minecraft.apple", "max_stack": 64, @@ -6812,7 +6848,7 @@ } }, { - "id": 756, + "id": 760, "name": "bow", "translation_key": "item.minecraft.bow", "max_stack": 1, @@ -6821,7 +6857,7 @@ "fireproof": false }, { - "id": 757, + "id": 761, "name": "arrow", "translation_key": "item.minecraft.arrow", "max_stack": 64, @@ -6830,7 +6866,7 @@ "fireproof": false }, { - "id": 758, + "id": 762, "name": "coal", "translation_key": "item.minecraft.coal", "max_stack": 64, @@ -6839,7 +6875,7 @@ "fireproof": false }, { - "id": 759, + "id": 763, "name": "charcoal", "translation_key": "item.minecraft.charcoal", "max_stack": 64, @@ -6848,7 +6884,7 @@ "fireproof": false }, { - "id": 760, + "id": 764, "name": "diamond", "translation_key": "item.minecraft.diamond", "max_stack": 64, @@ -6857,7 +6893,7 @@ "fireproof": false }, { - "id": 761, + "id": 765, "name": "emerald", "translation_key": "item.minecraft.emerald", "max_stack": 64, @@ -6866,7 +6902,7 @@ "fireproof": false }, { - "id": 762, + "id": 766, "name": "lapis_lazuli", "translation_key": "item.minecraft.lapis_lazuli", "max_stack": 64, @@ -6875,7 +6911,7 @@ "fireproof": false }, { - "id": 763, + "id": 767, "name": "quartz", "translation_key": "item.minecraft.quartz", "max_stack": 64, @@ -6884,7 +6920,7 @@ "fireproof": false }, { - "id": 764, + "id": 768, "name": "amethyst_shard", "translation_key": "item.minecraft.amethyst_shard", "max_stack": 64, @@ -6893,7 +6929,7 @@ "fireproof": false }, { - "id": 765, + "id": 769, "name": "raw_iron", "translation_key": "item.minecraft.raw_iron", "max_stack": 64, @@ -6902,7 +6938,7 @@ "fireproof": false }, { - "id": 766, + "id": 770, "name": "iron_ingot", "translation_key": "item.minecraft.iron_ingot", "max_stack": 64, @@ -6911,7 +6947,7 @@ "fireproof": false }, { - "id": 767, + "id": 771, "name": "raw_copper", "translation_key": "item.minecraft.raw_copper", "max_stack": 64, @@ -6920,7 +6956,7 @@ "fireproof": false }, { - "id": 768, + "id": 772, "name": "copper_ingot", "translation_key": "item.minecraft.copper_ingot", "max_stack": 64, @@ -6929,7 +6965,7 @@ "fireproof": false }, { - "id": 769, + "id": 773, "name": "raw_gold", "translation_key": "item.minecraft.raw_gold", "max_stack": 64, @@ -6938,7 +6974,7 @@ "fireproof": false }, { - "id": 770, + "id": 774, "name": "gold_ingot", "translation_key": "item.minecraft.gold_ingot", "max_stack": 64, @@ -6947,7 +6983,7 @@ "fireproof": false }, { - "id": 771, + "id": 775, "name": "netherite_ingot", "translation_key": "item.minecraft.netherite_ingot", "max_stack": 64, @@ -6956,7 +6992,7 @@ "fireproof": true }, { - "id": 772, + "id": 776, "name": "netherite_scrap", "translation_key": "item.minecraft.netherite_scrap", "max_stack": 64, @@ -6965,7 +7001,7 @@ "fireproof": true }, { - "id": 773, + "id": 777, "name": "wooden_sword", "translation_key": "item.minecraft.wooden_sword", "max_stack": 1, @@ -6974,7 +7010,7 @@ "fireproof": false }, { - "id": 774, + "id": 778, "name": "wooden_shovel", "translation_key": "item.minecraft.wooden_shovel", "max_stack": 1, @@ -6983,7 +7019,7 @@ "fireproof": false }, { - "id": 775, + "id": 779, "name": "wooden_pickaxe", "translation_key": "item.minecraft.wooden_pickaxe", "max_stack": 1, @@ -6992,7 +7028,7 @@ "fireproof": false }, { - "id": 776, + "id": 780, "name": "wooden_axe", "translation_key": "item.minecraft.wooden_axe", "max_stack": 1, @@ -7001,7 +7037,7 @@ "fireproof": false }, { - "id": 777, + "id": 781, "name": "wooden_hoe", "translation_key": "item.minecraft.wooden_hoe", "max_stack": 1, @@ -7010,7 +7046,7 @@ "fireproof": false }, { - "id": 778, + "id": 782, "name": "stone_sword", "translation_key": "item.minecraft.stone_sword", "max_stack": 1, @@ -7019,7 +7055,7 @@ "fireproof": false }, { - "id": 779, + "id": 783, "name": "stone_shovel", "translation_key": "item.minecraft.stone_shovel", "max_stack": 1, @@ -7028,7 +7064,7 @@ "fireproof": false }, { - "id": 780, + "id": 784, "name": "stone_pickaxe", "translation_key": "item.minecraft.stone_pickaxe", "max_stack": 1, @@ -7037,7 +7073,7 @@ "fireproof": false }, { - "id": 781, + "id": 785, "name": "stone_axe", "translation_key": "item.minecraft.stone_axe", "max_stack": 1, @@ -7046,7 +7082,7 @@ "fireproof": false }, { - "id": 782, + "id": 786, "name": "stone_hoe", "translation_key": "item.minecraft.stone_hoe", "max_stack": 1, @@ -7055,7 +7091,7 @@ "fireproof": false }, { - "id": 783, + "id": 787, "name": "golden_sword", "translation_key": "item.minecraft.golden_sword", "max_stack": 1, @@ -7064,7 +7100,7 @@ "fireproof": false }, { - "id": 784, + "id": 788, "name": "golden_shovel", "translation_key": "item.minecraft.golden_shovel", "max_stack": 1, @@ -7073,7 +7109,7 @@ "fireproof": false }, { - "id": 785, + "id": 789, "name": "golden_pickaxe", "translation_key": "item.minecraft.golden_pickaxe", "max_stack": 1, @@ -7082,7 +7118,7 @@ "fireproof": false }, { - "id": 786, + "id": 790, "name": "golden_axe", "translation_key": "item.minecraft.golden_axe", "max_stack": 1, @@ -7091,7 +7127,7 @@ "fireproof": false }, { - "id": 787, + "id": 791, "name": "golden_hoe", "translation_key": "item.minecraft.golden_hoe", "max_stack": 1, @@ -7100,7 +7136,7 @@ "fireproof": false }, { - "id": 788, + "id": 792, "name": "iron_sword", "translation_key": "item.minecraft.iron_sword", "max_stack": 1, @@ -7109,7 +7145,7 @@ "fireproof": false }, { - "id": 789, + "id": 793, "name": "iron_shovel", "translation_key": "item.minecraft.iron_shovel", "max_stack": 1, @@ -7118,7 +7154,7 @@ "fireproof": false }, { - "id": 790, + "id": 794, "name": "iron_pickaxe", "translation_key": "item.minecraft.iron_pickaxe", "max_stack": 1, @@ -7127,7 +7163,7 @@ "fireproof": false }, { - "id": 791, + "id": 795, "name": "iron_axe", "translation_key": "item.minecraft.iron_axe", "max_stack": 1, @@ -7136,7 +7172,7 @@ "fireproof": false }, { - "id": 792, + "id": 796, "name": "iron_hoe", "translation_key": "item.minecraft.iron_hoe", "max_stack": 1, @@ -7145,7 +7181,7 @@ "fireproof": false }, { - "id": 793, + "id": 797, "name": "diamond_sword", "translation_key": "item.minecraft.diamond_sword", "max_stack": 1, @@ -7154,7 +7190,7 @@ "fireproof": false }, { - "id": 794, + "id": 798, "name": "diamond_shovel", "translation_key": "item.minecraft.diamond_shovel", "max_stack": 1, @@ -7163,7 +7199,7 @@ "fireproof": false }, { - "id": 795, + "id": 799, "name": "diamond_pickaxe", "translation_key": "item.minecraft.diamond_pickaxe", "max_stack": 1, @@ -7172,7 +7208,7 @@ "fireproof": false }, { - "id": 796, + "id": 800, "name": "diamond_axe", "translation_key": "item.minecraft.diamond_axe", "max_stack": 1, @@ -7181,7 +7217,7 @@ "fireproof": false }, { - "id": 797, + "id": 801, "name": "diamond_hoe", "translation_key": "item.minecraft.diamond_hoe", "max_stack": 1, @@ -7190,7 +7226,7 @@ "fireproof": false }, { - "id": 798, + "id": 802, "name": "netherite_sword", "translation_key": "item.minecraft.netherite_sword", "max_stack": 1, @@ -7199,7 +7235,7 @@ "fireproof": true }, { - "id": 799, + "id": 803, "name": "netherite_shovel", "translation_key": "item.minecraft.netherite_shovel", "max_stack": 1, @@ -7208,7 +7244,7 @@ "fireproof": true }, { - "id": 800, + "id": 804, "name": "netherite_pickaxe", "translation_key": "item.minecraft.netherite_pickaxe", "max_stack": 1, @@ -7217,7 +7253,7 @@ "fireproof": true }, { - "id": 801, + "id": 805, "name": "netherite_axe", "translation_key": "item.minecraft.netherite_axe", "max_stack": 1, @@ -7226,7 +7262,7 @@ "fireproof": true }, { - "id": 802, + "id": 806, "name": "netherite_hoe", "translation_key": "item.minecraft.netherite_hoe", "max_stack": 1, @@ -7235,7 +7271,7 @@ "fireproof": true }, { - "id": 803, + "id": 807, "name": "stick", "translation_key": "item.minecraft.stick", "max_stack": 64, @@ -7244,7 +7280,7 @@ "fireproof": false }, { - "id": 804, + "id": 808, "name": "bowl", "translation_key": "item.minecraft.bowl", "max_stack": 64, @@ -7253,7 +7289,7 @@ "fireproof": false }, { - "id": 805, + "id": 809, "name": "mushroom_stew", "translation_key": "item.minecraft.mushroom_stew", "max_stack": 1, @@ -7270,7 +7306,7 @@ } }, { - "id": 806, + "id": 810, "name": "string", "translation_key": "item.minecraft.string", "max_stack": 64, @@ -7279,7 +7315,7 @@ "fireproof": false }, { - "id": 807, + "id": 811, "name": "feather", "translation_key": "item.minecraft.feather", "max_stack": 64, @@ -7288,7 +7324,7 @@ "fireproof": false }, { - "id": 808, + "id": 812, "name": "gunpowder", "translation_key": "item.minecraft.gunpowder", "max_stack": 64, @@ -7297,7 +7333,7 @@ "fireproof": false }, { - "id": 809, + "id": 813, "name": "wheat_seeds", "translation_key": "item.minecraft.wheat_seeds", "max_stack": 64, @@ -7306,7 +7342,7 @@ "fireproof": false }, { - "id": 810, + "id": 814, "name": "wheat", "translation_key": "item.minecraft.wheat", "max_stack": 64, @@ -7315,7 +7351,7 @@ "fireproof": false }, { - "id": 811, + "id": 815, "name": "bread", "translation_key": "item.minecraft.bread", "max_stack": 64, @@ -7332,7 +7368,7 @@ } }, { - "id": 812, + "id": 816, "name": "leather_helmet", "translation_key": "item.minecraft.leather_helmet", "max_stack": 1, @@ -7341,7 +7377,7 @@ "fireproof": false }, { - "id": 813, + "id": 817, "name": "leather_chestplate", "translation_key": "item.minecraft.leather_chestplate", "max_stack": 1, @@ -7350,7 +7386,7 @@ "fireproof": false }, { - "id": 814, + "id": 818, "name": "leather_leggings", "translation_key": "item.minecraft.leather_leggings", "max_stack": 1, @@ -7359,7 +7395,7 @@ "fireproof": false }, { - "id": 815, + "id": 819, "name": "leather_boots", "translation_key": "item.minecraft.leather_boots", "max_stack": 1, @@ -7368,7 +7404,7 @@ "fireproof": false }, { - "id": 816, + "id": 820, "name": "chainmail_helmet", "translation_key": "item.minecraft.chainmail_helmet", "max_stack": 1, @@ -7377,7 +7413,7 @@ "fireproof": false }, { - "id": 817, + "id": 821, "name": "chainmail_chestplate", "translation_key": "item.minecraft.chainmail_chestplate", "max_stack": 1, @@ -7386,7 +7422,7 @@ "fireproof": false }, { - "id": 818, + "id": 822, "name": "chainmail_leggings", "translation_key": "item.minecraft.chainmail_leggings", "max_stack": 1, @@ -7395,7 +7431,7 @@ "fireproof": false }, { - "id": 819, + "id": 823, "name": "chainmail_boots", "translation_key": "item.minecraft.chainmail_boots", "max_stack": 1, @@ -7404,7 +7440,7 @@ "fireproof": false }, { - "id": 820, + "id": 824, "name": "iron_helmet", "translation_key": "item.minecraft.iron_helmet", "max_stack": 1, @@ -7413,7 +7449,7 @@ "fireproof": false }, { - "id": 821, + "id": 825, "name": "iron_chestplate", "translation_key": "item.minecraft.iron_chestplate", "max_stack": 1, @@ -7422,7 +7458,7 @@ "fireproof": false }, { - "id": 822, + "id": 826, "name": "iron_leggings", "translation_key": "item.minecraft.iron_leggings", "max_stack": 1, @@ -7431,7 +7467,7 @@ "fireproof": false }, { - "id": 823, + "id": 827, "name": "iron_boots", "translation_key": "item.minecraft.iron_boots", "max_stack": 1, @@ -7440,7 +7476,7 @@ "fireproof": false }, { - "id": 824, + "id": 828, "name": "diamond_helmet", "translation_key": "item.minecraft.diamond_helmet", "max_stack": 1, @@ -7449,7 +7485,7 @@ "fireproof": false }, { - "id": 825, + "id": 829, "name": "diamond_chestplate", "translation_key": "item.minecraft.diamond_chestplate", "max_stack": 1, @@ -7458,7 +7494,7 @@ "fireproof": false }, { - "id": 826, + "id": 830, "name": "diamond_leggings", "translation_key": "item.minecraft.diamond_leggings", "max_stack": 1, @@ -7467,7 +7503,7 @@ "fireproof": false }, { - "id": 827, + "id": 831, "name": "diamond_boots", "translation_key": "item.minecraft.diamond_boots", "max_stack": 1, @@ -7476,7 +7512,7 @@ "fireproof": false }, { - "id": 828, + "id": 832, "name": "golden_helmet", "translation_key": "item.minecraft.golden_helmet", "max_stack": 1, @@ -7485,7 +7521,7 @@ "fireproof": false }, { - "id": 829, + "id": 833, "name": "golden_chestplate", "translation_key": "item.minecraft.golden_chestplate", "max_stack": 1, @@ -7494,7 +7530,7 @@ "fireproof": false }, { - "id": 830, + "id": 834, "name": "golden_leggings", "translation_key": "item.minecraft.golden_leggings", "max_stack": 1, @@ -7503,7 +7539,7 @@ "fireproof": false }, { - "id": 831, + "id": 835, "name": "golden_boots", "translation_key": "item.minecraft.golden_boots", "max_stack": 1, @@ -7512,7 +7548,7 @@ "fireproof": false }, { - "id": 832, + "id": 836, "name": "netherite_helmet", "translation_key": "item.minecraft.netherite_helmet", "max_stack": 1, @@ -7521,7 +7557,7 @@ "fireproof": true }, { - "id": 833, + "id": 837, "name": "netherite_chestplate", "translation_key": "item.minecraft.netherite_chestplate", "max_stack": 1, @@ -7530,7 +7566,7 @@ "fireproof": true }, { - "id": 834, + "id": 838, "name": "netherite_leggings", "translation_key": "item.minecraft.netherite_leggings", "max_stack": 1, @@ -7539,7 +7575,7 @@ "fireproof": true }, { - "id": 835, + "id": 839, "name": "netherite_boots", "translation_key": "item.minecraft.netherite_boots", "max_stack": 1, @@ -7548,7 +7584,7 @@ "fireproof": true }, { - "id": 836, + "id": 840, "name": "flint", "translation_key": "item.minecraft.flint", "max_stack": 64, @@ -7557,7 +7593,7 @@ "fireproof": false }, { - "id": 837, + "id": 841, "name": "porkchop", "translation_key": "item.minecraft.porkchop", "max_stack": 64, @@ -7574,7 +7610,7 @@ } }, { - "id": 838, + "id": 842, "name": "cooked_porkchop", "translation_key": "item.minecraft.cooked_porkchop", "max_stack": 64, @@ -7591,7 +7627,7 @@ } }, { - "id": 839, + "id": 843, "name": "painting", "translation_key": "item.minecraft.painting", "max_stack": 64, @@ -7600,7 +7636,7 @@ "fireproof": false }, { - "id": 840, + "id": 844, "name": "golden_apple", "translation_key": "item.minecraft.golden_apple", "max_stack": 64, @@ -7626,7 +7662,7 @@ } }, { - "id": 841, + "id": 845, "name": "enchanted_golden_apple", "translation_key": "item.minecraft.enchanted_golden_apple", "max_stack": 64, @@ -7660,7 +7696,7 @@ } }, { - "id": 842, + "id": 846, "name": "oak_sign", "translation_key": "block.minecraft.oak_sign", "max_stack": 16, @@ -7669,7 +7705,7 @@ "fireproof": false }, { - "id": 843, + "id": 847, "name": "spruce_sign", "translation_key": "block.minecraft.spruce_sign", "max_stack": 16, @@ -7678,7 +7714,7 @@ "fireproof": false }, { - "id": 844, + "id": 848, "name": "birch_sign", "translation_key": "block.minecraft.birch_sign", "max_stack": 16, @@ -7687,7 +7723,7 @@ "fireproof": false }, { - "id": 845, + "id": 849, "name": "jungle_sign", "translation_key": "block.minecraft.jungle_sign", "max_stack": 16, @@ -7696,7 +7732,7 @@ "fireproof": false }, { - "id": 846, + "id": 850, "name": "acacia_sign", "translation_key": "block.minecraft.acacia_sign", "max_stack": 16, @@ -7705,7 +7741,7 @@ "fireproof": false }, { - "id": 847, + "id": 851, "name": "cherry_sign", "translation_key": "block.minecraft.cherry_sign", "max_stack": 16, @@ -7714,7 +7750,7 @@ "fireproof": false }, { - "id": 848, + "id": 852, "name": "dark_oak_sign", "translation_key": "block.minecraft.dark_oak_sign", "max_stack": 16, @@ -7723,7 +7759,7 @@ "fireproof": false }, { - "id": 849, + "id": 853, "name": "mangrove_sign", "translation_key": "block.minecraft.mangrove_sign", "max_stack": 16, @@ -7732,7 +7768,7 @@ "fireproof": false }, { - "id": 850, + "id": 854, "name": "bamboo_sign", "translation_key": "block.minecraft.bamboo_sign", "max_stack": 16, @@ -7741,7 +7777,7 @@ "fireproof": false }, { - "id": 851, + "id": 855, "name": "crimson_sign", "translation_key": "block.minecraft.crimson_sign", "max_stack": 16, @@ -7750,7 +7786,7 @@ "fireproof": false }, { - "id": 852, + "id": 856, "name": "warped_sign", "translation_key": "block.minecraft.warped_sign", "max_stack": 16, @@ -7759,7 +7795,7 @@ "fireproof": false }, { - "id": 853, + "id": 857, "name": "oak_hanging_sign", "translation_key": "block.minecraft.oak_hanging_sign", "max_stack": 16, @@ -7768,7 +7804,7 @@ "fireproof": false }, { - "id": 854, + "id": 858, "name": "spruce_hanging_sign", "translation_key": "block.minecraft.spruce_hanging_sign", "max_stack": 16, @@ -7777,7 +7813,7 @@ "fireproof": false }, { - "id": 855, + "id": 859, "name": "birch_hanging_sign", "translation_key": "block.minecraft.birch_hanging_sign", "max_stack": 16, @@ -7786,7 +7822,7 @@ "fireproof": false }, { - "id": 856, + "id": 860, "name": "jungle_hanging_sign", "translation_key": "block.minecraft.jungle_hanging_sign", "max_stack": 16, @@ -7795,7 +7831,7 @@ "fireproof": false }, { - "id": 857, + "id": 861, "name": "acacia_hanging_sign", "translation_key": "block.minecraft.acacia_hanging_sign", "max_stack": 16, @@ -7804,7 +7840,7 @@ "fireproof": false }, { - "id": 858, + "id": 862, "name": "cherry_hanging_sign", "translation_key": "block.minecraft.cherry_hanging_sign", "max_stack": 16, @@ -7813,7 +7849,7 @@ "fireproof": false }, { - "id": 859, + "id": 863, "name": "dark_oak_hanging_sign", "translation_key": "block.minecraft.dark_oak_hanging_sign", "max_stack": 16, @@ -7822,7 +7858,7 @@ "fireproof": false }, { - "id": 860, + "id": 864, "name": "mangrove_hanging_sign", "translation_key": "block.minecraft.mangrove_hanging_sign", "max_stack": 16, @@ -7831,7 +7867,7 @@ "fireproof": false }, { - "id": 861, + "id": 865, "name": "bamboo_hanging_sign", "translation_key": "block.minecraft.bamboo_hanging_sign", "max_stack": 16, @@ -7840,7 +7876,7 @@ "fireproof": false }, { - "id": 862, + "id": 866, "name": "crimson_hanging_sign", "translation_key": "block.minecraft.crimson_hanging_sign", "max_stack": 16, @@ -7849,7 +7885,7 @@ "fireproof": false }, { - "id": 863, + "id": 867, "name": "warped_hanging_sign", "translation_key": "block.minecraft.warped_hanging_sign", "max_stack": 16, @@ -7858,7 +7894,7 @@ "fireproof": false }, { - "id": 864, + "id": 868, "name": "bucket", "translation_key": "item.minecraft.bucket", "max_stack": 16, @@ -7867,7 +7903,7 @@ "fireproof": false }, { - "id": 865, + "id": 869, "name": "water_bucket", "translation_key": "item.minecraft.water_bucket", "max_stack": 1, @@ -7876,7 +7912,7 @@ "fireproof": false }, { - "id": 866, + "id": 870, "name": "lava_bucket", "translation_key": "item.minecraft.lava_bucket", "max_stack": 1, @@ -7885,7 +7921,7 @@ "fireproof": false }, { - "id": 867, + "id": 871, "name": "powder_snow_bucket", "translation_key": "item.minecraft.powder_snow_bucket", "max_stack": 1, @@ -7894,7 +7930,7 @@ "fireproof": false }, { - "id": 868, + "id": 872, "name": "snowball", "translation_key": "item.minecraft.snowball", "max_stack": 16, @@ -7903,7 +7939,7 @@ "fireproof": false }, { - "id": 869, + "id": 873, "name": "leather", "translation_key": "item.minecraft.leather", "max_stack": 64, @@ -7912,7 +7948,7 @@ "fireproof": false }, { - "id": 870, + "id": 874, "name": "milk_bucket", "translation_key": "item.minecraft.milk_bucket", "max_stack": 1, @@ -7921,7 +7957,7 @@ "fireproof": false }, { - "id": 871, + "id": 875, "name": "pufferfish_bucket", "translation_key": "item.minecraft.pufferfish_bucket", "max_stack": 1, @@ -7930,7 +7966,7 @@ "fireproof": false }, { - "id": 872, + "id": 876, "name": "salmon_bucket", "translation_key": "item.minecraft.salmon_bucket", "max_stack": 1, @@ -7939,7 +7975,7 @@ "fireproof": false }, { - "id": 873, + "id": 877, "name": "cod_bucket", "translation_key": "item.minecraft.cod_bucket", "max_stack": 1, @@ -7948,7 +7984,7 @@ "fireproof": false }, { - "id": 874, + "id": 878, "name": "tropical_fish_bucket", "translation_key": "item.minecraft.tropical_fish_bucket", "max_stack": 1, @@ -7957,7 +7993,7 @@ "fireproof": false }, { - "id": 875, + "id": 879, "name": "axolotl_bucket", "translation_key": "item.minecraft.axolotl_bucket", "max_stack": 1, @@ -7966,7 +8002,7 @@ "fireproof": false }, { - "id": 876, + "id": 880, "name": "tadpole_bucket", "translation_key": "item.minecraft.tadpole_bucket", "max_stack": 1, @@ -7975,7 +8011,7 @@ "fireproof": false }, { - "id": 877, + "id": 881, "name": "brick", "translation_key": "item.minecraft.brick", "max_stack": 64, @@ -7984,7 +8020,7 @@ "fireproof": false }, { - "id": 878, + "id": 882, "name": "clay_ball", "translation_key": "item.minecraft.clay_ball", "max_stack": 64, @@ -7993,7 +8029,7 @@ "fireproof": false }, { - "id": 879, + "id": 883, "name": "dried_kelp_block", "translation_key": "block.minecraft.dried_kelp_block", "max_stack": 64, @@ -8002,7 +8038,7 @@ "fireproof": false }, { - "id": 880, + "id": 884, "name": "paper", "translation_key": "item.minecraft.paper", "max_stack": 64, @@ -8011,7 +8047,7 @@ "fireproof": false }, { - "id": 881, + "id": 885, "name": "book", "translation_key": "item.minecraft.book", "max_stack": 64, @@ -8020,7 +8056,7 @@ "fireproof": false }, { - "id": 882, + "id": 886, "name": "slime_ball", "translation_key": "item.minecraft.slime_ball", "max_stack": 64, @@ -8029,7 +8065,7 @@ "fireproof": false }, { - "id": 883, + "id": 887, "name": "egg", "translation_key": "item.minecraft.egg", "max_stack": 16, @@ -8038,7 +8074,7 @@ "fireproof": false }, { - "id": 884, + "id": 888, "name": "compass", "translation_key": "item.minecraft.compass", "max_stack": 64, @@ -8047,7 +8083,7 @@ "fireproof": false }, { - "id": 885, + "id": 889, "name": "recovery_compass", "translation_key": "item.minecraft.recovery_compass", "max_stack": 64, @@ -8056,7 +8092,7 @@ "fireproof": false }, { - "id": 886, + "id": 890, "name": "bundle", "translation_key": "item.minecraft.bundle", "max_stack": 1, @@ -8065,7 +8101,7 @@ "fireproof": false }, { - "id": 887, + "id": 891, "name": "fishing_rod", "translation_key": "item.minecraft.fishing_rod", "max_stack": 1, @@ -8074,7 +8110,7 @@ "fireproof": false }, { - "id": 888, + "id": 892, "name": "clock", "translation_key": "item.minecraft.clock", "max_stack": 64, @@ -8083,7 +8119,7 @@ "fireproof": false }, { - "id": 889, + "id": 893, "name": "spyglass", "translation_key": "item.minecraft.spyglass", "max_stack": 1, @@ -8092,7 +8128,7 @@ "fireproof": false }, { - "id": 890, + "id": 894, "name": "glowstone_dust", "translation_key": "item.minecraft.glowstone_dust", "max_stack": 64, @@ -8101,7 +8137,7 @@ "fireproof": false }, { - "id": 891, + "id": 895, "name": "cod", "translation_key": "item.minecraft.cod", "max_stack": 64, @@ -8118,7 +8154,7 @@ } }, { - "id": 892, + "id": 896, "name": "salmon", "translation_key": "item.minecraft.salmon", "max_stack": 64, @@ -8135,7 +8171,7 @@ } }, { - "id": 893, + "id": 897, "name": "tropical_fish", "translation_key": "item.minecraft.tropical_fish", "max_stack": 64, @@ -8152,7 +8188,7 @@ } }, { - "id": 894, + "id": 898, "name": "pufferfish", "translation_key": "item.minecraft.pufferfish", "max_stack": 64, @@ -8182,7 +8218,7 @@ } }, { - "id": 895, + "id": 899, "name": "cooked_cod", "translation_key": "item.minecraft.cooked_cod", "max_stack": 64, @@ -8199,7 +8235,7 @@ } }, { - "id": 896, + "id": 900, "name": "cooked_salmon", "translation_key": "item.minecraft.cooked_salmon", "max_stack": 64, @@ -8216,7 +8252,7 @@ } }, { - "id": 897, + "id": 901, "name": "ink_sac", "translation_key": "item.minecraft.ink_sac", "max_stack": 64, @@ -8225,7 +8261,7 @@ "fireproof": false }, { - "id": 898, + "id": 902, "name": "glow_ink_sac", "translation_key": "item.minecraft.glow_ink_sac", "max_stack": 64, @@ -8234,7 +8270,7 @@ "fireproof": false }, { - "id": 899, + "id": 903, "name": "cocoa_beans", "translation_key": "item.minecraft.cocoa_beans", "max_stack": 64, @@ -8243,7 +8279,7 @@ "fireproof": false }, { - "id": 900, + "id": 904, "name": "white_dye", "translation_key": "item.minecraft.white_dye", "max_stack": 64, @@ -8252,7 +8288,7 @@ "fireproof": false }, { - "id": 901, + "id": 905, "name": "orange_dye", "translation_key": "item.minecraft.orange_dye", "max_stack": 64, @@ -8261,7 +8297,7 @@ "fireproof": false }, { - "id": 902, + "id": 906, "name": "magenta_dye", "translation_key": "item.minecraft.magenta_dye", "max_stack": 64, @@ -8270,7 +8306,7 @@ "fireproof": false }, { - "id": 903, + "id": 907, "name": "light_blue_dye", "translation_key": "item.minecraft.light_blue_dye", "max_stack": 64, @@ -8279,7 +8315,7 @@ "fireproof": false }, { - "id": 904, + "id": 908, "name": "yellow_dye", "translation_key": "item.minecraft.yellow_dye", "max_stack": 64, @@ -8288,7 +8324,7 @@ "fireproof": false }, { - "id": 905, + "id": 909, "name": "lime_dye", "translation_key": "item.minecraft.lime_dye", "max_stack": 64, @@ -8297,7 +8333,7 @@ "fireproof": false }, { - "id": 906, + "id": 910, "name": "pink_dye", "translation_key": "item.minecraft.pink_dye", "max_stack": 64, @@ -8306,7 +8342,7 @@ "fireproof": false }, { - "id": 907, + "id": 911, "name": "gray_dye", "translation_key": "item.minecraft.gray_dye", "max_stack": 64, @@ -8315,7 +8351,7 @@ "fireproof": false }, { - "id": 908, + "id": 912, "name": "light_gray_dye", "translation_key": "item.minecraft.light_gray_dye", "max_stack": 64, @@ -8324,7 +8360,7 @@ "fireproof": false }, { - "id": 909, + "id": 913, "name": "cyan_dye", "translation_key": "item.minecraft.cyan_dye", "max_stack": 64, @@ -8333,7 +8369,7 @@ "fireproof": false }, { - "id": 910, + "id": 914, "name": "purple_dye", "translation_key": "item.minecraft.purple_dye", "max_stack": 64, @@ -8342,7 +8378,7 @@ "fireproof": false }, { - "id": 911, + "id": 915, "name": "blue_dye", "translation_key": "item.minecraft.blue_dye", "max_stack": 64, @@ -8351,7 +8387,7 @@ "fireproof": false }, { - "id": 912, + "id": 916, "name": "brown_dye", "translation_key": "item.minecraft.brown_dye", "max_stack": 64, @@ -8360,7 +8396,7 @@ "fireproof": false }, { - "id": 913, + "id": 917, "name": "green_dye", "translation_key": "item.minecraft.green_dye", "max_stack": 64, @@ -8369,7 +8405,7 @@ "fireproof": false }, { - "id": 914, + "id": 918, "name": "red_dye", "translation_key": "item.minecraft.red_dye", "max_stack": 64, @@ -8378,7 +8414,7 @@ "fireproof": false }, { - "id": 915, + "id": 919, "name": "black_dye", "translation_key": "item.minecraft.black_dye", "max_stack": 64, @@ -8387,7 +8423,7 @@ "fireproof": false }, { - "id": 916, + "id": 920, "name": "bone_meal", "translation_key": "item.minecraft.bone_meal", "max_stack": 64, @@ -8396,7 +8432,7 @@ "fireproof": false }, { - "id": 917, + "id": 921, "name": "bone", "translation_key": "item.minecraft.bone", "max_stack": 64, @@ -8405,7 +8441,7 @@ "fireproof": false }, { - "id": 918, + "id": 922, "name": "sugar", "translation_key": "item.minecraft.sugar", "max_stack": 64, @@ -8414,7 +8450,7 @@ "fireproof": false }, { - "id": 919, + "id": 923, "name": "cake", "translation_key": "block.minecraft.cake", "max_stack": 1, @@ -8423,7 +8459,7 @@ "fireproof": false }, { - "id": 920, + "id": 924, "name": "white_bed", "translation_key": "block.minecraft.white_bed", "max_stack": 1, @@ -8432,7 +8468,7 @@ "fireproof": false }, { - "id": 921, + "id": 925, "name": "orange_bed", "translation_key": "block.minecraft.orange_bed", "max_stack": 1, @@ -8441,7 +8477,7 @@ "fireproof": false }, { - "id": 922, + "id": 926, "name": "magenta_bed", "translation_key": "block.minecraft.magenta_bed", "max_stack": 1, @@ -8450,7 +8486,7 @@ "fireproof": false }, { - "id": 923, + "id": 927, "name": "light_blue_bed", "translation_key": "block.minecraft.light_blue_bed", "max_stack": 1, @@ -8459,7 +8495,7 @@ "fireproof": false }, { - "id": 924, + "id": 928, "name": "yellow_bed", "translation_key": "block.minecraft.yellow_bed", "max_stack": 1, @@ -8468,7 +8504,7 @@ "fireproof": false }, { - "id": 925, + "id": 929, "name": "lime_bed", "translation_key": "block.minecraft.lime_bed", "max_stack": 1, @@ -8477,7 +8513,7 @@ "fireproof": false }, { - "id": 926, + "id": 930, "name": "pink_bed", "translation_key": "block.minecraft.pink_bed", "max_stack": 1, @@ -8486,7 +8522,7 @@ "fireproof": false }, { - "id": 927, + "id": 931, "name": "gray_bed", "translation_key": "block.minecraft.gray_bed", "max_stack": 1, @@ -8495,7 +8531,7 @@ "fireproof": false }, { - "id": 928, + "id": 932, "name": "light_gray_bed", "translation_key": "block.minecraft.light_gray_bed", "max_stack": 1, @@ -8504,7 +8540,7 @@ "fireproof": false }, { - "id": 929, + "id": 933, "name": "cyan_bed", "translation_key": "block.minecraft.cyan_bed", "max_stack": 1, @@ -8513,7 +8549,7 @@ "fireproof": false }, { - "id": 930, + "id": 934, "name": "purple_bed", "translation_key": "block.minecraft.purple_bed", "max_stack": 1, @@ -8522,7 +8558,7 @@ "fireproof": false }, { - "id": 931, + "id": 935, "name": "blue_bed", "translation_key": "block.minecraft.blue_bed", "max_stack": 1, @@ -8531,7 +8567,7 @@ "fireproof": false }, { - "id": 932, + "id": 936, "name": "brown_bed", "translation_key": "block.minecraft.brown_bed", "max_stack": 1, @@ -8540,7 +8576,7 @@ "fireproof": false }, { - "id": 933, + "id": 937, "name": "green_bed", "translation_key": "block.minecraft.green_bed", "max_stack": 1, @@ -8549,7 +8585,7 @@ "fireproof": false }, { - "id": 934, + "id": 938, "name": "red_bed", "translation_key": "block.minecraft.red_bed", "max_stack": 1, @@ -8558,7 +8594,7 @@ "fireproof": false }, { - "id": 935, + "id": 939, "name": "black_bed", "translation_key": "block.minecraft.black_bed", "max_stack": 1, @@ -8567,7 +8603,7 @@ "fireproof": false }, { - "id": 936, + "id": 940, "name": "cookie", "translation_key": "item.minecraft.cookie", "max_stack": 64, @@ -8584,7 +8620,7 @@ } }, { - "id": 937, + "id": 941, "name": "filled_map", "translation_key": "item.minecraft.filled_map", "max_stack": 64, @@ -8593,7 +8629,7 @@ "fireproof": false }, { - "id": 938, + "id": 942, "name": "shears", "translation_key": "item.minecraft.shears", "max_stack": 1, @@ -8602,7 +8638,7 @@ "fireproof": false }, { - "id": 939, + "id": 943, "name": "melon_slice", "translation_key": "item.minecraft.melon_slice", "max_stack": 64, @@ -8619,7 +8655,7 @@ } }, { - "id": 940, + "id": 944, "name": "dried_kelp", "translation_key": "item.minecraft.dried_kelp", "max_stack": 64, @@ -8636,7 +8672,7 @@ } }, { - "id": 941, + "id": 945, "name": "pumpkin_seeds", "translation_key": "item.minecraft.pumpkin_seeds", "max_stack": 64, @@ -8645,7 +8681,7 @@ "fireproof": false }, { - "id": 942, + "id": 946, "name": "melon_seeds", "translation_key": "item.minecraft.melon_seeds", "max_stack": 64, @@ -8654,7 +8690,7 @@ "fireproof": false }, { - "id": 943, + "id": 947, "name": "beef", "translation_key": "item.minecraft.beef", "max_stack": 64, @@ -8671,7 +8707,7 @@ } }, { - "id": 944, + "id": 948, "name": "cooked_beef", "translation_key": "item.minecraft.cooked_beef", "max_stack": 64, @@ -8688,7 +8724,7 @@ } }, { - "id": 945, + "id": 949, "name": "chicken", "translation_key": "item.minecraft.chicken", "max_stack": 64, @@ -8710,7 +8746,7 @@ } }, { - "id": 946, + "id": 950, "name": "cooked_chicken", "translation_key": "item.minecraft.cooked_chicken", "max_stack": 64, @@ -8727,7 +8763,7 @@ } }, { - "id": 947, + "id": 951, "name": "rotten_flesh", "translation_key": "item.minecraft.rotten_flesh", "max_stack": 64, @@ -8749,7 +8785,7 @@ } }, { - "id": 948, + "id": 952, "name": "ender_pearl", "translation_key": "item.minecraft.ender_pearl", "max_stack": 16, @@ -8758,7 +8794,7 @@ "fireproof": false }, { - "id": 949, + "id": 953, "name": "blaze_rod", "translation_key": "item.minecraft.blaze_rod", "max_stack": 64, @@ -8767,7 +8803,7 @@ "fireproof": false }, { - "id": 950, + "id": 954, "name": "ghast_tear", "translation_key": "item.minecraft.ghast_tear", "max_stack": 64, @@ -8776,7 +8812,7 @@ "fireproof": false }, { - "id": 951, + "id": 955, "name": "gold_nugget", "translation_key": "item.minecraft.gold_nugget", "max_stack": 64, @@ -8785,7 +8821,7 @@ "fireproof": false }, { - "id": 952, + "id": 956, "name": "nether_wart", "translation_key": "item.minecraft.nether_wart", "max_stack": 64, @@ -8794,7 +8830,7 @@ "fireproof": false }, { - "id": 953, + "id": 957, "name": "potion", "translation_key": "item.minecraft.potion", "max_stack": 1, @@ -8803,7 +8839,7 @@ "fireproof": false }, { - "id": 954, + "id": 958, "name": "glass_bottle", "translation_key": "item.minecraft.glass_bottle", "max_stack": 64, @@ -8812,7 +8848,7 @@ "fireproof": false }, { - "id": 955, + "id": 959, "name": "spider_eye", "translation_key": "item.minecraft.spider_eye", "max_stack": 64, @@ -8834,7 +8870,7 @@ } }, { - "id": 956, + "id": 960, "name": "fermented_spider_eye", "translation_key": "item.minecraft.fermented_spider_eye", "max_stack": 64, @@ -8843,7 +8879,7 @@ "fireproof": false }, { - "id": 957, + "id": 961, "name": "blaze_powder", "translation_key": "item.minecraft.blaze_powder", "max_stack": 64, @@ -8852,7 +8888,7 @@ "fireproof": false }, { - "id": 958, + "id": 962, "name": "magma_cream", "translation_key": "item.minecraft.magma_cream", "max_stack": 64, @@ -8861,7 +8897,7 @@ "fireproof": false }, { - "id": 959, + "id": 963, "name": "brewing_stand", "translation_key": "block.minecraft.brewing_stand", "max_stack": 64, @@ -8870,7 +8906,7 @@ "fireproof": false }, { - "id": 960, + "id": 964, "name": "cauldron", "translation_key": "block.minecraft.cauldron", "max_stack": 64, @@ -8879,7 +8915,7 @@ "fireproof": false }, { - "id": 961, + "id": 965, "name": "ender_eye", "translation_key": "item.minecraft.ender_eye", "max_stack": 64, @@ -8888,7 +8924,7 @@ "fireproof": false }, { - "id": 962, + "id": 966, "name": "glistering_melon_slice", "translation_key": "item.minecraft.glistering_melon_slice", "max_stack": 64, @@ -8897,7 +8933,7 @@ "fireproof": false }, { - "id": 963, + "id": 967, "name": "allay_spawn_egg", "translation_key": "item.minecraft.allay_spawn_egg", "max_stack": 64, @@ -8906,7 +8942,7 @@ "fireproof": false }, { - "id": 964, + "id": 968, "name": "axolotl_spawn_egg", "translation_key": "item.minecraft.axolotl_spawn_egg", "max_stack": 64, @@ -8915,7 +8951,7 @@ "fireproof": false }, { - "id": 965, + "id": 969, "name": "bat_spawn_egg", "translation_key": "item.minecraft.bat_spawn_egg", "max_stack": 64, @@ -8924,7 +8960,7 @@ "fireproof": false }, { - "id": 966, + "id": 970, "name": "bee_spawn_egg", "translation_key": "item.minecraft.bee_spawn_egg", "max_stack": 64, @@ -8933,7 +8969,7 @@ "fireproof": false }, { - "id": 967, + "id": 971, "name": "blaze_spawn_egg", "translation_key": "item.minecraft.blaze_spawn_egg", "max_stack": 64, @@ -8942,7 +8978,7 @@ "fireproof": false }, { - "id": 968, + "id": 972, "name": "cat_spawn_egg", "translation_key": "item.minecraft.cat_spawn_egg", "max_stack": 64, @@ -8951,7 +8987,7 @@ "fireproof": false }, { - "id": 969, + "id": 973, "name": "camel_spawn_egg", "translation_key": "item.minecraft.camel_spawn_egg", "max_stack": 64, @@ -8960,7 +8996,7 @@ "fireproof": false }, { - "id": 970, + "id": 974, "name": "cave_spider_spawn_egg", "translation_key": "item.minecraft.cave_spider_spawn_egg", "max_stack": 64, @@ -8969,7 +9005,7 @@ "fireproof": false }, { - "id": 971, + "id": 975, "name": "chicken_spawn_egg", "translation_key": "item.minecraft.chicken_spawn_egg", "max_stack": 64, @@ -8978,7 +9014,7 @@ "fireproof": false }, { - "id": 972, + "id": 976, "name": "cod_spawn_egg", "translation_key": "item.minecraft.cod_spawn_egg", "max_stack": 64, @@ -8987,7 +9023,7 @@ "fireproof": false }, { - "id": 973, + "id": 977, "name": "cow_spawn_egg", "translation_key": "item.minecraft.cow_spawn_egg", "max_stack": 64, @@ -8996,7 +9032,7 @@ "fireproof": false }, { - "id": 974, + "id": 978, "name": "creeper_spawn_egg", "translation_key": "item.minecraft.creeper_spawn_egg", "max_stack": 64, @@ -9005,7 +9041,7 @@ "fireproof": false }, { - "id": 975, + "id": 979, "name": "dolphin_spawn_egg", "translation_key": "item.minecraft.dolphin_spawn_egg", "max_stack": 64, @@ -9014,7 +9050,7 @@ "fireproof": false }, { - "id": 976, + "id": 980, "name": "donkey_spawn_egg", "translation_key": "item.minecraft.donkey_spawn_egg", "max_stack": 64, @@ -9023,7 +9059,7 @@ "fireproof": false }, { - "id": 977, + "id": 981, "name": "drowned_spawn_egg", "translation_key": "item.minecraft.drowned_spawn_egg", "max_stack": 64, @@ -9032,7 +9068,7 @@ "fireproof": false }, { - "id": 978, + "id": 982, "name": "elder_guardian_spawn_egg", "translation_key": "item.minecraft.elder_guardian_spawn_egg", "max_stack": 64, @@ -9041,7 +9077,7 @@ "fireproof": false }, { - "id": 979, + "id": 983, "name": "ender_dragon_spawn_egg", "translation_key": "item.minecraft.ender_dragon_spawn_egg", "max_stack": 64, @@ -9050,7 +9086,7 @@ "fireproof": false }, { - "id": 980, + "id": 984, "name": "enderman_spawn_egg", "translation_key": "item.minecraft.enderman_spawn_egg", "max_stack": 64, @@ -9059,7 +9095,7 @@ "fireproof": false }, { - "id": 981, + "id": 985, "name": "endermite_spawn_egg", "translation_key": "item.minecraft.endermite_spawn_egg", "max_stack": 64, @@ -9068,7 +9104,7 @@ "fireproof": false }, { - "id": 982, + "id": 986, "name": "evoker_spawn_egg", "translation_key": "item.minecraft.evoker_spawn_egg", "max_stack": 64, @@ -9077,7 +9113,7 @@ "fireproof": false }, { - "id": 983, + "id": 987, "name": "fox_spawn_egg", "translation_key": "item.minecraft.fox_spawn_egg", "max_stack": 64, @@ -9086,7 +9122,7 @@ "fireproof": false }, { - "id": 984, + "id": 988, "name": "frog_spawn_egg", "translation_key": "item.minecraft.frog_spawn_egg", "max_stack": 64, @@ -9095,7 +9131,7 @@ "fireproof": false }, { - "id": 985, + "id": 989, "name": "ghast_spawn_egg", "translation_key": "item.minecraft.ghast_spawn_egg", "max_stack": 64, @@ -9104,7 +9140,7 @@ "fireproof": false }, { - "id": 986, + "id": 990, "name": "glow_squid_spawn_egg", "translation_key": "item.minecraft.glow_squid_spawn_egg", "max_stack": 64, @@ -9113,7 +9149,7 @@ "fireproof": false }, { - "id": 987, + "id": 991, "name": "goat_spawn_egg", "translation_key": "item.minecraft.goat_spawn_egg", "max_stack": 64, @@ -9122,7 +9158,7 @@ "fireproof": false }, { - "id": 988, + "id": 992, "name": "guardian_spawn_egg", "translation_key": "item.minecraft.guardian_spawn_egg", "max_stack": 64, @@ -9131,7 +9167,7 @@ "fireproof": false }, { - "id": 989, + "id": 993, "name": "hoglin_spawn_egg", "translation_key": "item.minecraft.hoglin_spawn_egg", "max_stack": 64, @@ -9140,7 +9176,7 @@ "fireproof": false }, { - "id": 990, + "id": 994, "name": "horse_spawn_egg", "translation_key": "item.minecraft.horse_spawn_egg", "max_stack": 64, @@ -9149,7 +9185,7 @@ "fireproof": false }, { - "id": 991, + "id": 995, "name": "husk_spawn_egg", "translation_key": "item.minecraft.husk_spawn_egg", "max_stack": 64, @@ -9158,7 +9194,7 @@ "fireproof": false }, { - "id": 992, + "id": 996, "name": "iron_golem_spawn_egg", "translation_key": "item.minecraft.iron_golem_spawn_egg", "max_stack": 64, @@ -9167,7 +9203,7 @@ "fireproof": false }, { - "id": 993, + "id": 997, "name": "llama_spawn_egg", "translation_key": "item.minecraft.llama_spawn_egg", "max_stack": 64, @@ -9176,7 +9212,7 @@ "fireproof": false }, { - "id": 994, + "id": 998, "name": "magma_cube_spawn_egg", "translation_key": "item.minecraft.magma_cube_spawn_egg", "max_stack": 64, @@ -9185,7 +9221,7 @@ "fireproof": false }, { - "id": 995, + "id": 999, "name": "mooshroom_spawn_egg", "translation_key": "item.minecraft.mooshroom_spawn_egg", "max_stack": 64, @@ -9194,7 +9230,7 @@ "fireproof": false }, { - "id": 996, + "id": 1000, "name": "mule_spawn_egg", "translation_key": "item.minecraft.mule_spawn_egg", "max_stack": 64, @@ -9203,7 +9239,7 @@ "fireproof": false }, { - "id": 997, + "id": 1001, "name": "ocelot_spawn_egg", "translation_key": "item.minecraft.ocelot_spawn_egg", "max_stack": 64, @@ -9212,7 +9248,7 @@ "fireproof": false }, { - "id": 998, + "id": 1002, "name": "panda_spawn_egg", "translation_key": "item.minecraft.panda_spawn_egg", "max_stack": 64, @@ -9221,7 +9257,7 @@ "fireproof": false }, { - "id": 999, + "id": 1003, "name": "parrot_spawn_egg", "translation_key": "item.minecraft.parrot_spawn_egg", "max_stack": 64, @@ -9230,7 +9266,7 @@ "fireproof": false }, { - "id": 1000, + "id": 1004, "name": "phantom_spawn_egg", "translation_key": "item.minecraft.phantom_spawn_egg", "max_stack": 64, @@ -9239,7 +9275,7 @@ "fireproof": false }, { - "id": 1001, + "id": 1005, "name": "pig_spawn_egg", "translation_key": "item.minecraft.pig_spawn_egg", "max_stack": 64, @@ -9248,7 +9284,7 @@ "fireproof": false }, { - "id": 1002, + "id": 1006, "name": "piglin_spawn_egg", "translation_key": "item.minecraft.piglin_spawn_egg", "max_stack": 64, @@ -9257,7 +9293,7 @@ "fireproof": false }, { - "id": 1003, + "id": 1007, "name": "piglin_brute_spawn_egg", "translation_key": "item.minecraft.piglin_brute_spawn_egg", "max_stack": 64, @@ -9266,7 +9302,7 @@ "fireproof": false }, { - "id": 1004, + "id": 1008, "name": "pillager_spawn_egg", "translation_key": "item.minecraft.pillager_spawn_egg", "max_stack": 64, @@ -9275,7 +9311,7 @@ "fireproof": false }, { - "id": 1005, + "id": 1009, "name": "polar_bear_spawn_egg", "translation_key": "item.minecraft.polar_bear_spawn_egg", "max_stack": 64, @@ -9284,7 +9320,7 @@ "fireproof": false }, { - "id": 1006, + "id": 1010, "name": "pufferfish_spawn_egg", "translation_key": "item.minecraft.pufferfish_spawn_egg", "max_stack": 64, @@ -9293,7 +9329,7 @@ "fireproof": false }, { - "id": 1007, + "id": 1011, "name": "rabbit_spawn_egg", "translation_key": "item.minecraft.rabbit_spawn_egg", "max_stack": 64, @@ -9302,7 +9338,7 @@ "fireproof": false }, { - "id": 1008, + "id": 1012, "name": "ravager_spawn_egg", "translation_key": "item.minecraft.ravager_spawn_egg", "max_stack": 64, @@ -9311,7 +9347,7 @@ "fireproof": false }, { - "id": 1009, + "id": 1013, "name": "salmon_spawn_egg", "translation_key": "item.minecraft.salmon_spawn_egg", "max_stack": 64, @@ -9320,7 +9356,7 @@ "fireproof": false }, { - "id": 1010, + "id": 1014, "name": "sheep_spawn_egg", "translation_key": "item.minecraft.sheep_spawn_egg", "max_stack": 64, @@ -9329,7 +9365,7 @@ "fireproof": false }, { - "id": 1011, + "id": 1015, "name": "shulker_spawn_egg", "translation_key": "item.minecraft.shulker_spawn_egg", "max_stack": 64, @@ -9338,7 +9374,7 @@ "fireproof": false }, { - "id": 1012, + "id": 1016, "name": "silverfish_spawn_egg", "translation_key": "item.minecraft.silverfish_spawn_egg", "max_stack": 64, @@ -9347,7 +9383,7 @@ "fireproof": false }, { - "id": 1013, + "id": 1017, "name": "skeleton_spawn_egg", "translation_key": "item.minecraft.skeleton_spawn_egg", "max_stack": 64, @@ -9356,7 +9392,7 @@ "fireproof": false }, { - "id": 1014, + "id": 1018, "name": "skeleton_horse_spawn_egg", "translation_key": "item.minecraft.skeleton_horse_spawn_egg", "max_stack": 64, @@ -9365,7 +9401,7 @@ "fireproof": false }, { - "id": 1015, + "id": 1019, "name": "slime_spawn_egg", "translation_key": "item.minecraft.slime_spawn_egg", "max_stack": 64, @@ -9374,7 +9410,7 @@ "fireproof": false }, { - "id": 1016, + "id": 1020, "name": "sniffer_spawn_egg", "translation_key": "item.minecraft.sniffer_spawn_egg", "max_stack": 64, @@ -9383,7 +9419,7 @@ "fireproof": false }, { - "id": 1017, + "id": 1021, "name": "snow_golem_spawn_egg", "translation_key": "item.minecraft.snow_golem_spawn_egg", "max_stack": 64, @@ -9392,7 +9428,7 @@ "fireproof": false }, { - "id": 1018, + "id": 1022, "name": "spider_spawn_egg", "translation_key": "item.minecraft.spider_spawn_egg", "max_stack": 64, @@ -9401,7 +9437,7 @@ "fireproof": false }, { - "id": 1019, + "id": 1023, "name": "squid_spawn_egg", "translation_key": "item.minecraft.squid_spawn_egg", "max_stack": 64, @@ -9410,7 +9446,7 @@ "fireproof": false }, { - "id": 1020, + "id": 1024, "name": "stray_spawn_egg", "translation_key": "item.minecraft.stray_spawn_egg", "max_stack": 64, @@ -9419,7 +9455,7 @@ "fireproof": false }, { - "id": 1021, + "id": 1025, "name": "strider_spawn_egg", "translation_key": "item.minecraft.strider_spawn_egg", "max_stack": 64, @@ -9428,7 +9464,7 @@ "fireproof": false }, { - "id": 1022, + "id": 1026, "name": "tadpole_spawn_egg", "translation_key": "item.minecraft.tadpole_spawn_egg", "max_stack": 64, @@ -9437,7 +9473,7 @@ "fireproof": false }, { - "id": 1023, + "id": 1027, "name": "trader_llama_spawn_egg", "translation_key": "item.minecraft.trader_llama_spawn_egg", "max_stack": 64, @@ -9446,7 +9482,7 @@ "fireproof": false }, { - "id": 1024, + "id": 1028, "name": "tropical_fish_spawn_egg", "translation_key": "item.minecraft.tropical_fish_spawn_egg", "max_stack": 64, @@ -9455,7 +9491,7 @@ "fireproof": false }, { - "id": 1025, + "id": 1029, "name": "turtle_spawn_egg", "translation_key": "item.minecraft.turtle_spawn_egg", "max_stack": 64, @@ -9464,7 +9500,7 @@ "fireproof": false }, { - "id": 1026, + "id": 1030, "name": "vex_spawn_egg", "translation_key": "item.minecraft.vex_spawn_egg", "max_stack": 64, @@ -9473,7 +9509,7 @@ "fireproof": false }, { - "id": 1027, + "id": 1031, "name": "villager_spawn_egg", "translation_key": "item.minecraft.villager_spawn_egg", "max_stack": 64, @@ -9482,7 +9518,7 @@ "fireproof": false }, { - "id": 1028, + "id": 1032, "name": "vindicator_spawn_egg", "translation_key": "item.minecraft.vindicator_spawn_egg", "max_stack": 64, @@ -9491,7 +9527,7 @@ "fireproof": false }, { - "id": 1029, + "id": 1033, "name": "wandering_trader_spawn_egg", "translation_key": "item.minecraft.wandering_trader_spawn_egg", "max_stack": 64, @@ -9500,7 +9536,7 @@ "fireproof": false }, { - "id": 1030, + "id": 1034, "name": "warden_spawn_egg", "translation_key": "item.minecraft.warden_spawn_egg", "max_stack": 64, @@ -9509,7 +9545,7 @@ "fireproof": false }, { - "id": 1031, + "id": 1035, "name": "witch_spawn_egg", "translation_key": "item.minecraft.witch_spawn_egg", "max_stack": 64, @@ -9518,7 +9554,7 @@ "fireproof": false }, { - "id": 1032, + "id": 1036, "name": "wither_spawn_egg", "translation_key": "item.minecraft.wither_spawn_egg", "max_stack": 64, @@ -9527,7 +9563,7 @@ "fireproof": false }, { - "id": 1033, + "id": 1037, "name": "wither_skeleton_spawn_egg", "translation_key": "item.minecraft.wither_skeleton_spawn_egg", "max_stack": 64, @@ -9536,7 +9572,7 @@ "fireproof": false }, { - "id": 1034, + "id": 1038, "name": "wolf_spawn_egg", "translation_key": "item.minecraft.wolf_spawn_egg", "max_stack": 64, @@ -9545,7 +9581,7 @@ "fireproof": false }, { - "id": 1035, + "id": 1039, "name": "zoglin_spawn_egg", "translation_key": "item.minecraft.zoglin_spawn_egg", "max_stack": 64, @@ -9554,7 +9590,7 @@ "fireproof": false }, { - "id": 1036, + "id": 1040, "name": "zombie_spawn_egg", "translation_key": "item.minecraft.zombie_spawn_egg", "max_stack": 64, @@ -9563,7 +9599,7 @@ "fireproof": false }, { - "id": 1037, + "id": 1041, "name": "zombie_horse_spawn_egg", "translation_key": "item.minecraft.zombie_horse_spawn_egg", "max_stack": 64, @@ -9572,7 +9608,7 @@ "fireproof": false }, { - "id": 1038, + "id": 1042, "name": "zombie_villager_spawn_egg", "translation_key": "item.minecraft.zombie_villager_spawn_egg", "max_stack": 64, @@ -9581,7 +9617,7 @@ "fireproof": false }, { - "id": 1039, + "id": 1043, "name": "zombified_piglin_spawn_egg", "translation_key": "item.minecraft.zombified_piglin_spawn_egg", "max_stack": 64, @@ -9590,7 +9626,7 @@ "fireproof": false }, { - "id": 1040, + "id": 1044, "name": "experience_bottle", "translation_key": "item.minecraft.experience_bottle", "max_stack": 64, @@ -9599,7 +9635,7 @@ "fireproof": false }, { - "id": 1041, + "id": 1045, "name": "fire_charge", "translation_key": "item.minecraft.fire_charge", "max_stack": 64, @@ -9608,7 +9644,7 @@ "fireproof": false }, { - "id": 1042, + "id": 1046, "name": "writable_book", "translation_key": "item.minecraft.writable_book", "max_stack": 1, @@ -9617,7 +9653,7 @@ "fireproof": false }, { - "id": 1043, + "id": 1047, "name": "written_book", "translation_key": "item.minecraft.written_book", "max_stack": 16, @@ -9626,7 +9662,7 @@ "fireproof": false }, { - "id": 1044, + "id": 1048, "name": "item_frame", "translation_key": "item.minecraft.item_frame", "max_stack": 64, @@ -9635,7 +9671,7 @@ "fireproof": false }, { - "id": 1045, + "id": 1049, "name": "glow_item_frame", "translation_key": "item.minecraft.glow_item_frame", "max_stack": 64, @@ -9644,7 +9680,7 @@ "fireproof": false }, { - "id": 1046, + "id": 1050, "name": "flower_pot", "translation_key": "block.minecraft.flower_pot", "max_stack": 64, @@ -9653,7 +9689,7 @@ "fireproof": false }, { - "id": 1047, + "id": 1051, "name": "carrot", "translation_key": "item.minecraft.carrot", "max_stack": 64, @@ -9670,7 +9706,7 @@ } }, { - "id": 1048, + "id": 1052, "name": "potato", "translation_key": "item.minecraft.potato", "max_stack": 64, @@ -9687,7 +9723,7 @@ } }, { - "id": 1049, + "id": 1053, "name": "baked_potato", "translation_key": "item.minecraft.baked_potato", "max_stack": 64, @@ -9704,7 +9740,7 @@ } }, { - "id": 1050, + "id": 1054, "name": "poisonous_potato", "translation_key": "item.minecraft.poisonous_potato", "max_stack": 64, @@ -9726,7 +9762,7 @@ } }, { - "id": 1051, + "id": 1055, "name": "map", "translation_key": "item.minecraft.map", "max_stack": 64, @@ -9735,7 +9771,7 @@ "fireproof": false }, { - "id": 1052, + "id": 1056, "name": "golden_carrot", "translation_key": "item.minecraft.golden_carrot", "max_stack": 64, @@ -9752,7 +9788,7 @@ } }, { - "id": 1053, + "id": 1057, "name": "skeleton_skull", "translation_key": "block.minecraft.skeleton_skull", "max_stack": 64, @@ -9761,7 +9797,7 @@ "fireproof": false }, { - "id": 1054, + "id": 1058, "name": "wither_skeleton_skull", "translation_key": "block.minecraft.wither_skeleton_skull", "max_stack": 64, @@ -9770,7 +9806,7 @@ "fireproof": false }, { - "id": 1055, + "id": 1059, "name": "player_head", "translation_key": "block.minecraft.player_head", "max_stack": 64, @@ -9779,7 +9815,7 @@ "fireproof": false }, { - "id": 1056, + "id": 1060, "name": "zombie_head", "translation_key": "block.minecraft.zombie_head", "max_stack": 64, @@ -9788,7 +9824,7 @@ "fireproof": false }, { - "id": 1057, + "id": 1061, "name": "creeper_head", "translation_key": "block.minecraft.creeper_head", "max_stack": 64, @@ -9797,7 +9833,7 @@ "fireproof": false }, { - "id": 1058, + "id": 1062, "name": "dragon_head", "translation_key": "block.minecraft.dragon_head", "max_stack": 64, @@ -9806,7 +9842,7 @@ "fireproof": false }, { - "id": 1059, + "id": 1063, "name": "piglin_head", "translation_key": "block.minecraft.piglin_head", "max_stack": 64, @@ -9815,7 +9851,7 @@ "fireproof": false }, { - "id": 1060, + "id": 1064, "name": "nether_star", "translation_key": "item.minecraft.nether_star", "max_stack": 64, @@ -9824,7 +9860,7 @@ "fireproof": false }, { - "id": 1061, + "id": 1065, "name": "pumpkin_pie", "translation_key": "item.minecraft.pumpkin_pie", "max_stack": 64, @@ -9841,7 +9877,7 @@ } }, { - "id": 1062, + "id": 1066, "name": "firework_rocket", "translation_key": "item.minecraft.firework_rocket", "max_stack": 64, @@ -9850,7 +9886,7 @@ "fireproof": false }, { - "id": 1063, + "id": 1067, "name": "firework_star", "translation_key": "item.minecraft.firework_star", "max_stack": 64, @@ -9859,7 +9895,7 @@ "fireproof": false }, { - "id": 1064, + "id": 1068, "name": "enchanted_book", "translation_key": "item.minecraft.enchanted_book", "max_stack": 1, @@ -9868,7 +9904,7 @@ "fireproof": false }, { - "id": 1065, + "id": 1069, "name": "nether_brick", "translation_key": "item.minecraft.nether_brick", "max_stack": 64, @@ -9877,7 +9913,7 @@ "fireproof": false }, { - "id": 1066, + "id": 1070, "name": "prismarine_shard", "translation_key": "item.minecraft.prismarine_shard", "max_stack": 64, @@ -9886,7 +9922,7 @@ "fireproof": false }, { - "id": 1067, + "id": 1071, "name": "prismarine_crystals", "translation_key": "item.minecraft.prismarine_crystals", "max_stack": 64, @@ -9895,7 +9931,7 @@ "fireproof": false }, { - "id": 1068, + "id": 1072, "name": "rabbit", "translation_key": "item.minecraft.rabbit", "max_stack": 64, @@ -9912,7 +9948,7 @@ } }, { - "id": 1069, + "id": 1073, "name": "cooked_rabbit", "translation_key": "item.minecraft.cooked_rabbit", "max_stack": 64, @@ -9929,7 +9965,7 @@ } }, { - "id": 1070, + "id": 1074, "name": "rabbit_stew", "translation_key": "item.minecraft.rabbit_stew", "max_stack": 1, @@ -9946,7 +9982,7 @@ } }, { - "id": 1071, + "id": 1075, "name": "rabbit_foot", "translation_key": "item.minecraft.rabbit_foot", "max_stack": 64, @@ -9955,7 +9991,7 @@ "fireproof": false }, { - "id": 1072, + "id": 1076, "name": "rabbit_hide", "translation_key": "item.minecraft.rabbit_hide", "max_stack": 64, @@ -9964,7 +10000,7 @@ "fireproof": false }, { - "id": 1073, + "id": 1077, "name": "armor_stand", "translation_key": "item.minecraft.armor_stand", "max_stack": 16, @@ -9973,7 +10009,7 @@ "fireproof": false }, { - "id": 1074, + "id": 1078, "name": "iron_horse_armor", "translation_key": "item.minecraft.iron_horse_armor", "max_stack": 1, @@ -9982,7 +10018,7 @@ "fireproof": false }, { - "id": 1075, + "id": 1079, "name": "golden_horse_armor", "translation_key": "item.minecraft.golden_horse_armor", "max_stack": 1, @@ -9991,7 +10027,7 @@ "fireproof": false }, { - "id": 1076, + "id": 1080, "name": "diamond_horse_armor", "translation_key": "item.minecraft.diamond_horse_armor", "max_stack": 1, @@ -10000,7 +10036,7 @@ "fireproof": false }, { - "id": 1077, + "id": 1081, "name": "leather_horse_armor", "translation_key": "item.minecraft.leather_horse_armor", "max_stack": 1, @@ -10009,7 +10045,7 @@ "fireproof": false }, { - "id": 1078, + "id": 1082, "name": "lead", "translation_key": "item.minecraft.lead", "max_stack": 64, @@ -10018,7 +10054,7 @@ "fireproof": false }, { - "id": 1079, + "id": 1083, "name": "name_tag", "translation_key": "item.minecraft.name_tag", "max_stack": 64, @@ -10027,7 +10063,7 @@ "fireproof": false }, { - "id": 1080, + "id": 1084, "name": "command_block_minecart", "translation_key": "item.minecraft.command_block_minecart", "max_stack": 1, @@ -10036,7 +10072,7 @@ "fireproof": false }, { - "id": 1081, + "id": 1085, "name": "mutton", "translation_key": "item.minecraft.mutton", "max_stack": 64, @@ -10053,7 +10089,7 @@ } }, { - "id": 1082, + "id": 1086, "name": "cooked_mutton", "translation_key": "item.minecraft.cooked_mutton", "max_stack": 64, @@ -10070,7 +10106,7 @@ } }, { - "id": 1083, + "id": 1087, "name": "white_banner", "translation_key": "block.minecraft.white_banner", "max_stack": 16, @@ -10079,7 +10115,7 @@ "fireproof": false }, { - "id": 1084, + "id": 1088, "name": "orange_banner", "translation_key": "block.minecraft.orange_banner", "max_stack": 16, @@ -10088,7 +10124,7 @@ "fireproof": false }, { - "id": 1085, + "id": 1089, "name": "magenta_banner", "translation_key": "block.minecraft.magenta_banner", "max_stack": 16, @@ -10097,7 +10133,7 @@ "fireproof": false }, { - "id": 1086, + "id": 1090, "name": "light_blue_banner", "translation_key": "block.minecraft.light_blue_banner", "max_stack": 16, @@ -10106,7 +10142,7 @@ "fireproof": false }, { - "id": 1087, + "id": 1091, "name": "yellow_banner", "translation_key": "block.minecraft.yellow_banner", "max_stack": 16, @@ -10115,7 +10151,7 @@ "fireproof": false }, { - "id": 1088, + "id": 1092, "name": "lime_banner", "translation_key": "block.minecraft.lime_banner", "max_stack": 16, @@ -10124,7 +10160,7 @@ "fireproof": false }, { - "id": 1089, + "id": 1093, "name": "pink_banner", "translation_key": "block.minecraft.pink_banner", "max_stack": 16, @@ -10133,7 +10169,7 @@ "fireproof": false }, { - "id": 1090, + "id": 1094, "name": "gray_banner", "translation_key": "block.minecraft.gray_banner", "max_stack": 16, @@ -10142,7 +10178,7 @@ "fireproof": false }, { - "id": 1091, + "id": 1095, "name": "light_gray_banner", "translation_key": "block.minecraft.light_gray_banner", "max_stack": 16, @@ -10151,7 +10187,7 @@ "fireproof": false }, { - "id": 1092, + "id": 1096, "name": "cyan_banner", "translation_key": "block.minecraft.cyan_banner", "max_stack": 16, @@ -10160,7 +10196,7 @@ "fireproof": false }, { - "id": 1093, + "id": 1097, "name": "purple_banner", "translation_key": "block.minecraft.purple_banner", "max_stack": 16, @@ -10169,7 +10205,7 @@ "fireproof": false }, { - "id": 1094, + "id": 1098, "name": "blue_banner", "translation_key": "block.minecraft.blue_banner", "max_stack": 16, @@ -10178,7 +10214,7 @@ "fireproof": false }, { - "id": 1095, + "id": 1099, "name": "brown_banner", "translation_key": "block.minecraft.brown_banner", "max_stack": 16, @@ -10187,7 +10223,7 @@ "fireproof": false }, { - "id": 1096, + "id": 1100, "name": "green_banner", "translation_key": "block.minecraft.green_banner", "max_stack": 16, @@ -10196,7 +10232,7 @@ "fireproof": false }, { - "id": 1097, + "id": 1101, "name": "red_banner", "translation_key": "block.minecraft.red_banner", "max_stack": 16, @@ -10205,7 +10241,7 @@ "fireproof": false }, { - "id": 1098, + "id": 1102, "name": "black_banner", "translation_key": "block.minecraft.black_banner", "max_stack": 16, @@ -10214,7 +10250,7 @@ "fireproof": false }, { - "id": 1099, + "id": 1103, "name": "end_crystal", "translation_key": "item.minecraft.end_crystal", "max_stack": 64, @@ -10223,7 +10259,7 @@ "fireproof": false }, { - "id": 1100, + "id": 1104, "name": "chorus_fruit", "translation_key": "item.minecraft.chorus_fruit", "max_stack": 64, @@ -10240,7 +10276,7 @@ } }, { - "id": 1101, + "id": 1105, "name": "popped_chorus_fruit", "translation_key": "item.minecraft.popped_chorus_fruit", "max_stack": 64, @@ -10249,7 +10285,7 @@ "fireproof": false }, { - "id": 1102, + "id": 1106, "name": "torchflower_seeds", "translation_key": "item.minecraft.torchflower_seeds", "max_stack": 64, @@ -10258,7 +10294,16 @@ "fireproof": false }, { - "id": 1103, + "id": 1107, + "name": "pitcher_pod", + "translation_key": "item.minecraft.pitcher_pod", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1108, "name": "beetroot", "translation_key": "item.minecraft.beetroot", "max_stack": 64, @@ -10275,7 +10320,7 @@ } }, { - "id": 1104, + "id": 1109, "name": "beetroot_seeds", "translation_key": "item.minecraft.beetroot_seeds", "max_stack": 64, @@ -10284,7 +10329,7 @@ "fireproof": false }, { - "id": 1105, + "id": 1110, "name": "beetroot_soup", "translation_key": "item.minecraft.beetroot_soup", "max_stack": 1, @@ -10301,7 +10346,7 @@ } }, { - "id": 1106, + "id": 1111, "name": "dragon_breath", "translation_key": "item.minecraft.dragon_breath", "max_stack": 64, @@ -10310,7 +10355,7 @@ "fireproof": false }, { - "id": 1107, + "id": 1112, "name": "splash_potion", "translation_key": "item.minecraft.splash_potion", "max_stack": 1, @@ -10319,7 +10364,7 @@ "fireproof": false }, { - "id": 1108, + "id": 1113, "name": "spectral_arrow", "translation_key": "item.minecraft.spectral_arrow", "max_stack": 64, @@ -10328,7 +10373,7 @@ "fireproof": false }, { - "id": 1109, + "id": 1114, "name": "tipped_arrow", "translation_key": "item.minecraft.tipped_arrow", "max_stack": 64, @@ -10337,7 +10382,7 @@ "fireproof": false }, { - "id": 1110, + "id": 1115, "name": "lingering_potion", "translation_key": "item.minecraft.lingering_potion", "max_stack": 1, @@ -10346,7 +10391,7 @@ "fireproof": false }, { - "id": 1111, + "id": 1116, "name": "shield", "translation_key": "item.minecraft.shield", "max_stack": 1, @@ -10355,7 +10400,7 @@ "fireproof": false }, { - "id": 1112, + "id": 1117, "name": "totem_of_undying", "translation_key": "item.minecraft.totem_of_undying", "max_stack": 1, @@ -10364,7 +10409,7 @@ "fireproof": false }, { - "id": 1113, + "id": 1118, "name": "shulker_shell", "translation_key": "item.minecraft.shulker_shell", "max_stack": 64, @@ -10373,7 +10418,7 @@ "fireproof": false }, { - "id": 1114, + "id": 1119, "name": "iron_nugget", "translation_key": "item.minecraft.iron_nugget", "max_stack": 64, @@ -10382,7 +10427,7 @@ "fireproof": false }, { - "id": 1115, + "id": 1120, "name": "knowledge_book", "translation_key": "item.minecraft.knowledge_book", "max_stack": 1, @@ -10391,7 +10436,7 @@ "fireproof": false }, { - "id": 1116, + "id": 1121, "name": "debug_stick", "translation_key": "item.minecraft.debug_stick", "max_stack": 1, @@ -10400,7 +10445,7 @@ "fireproof": false }, { - "id": 1117, + "id": 1122, "name": "music_disc_13", "translation_key": "item.minecraft.music_disc_13", "max_stack": 1, @@ -10409,7 +10454,7 @@ "fireproof": false }, { - "id": 1118, + "id": 1123, "name": "music_disc_cat", "translation_key": "item.minecraft.music_disc_cat", "max_stack": 1, @@ -10418,7 +10463,7 @@ "fireproof": false }, { - "id": 1119, + "id": 1124, "name": "music_disc_blocks", "translation_key": "item.minecraft.music_disc_blocks", "max_stack": 1, @@ -10427,7 +10472,7 @@ "fireproof": false }, { - "id": 1120, + "id": 1125, "name": "music_disc_chirp", "translation_key": "item.minecraft.music_disc_chirp", "max_stack": 1, @@ -10436,7 +10481,7 @@ "fireproof": false }, { - "id": 1121, + "id": 1126, "name": "music_disc_far", "translation_key": "item.minecraft.music_disc_far", "max_stack": 1, @@ -10445,7 +10490,7 @@ "fireproof": false }, { - "id": 1122, + "id": 1127, "name": "music_disc_mall", "translation_key": "item.minecraft.music_disc_mall", "max_stack": 1, @@ -10454,7 +10499,7 @@ "fireproof": false }, { - "id": 1123, + "id": 1128, "name": "music_disc_mellohi", "translation_key": "item.minecraft.music_disc_mellohi", "max_stack": 1, @@ -10463,7 +10508,7 @@ "fireproof": false }, { - "id": 1124, + "id": 1129, "name": "music_disc_stal", "translation_key": "item.minecraft.music_disc_stal", "max_stack": 1, @@ -10472,7 +10517,7 @@ "fireproof": false }, { - "id": 1125, + "id": 1130, "name": "music_disc_strad", "translation_key": "item.minecraft.music_disc_strad", "max_stack": 1, @@ -10481,7 +10526,7 @@ "fireproof": false }, { - "id": 1126, + "id": 1131, "name": "music_disc_ward", "translation_key": "item.minecraft.music_disc_ward", "max_stack": 1, @@ -10490,7 +10535,7 @@ "fireproof": false }, { - "id": 1127, + "id": 1132, "name": "music_disc_11", "translation_key": "item.minecraft.music_disc_11", "max_stack": 1, @@ -10499,7 +10544,7 @@ "fireproof": false }, { - "id": 1128, + "id": 1133, "name": "music_disc_wait", "translation_key": "item.minecraft.music_disc_wait", "max_stack": 1, @@ -10508,7 +10553,7 @@ "fireproof": false }, { - "id": 1129, + "id": 1134, "name": "music_disc_otherside", "translation_key": "item.minecraft.music_disc_otherside", "max_stack": 1, @@ -10517,7 +10562,16 @@ "fireproof": false }, { - "id": 1130, + "id": 1135, + "name": "music_disc_relic", + "translation_key": "item.minecraft.music_disc_relic", + "max_stack": 1, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1136, "name": "music_disc_5", "translation_key": "item.minecraft.music_disc_5", "max_stack": 1, @@ -10526,7 +10580,7 @@ "fireproof": false }, { - "id": 1131, + "id": 1137, "name": "music_disc_pigstep", "translation_key": "item.minecraft.music_disc_pigstep", "max_stack": 1, @@ -10535,7 +10589,7 @@ "fireproof": false }, { - "id": 1132, + "id": 1138, "name": "disc_fragment_5", "translation_key": "item.minecraft.disc_fragment_5", "max_stack": 64, @@ -10544,7 +10598,7 @@ "fireproof": false }, { - "id": 1133, + "id": 1139, "name": "trident", "translation_key": "item.minecraft.trident", "max_stack": 1, @@ -10553,7 +10607,7 @@ "fireproof": false }, { - "id": 1134, + "id": 1140, "name": "phantom_membrane", "translation_key": "item.minecraft.phantom_membrane", "max_stack": 64, @@ -10562,7 +10616,7 @@ "fireproof": false }, { - "id": 1135, + "id": 1141, "name": "nautilus_shell", "translation_key": "item.minecraft.nautilus_shell", "max_stack": 64, @@ -10571,7 +10625,7 @@ "fireproof": false }, { - "id": 1136, + "id": 1142, "name": "heart_of_the_sea", "translation_key": "item.minecraft.heart_of_the_sea", "max_stack": 64, @@ -10580,7 +10634,7 @@ "fireproof": false }, { - "id": 1137, + "id": 1143, "name": "crossbow", "translation_key": "item.minecraft.crossbow", "max_stack": 1, @@ -10589,7 +10643,7 @@ "fireproof": false }, { - "id": 1138, + "id": 1144, "name": "suspicious_stew", "translation_key": "item.minecraft.suspicious_stew", "max_stack": 1, @@ -10606,7 +10660,7 @@ } }, { - "id": 1139, + "id": 1145, "name": "loom", "translation_key": "block.minecraft.loom", "max_stack": 64, @@ -10615,7 +10669,7 @@ "fireproof": false }, { - "id": 1140, + "id": 1146, "name": "flower_banner_pattern", "translation_key": "item.minecraft.flower_banner_pattern", "max_stack": 1, @@ -10624,7 +10678,7 @@ "fireproof": false }, { - "id": 1141, + "id": 1147, "name": "creeper_banner_pattern", "translation_key": "item.minecraft.creeper_banner_pattern", "max_stack": 1, @@ -10633,7 +10687,7 @@ "fireproof": false }, { - "id": 1142, + "id": 1148, "name": "skull_banner_pattern", "translation_key": "item.minecraft.skull_banner_pattern", "max_stack": 1, @@ -10642,7 +10696,7 @@ "fireproof": false }, { - "id": 1143, + "id": 1149, "name": "mojang_banner_pattern", "translation_key": "item.minecraft.mojang_banner_pattern", "max_stack": 1, @@ -10651,7 +10705,7 @@ "fireproof": false }, { - "id": 1144, + "id": 1150, "name": "globe_banner_pattern", "translation_key": "item.minecraft.globe_banner_pattern", "max_stack": 1, @@ -10660,7 +10714,7 @@ "fireproof": false }, { - "id": 1145, + "id": 1151, "name": "piglin_banner_pattern", "translation_key": "item.minecraft.piglin_banner_pattern", "max_stack": 1, @@ -10669,7 +10723,7 @@ "fireproof": false }, { - "id": 1146, + "id": 1152, "name": "goat_horn", "translation_key": "item.minecraft.goat_horn", "max_stack": 1, @@ -10678,7 +10732,7 @@ "fireproof": false }, { - "id": 1147, + "id": 1153, "name": "composter", "translation_key": "block.minecraft.composter", "max_stack": 64, @@ -10687,7 +10741,7 @@ "fireproof": false }, { - "id": 1148, + "id": 1154, "name": "barrel", "translation_key": "block.minecraft.barrel", "max_stack": 64, @@ -10696,7 +10750,7 @@ "fireproof": false }, { - "id": 1149, + "id": 1155, "name": "smoker", "translation_key": "block.minecraft.smoker", "max_stack": 64, @@ -10705,7 +10759,7 @@ "fireproof": false }, { - "id": 1150, + "id": 1156, "name": "blast_furnace", "translation_key": "block.minecraft.blast_furnace", "max_stack": 64, @@ -10714,7 +10768,7 @@ "fireproof": false }, { - "id": 1151, + "id": 1157, "name": "cartography_table", "translation_key": "block.minecraft.cartography_table", "max_stack": 64, @@ -10723,7 +10777,7 @@ "fireproof": false }, { - "id": 1152, + "id": 1158, "name": "fletching_table", "translation_key": "block.minecraft.fletching_table", "max_stack": 64, @@ -10732,7 +10786,7 @@ "fireproof": false }, { - "id": 1153, + "id": 1159, "name": "grindstone", "translation_key": "block.minecraft.grindstone", "max_stack": 64, @@ -10741,7 +10795,7 @@ "fireproof": false }, { - "id": 1154, + "id": 1160, "name": "smithing_table", "translation_key": "block.minecraft.smithing_table", "max_stack": 64, @@ -10750,7 +10804,7 @@ "fireproof": false }, { - "id": 1155, + "id": 1161, "name": "stonecutter", "translation_key": "block.minecraft.stonecutter", "max_stack": 64, @@ -10759,7 +10813,7 @@ "fireproof": false }, { - "id": 1156, + "id": 1162, "name": "bell", "translation_key": "block.minecraft.bell", "max_stack": 64, @@ -10768,7 +10822,7 @@ "fireproof": false }, { - "id": 1157, + "id": 1163, "name": "lantern", "translation_key": "block.minecraft.lantern", "max_stack": 64, @@ -10777,7 +10831,7 @@ "fireproof": false }, { - "id": 1158, + "id": 1164, "name": "soul_lantern", "translation_key": "block.minecraft.soul_lantern", "max_stack": 64, @@ -10786,7 +10840,7 @@ "fireproof": false }, { - "id": 1159, + "id": 1165, "name": "sweet_berries", "translation_key": "item.minecraft.sweet_berries", "max_stack": 64, @@ -10803,7 +10857,7 @@ } }, { - "id": 1160, + "id": 1166, "name": "glow_berries", "translation_key": "item.minecraft.glow_berries", "max_stack": 64, @@ -10820,7 +10874,7 @@ } }, { - "id": 1161, + "id": 1167, "name": "campfire", "translation_key": "block.minecraft.campfire", "max_stack": 64, @@ -10829,7 +10883,7 @@ "fireproof": false }, { - "id": 1162, + "id": 1168, "name": "soul_campfire", "translation_key": "block.minecraft.soul_campfire", "max_stack": 64, @@ -10838,7 +10892,7 @@ "fireproof": false }, { - "id": 1163, + "id": 1169, "name": "shroomlight", "translation_key": "block.minecraft.shroomlight", "max_stack": 64, @@ -10847,7 +10901,7 @@ "fireproof": false }, { - "id": 1164, + "id": 1170, "name": "honeycomb", "translation_key": "item.minecraft.honeycomb", "max_stack": 64, @@ -10856,7 +10910,7 @@ "fireproof": false }, { - "id": 1165, + "id": 1171, "name": "bee_nest", "translation_key": "block.minecraft.bee_nest", "max_stack": 64, @@ -10865,7 +10919,7 @@ "fireproof": false }, { - "id": 1166, + "id": 1172, "name": "beehive", "translation_key": "block.minecraft.beehive", "max_stack": 64, @@ -10874,7 +10928,7 @@ "fireproof": false }, { - "id": 1167, + "id": 1173, "name": "honey_bottle", "translation_key": "item.minecraft.honey_bottle", "max_stack": 16, @@ -10891,7 +10945,7 @@ } }, { - "id": 1168, + "id": 1174, "name": "honeycomb_block", "translation_key": "block.minecraft.honeycomb_block", "max_stack": 64, @@ -10900,7 +10954,7 @@ "fireproof": false }, { - "id": 1169, + "id": 1175, "name": "lodestone", "translation_key": "block.minecraft.lodestone", "max_stack": 64, @@ -10909,7 +10963,7 @@ "fireproof": false }, { - "id": 1170, + "id": 1176, "name": "crying_obsidian", "translation_key": "block.minecraft.crying_obsidian", "max_stack": 64, @@ -10918,7 +10972,7 @@ "fireproof": false }, { - "id": 1171, + "id": 1177, "name": "blackstone", "translation_key": "block.minecraft.blackstone", "max_stack": 64, @@ -10927,7 +10981,7 @@ "fireproof": false }, { - "id": 1172, + "id": 1178, "name": "blackstone_slab", "translation_key": "block.minecraft.blackstone_slab", "max_stack": 64, @@ -10936,7 +10990,7 @@ "fireproof": false }, { - "id": 1173, + "id": 1179, "name": "blackstone_stairs", "translation_key": "block.minecraft.blackstone_stairs", "max_stack": 64, @@ -10945,7 +10999,7 @@ "fireproof": false }, { - "id": 1174, + "id": 1180, "name": "gilded_blackstone", "translation_key": "block.minecraft.gilded_blackstone", "max_stack": 64, @@ -10954,7 +11008,7 @@ "fireproof": false }, { - "id": 1175, + "id": 1181, "name": "polished_blackstone", "translation_key": "block.minecraft.polished_blackstone", "max_stack": 64, @@ -10963,7 +11017,7 @@ "fireproof": false }, { - "id": 1176, + "id": 1182, "name": "polished_blackstone_slab", "translation_key": "block.minecraft.polished_blackstone_slab", "max_stack": 64, @@ -10972,7 +11026,7 @@ "fireproof": false }, { - "id": 1177, + "id": 1183, "name": "polished_blackstone_stairs", "translation_key": "block.minecraft.polished_blackstone_stairs", "max_stack": 64, @@ -10981,7 +11035,7 @@ "fireproof": false }, { - "id": 1178, + "id": 1184, "name": "chiseled_polished_blackstone", "translation_key": "block.minecraft.chiseled_polished_blackstone", "max_stack": 64, @@ -10990,7 +11044,7 @@ "fireproof": false }, { - "id": 1179, + "id": 1185, "name": "polished_blackstone_bricks", "translation_key": "block.minecraft.polished_blackstone_bricks", "max_stack": 64, @@ -10999,7 +11053,7 @@ "fireproof": false }, { - "id": 1180, + "id": 1186, "name": "polished_blackstone_brick_slab", "translation_key": "block.minecraft.polished_blackstone_brick_slab", "max_stack": 64, @@ -11008,7 +11062,7 @@ "fireproof": false }, { - "id": 1181, + "id": 1187, "name": "polished_blackstone_brick_stairs", "translation_key": "block.minecraft.polished_blackstone_brick_stairs", "max_stack": 64, @@ -11017,7 +11071,7 @@ "fireproof": false }, { - "id": 1182, + "id": 1188, "name": "cracked_polished_blackstone_bricks", "translation_key": "block.minecraft.cracked_polished_blackstone_bricks", "max_stack": 64, @@ -11026,7 +11080,7 @@ "fireproof": false }, { - "id": 1183, + "id": 1189, "name": "respawn_anchor", "translation_key": "block.minecraft.respawn_anchor", "max_stack": 64, @@ -11035,7 +11089,7 @@ "fireproof": false }, { - "id": 1184, + "id": 1190, "name": "candle", "translation_key": "block.minecraft.candle", "max_stack": 64, @@ -11044,7 +11098,7 @@ "fireproof": false }, { - "id": 1185, + "id": 1191, "name": "white_candle", "translation_key": "block.minecraft.white_candle", "max_stack": 64, @@ -11053,7 +11107,7 @@ "fireproof": false }, { - "id": 1186, + "id": 1192, "name": "orange_candle", "translation_key": "block.minecraft.orange_candle", "max_stack": 64, @@ -11062,7 +11116,7 @@ "fireproof": false }, { - "id": 1187, + "id": 1193, "name": "magenta_candle", "translation_key": "block.minecraft.magenta_candle", "max_stack": 64, @@ -11071,7 +11125,7 @@ "fireproof": false }, { - "id": 1188, + "id": 1194, "name": "light_blue_candle", "translation_key": "block.minecraft.light_blue_candle", "max_stack": 64, @@ -11080,7 +11134,7 @@ "fireproof": false }, { - "id": 1189, + "id": 1195, "name": "yellow_candle", "translation_key": "block.minecraft.yellow_candle", "max_stack": 64, @@ -11089,7 +11143,7 @@ "fireproof": false }, { - "id": 1190, + "id": 1196, "name": "lime_candle", "translation_key": "block.minecraft.lime_candle", "max_stack": 64, @@ -11098,7 +11152,7 @@ "fireproof": false }, { - "id": 1191, + "id": 1197, "name": "pink_candle", "translation_key": "block.minecraft.pink_candle", "max_stack": 64, @@ -11107,7 +11161,7 @@ "fireproof": false }, { - "id": 1192, + "id": 1198, "name": "gray_candle", "translation_key": "block.minecraft.gray_candle", "max_stack": 64, @@ -11116,7 +11170,7 @@ "fireproof": false }, { - "id": 1193, + "id": 1199, "name": "light_gray_candle", "translation_key": "block.minecraft.light_gray_candle", "max_stack": 64, @@ -11125,7 +11179,7 @@ "fireproof": false }, { - "id": 1194, + "id": 1200, "name": "cyan_candle", "translation_key": "block.minecraft.cyan_candle", "max_stack": 64, @@ -11134,7 +11188,7 @@ "fireproof": false }, { - "id": 1195, + "id": 1201, "name": "purple_candle", "translation_key": "block.minecraft.purple_candle", "max_stack": 64, @@ -11143,7 +11197,7 @@ "fireproof": false }, { - "id": 1196, + "id": 1202, "name": "blue_candle", "translation_key": "block.minecraft.blue_candle", "max_stack": 64, @@ -11152,7 +11206,7 @@ "fireproof": false }, { - "id": 1197, + "id": 1203, "name": "brown_candle", "translation_key": "block.minecraft.brown_candle", "max_stack": 64, @@ -11161,7 +11215,7 @@ "fireproof": false }, { - "id": 1198, + "id": 1204, "name": "green_candle", "translation_key": "block.minecraft.green_candle", "max_stack": 64, @@ -11170,7 +11224,7 @@ "fireproof": false }, { - "id": 1199, + "id": 1205, "name": "red_candle", "translation_key": "block.minecraft.red_candle", "max_stack": 64, @@ -11179,7 +11233,7 @@ "fireproof": false }, { - "id": 1200, + "id": 1206, "name": "black_candle", "translation_key": "block.minecraft.black_candle", "max_stack": 64, @@ -11188,7 +11242,7 @@ "fireproof": false }, { - "id": 1201, + "id": 1207, "name": "small_amethyst_bud", "translation_key": "block.minecraft.small_amethyst_bud", "max_stack": 64, @@ -11197,7 +11251,7 @@ "fireproof": false }, { - "id": 1202, + "id": 1208, "name": "medium_amethyst_bud", "translation_key": "block.minecraft.medium_amethyst_bud", "max_stack": 64, @@ -11206,7 +11260,7 @@ "fireproof": false }, { - "id": 1203, + "id": 1209, "name": "large_amethyst_bud", "translation_key": "block.minecraft.large_amethyst_bud", "max_stack": 64, @@ -11215,7 +11269,7 @@ "fireproof": false }, { - "id": 1204, + "id": 1210, "name": "amethyst_cluster", "translation_key": "block.minecraft.amethyst_cluster", "max_stack": 64, @@ -11224,7 +11278,7 @@ "fireproof": false }, { - "id": 1205, + "id": 1211, "name": "pointed_dripstone", "translation_key": "block.minecraft.pointed_dripstone", "max_stack": 64, @@ -11233,7 +11287,7 @@ "fireproof": false }, { - "id": 1206, + "id": 1212, "name": "ochre_froglight", "translation_key": "block.minecraft.ochre_froglight", "max_stack": 64, @@ -11242,7 +11296,7 @@ "fireproof": false }, { - "id": 1207, + "id": 1213, "name": "verdant_froglight", "translation_key": "block.minecraft.verdant_froglight", "max_stack": 64, @@ -11251,7 +11305,7 @@ "fireproof": false }, { - "id": 1208, + "id": 1214, "name": "pearlescent_froglight", "translation_key": "block.minecraft.pearlescent_froglight", "max_stack": 64, @@ -11260,7 +11314,7 @@ "fireproof": false }, { - "id": 1209, + "id": 1215, "name": "frogspawn", "translation_key": "block.minecraft.frogspawn", "max_stack": 64, @@ -11269,7 +11323,7 @@ "fireproof": false }, { - "id": 1210, + "id": 1216, "name": "echo_shard", "translation_key": "item.minecraft.echo_shard", "max_stack": 64, @@ -11278,7 +11332,7 @@ "fireproof": false }, { - "id": 1211, + "id": 1217, "name": "brush", "translation_key": "item.minecraft.brush", "max_stack": 1, @@ -11287,7 +11341,7 @@ "fireproof": false }, { - "id": 1212, + "id": 1218, "name": "netherite_upgrade_smithing_template", "translation_key": "item.minecraft.smithing_template", "max_stack": 64, @@ -11296,7 +11350,7 @@ "fireproof": false }, { - "id": 1213, + "id": 1219, "name": "sentry_armor_trim_smithing_template", "translation_key": "item.minecraft.smithing_template", "max_stack": 64, @@ -11305,7 +11359,7 @@ "fireproof": false }, { - "id": 1214, + "id": 1220, "name": "dune_armor_trim_smithing_template", "translation_key": "item.minecraft.smithing_template", "max_stack": 64, @@ -11314,7 +11368,7 @@ "fireproof": false }, { - "id": 1215, + "id": 1221, "name": "coast_armor_trim_smithing_template", "translation_key": "item.minecraft.smithing_template", "max_stack": 64, @@ -11323,7 +11377,7 @@ "fireproof": false }, { - "id": 1216, + "id": 1222, "name": "wild_armor_trim_smithing_template", "translation_key": "item.minecraft.smithing_template", "max_stack": 64, @@ -11332,7 +11386,7 @@ "fireproof": false }, { - "id": 1217, + "id": 1223, "name": "ward_armor_trim_smithing_template", "translation_key": "item.minecraft.smithing_template", "max_stack": 64, @@ -11341,7 +11395,7 @@ "fireproof": false }, { - "id": 1218, + "id": 1224, "name": "eye_armor_trim_smithing_template", "translation_key": "item.minecraft.smithing_template", "max_stack": 64, @@ -11350,7 +11404,7 @@ "fireproof": false }, { - "id": 1219, + "id": 1225, "name": "vex_armor_trim_smithing_template", "translation_key": "item.minecraft.smithing_template", "max_stack": 64, @@ -11359,7 +11413,7 @@ "fireproof": false }, { - "id": 1220, + "id": 1226, "name": "tide_armor_trim_smithing_template", "translation_key": "item.minecraft.smithing_template", "max_stack": 64, @@ -11368,7 +11422,7 @@ "fireproof": false }, { - "id": 1221, + "id": 1227, "name": "snout_armor_trim_smithing_template", "translation_key": "item.minecraft.smithing_template", "max_stack": 64, @@ -11377,7 +11431,7 @@ "fireproof": false }, { - "id": 1222, + "id": 1228, "name": "rib_armor_trim_smithing_template", "translation_key": "item.minecraft.smithing_template", "max_stack": 64, @@ -11386,7 +11440,7 @@ "fireproof": false }, { - "id": 1223, + "id": 1229, "name": "spire_armor_trim_smithing_template", "translation_key": "item.minecraft.smithing_template", "max_stack": 64, @@ -11395,36 +11449,225 @@ "fireproof": false }, { - "id": 1224, - "name": "pottery_shard_archer", - "translation_key": "item.minecraft.pottery_shard_archer", + "id": 1230, + "name": "wayfinder_armor_trim_smithing_template", + "translation_key": "item.minecraft.smithing_template", "max_stack": 64, "max_durability": 0, "enchantability": 0, "fireproof": false }, { - "id": 1225, - "name": "pottery_shard_prize", - "translation_key": "item.minecraft.pottery_shard_prize", + "id": 1231, + "name": "shaper_armor_trim_smithing_template", + "translation_key": "item.minecraft.smithing_template", "max_stack": 64, "max_durability": 0, "enchantability": 0, "fireproof": false }, { - "id": 1226, - "name": "pottery_shard_arms_up", - "translation_key": "item.minecraft.pottery_shard_arms_up", + "id": 1232, + "name": "silence_armor_trim_smithing_template", + "translation_key": "item.minecraft.smithing_template", "max_stack": 64, "max_durability": 0, "enchantability": 0, "fireproof": false }, { - "id": 1227, - "name": "pottery_shard_skull", - "translation_key": "item.minecraft.pottery_shard_skull", + "id": 1233, + "name": "raiser_armor_trim_smithing_template", + "translation_key": "item.minecraft.smithing_template", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1234, + "name": "host_armor_trim_smithing_template", + "translation_key": "item.minecraft.smithing_template", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1235, + "name": "angler_pottery_sherd", + "translation_key": "item.minecraft.angler_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1236, + "name": "archer_pottery_sherd", + "translation_key": "item.minecraft.archer_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1237, + "name": "arms_up_pottery_sherd", + "translation_key": "item.minecraft.arms_up_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1238, + "name": "blade_pottery_sherd", + "translation_key": "item.minecraft.blade_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1239, + "name": "brewer_pottery_sherd", + "translation_key": "item.minecraft.brewer_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1240, + "name": "burn_pottery_sherd", + "translation_key": "item.minecraft.burn_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1241, + "name": "danger_pottery_sherd", + "translation_key": "item.minecraft.danger_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1242, + "name": "explorer_pottery_sherd", + "translation_key": "item.minecraft.explorer_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1243, + "name": "friend_pottery_sherd", + "translation_key": "item.minecraft.friend_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1244, + "name": "heart_pottery_sherd", + "translation_key": "item.minecraft.heart_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1245, + "name": "heartbreak_pottery_sherd", + "translation_key": "item.minecraft.heartbreak_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1246, + "name": "howl_pottery_sherd", + "translation_key": "item.minecraft.howl_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1247, + "name": "miner_pottery_sherd", + "translation_key": "item.minecraft.miner_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1248, + "name": "mourner_pottery_sherd", + "translation_key": "item.minecraft.mourner_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1249, + "name": "plenty_pottery_sherd", + "translation_key": "item.minecraft.plenty_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1250, + "name": "prize_pottery_sherd", + "translation_key": "item.minecraft.prize_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1251, + "name": "sheaf_pottery_sherd", + "translation_key": "item.minecraft.sheaf_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1252, + "name": "shelter_pottery_sherd", + "translation_key": "item.minecraft.shelter_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1253, + "name": "skull_pottery_sherd", + "translation_key": "item.minecraft.skull_pottery_sherd", + "max_stack": 64, + "max_durability": 0, + "enchantability": 0, + "fireproof": false + }, + { + "id": 1254, + "name": "snort_pottery_sherd", + "translation_key": "item.minecraft.snort_pottery_sherd", "max_stack": 64, "max_durability": 0, "enchantability": 0, diff --git a/extracted/misc.json b/extracted/misc.json index 3a42626..2ed38ea 100644 --- a/extracted/misc.json +++ b/extracted/misc.json @@ -182,7 +182,7 @@ "add_death_particles": 60, "ears_twitch": 61, "sonic_boom": 62, - "field_42621": 63 + "start_digging": 63 }, "entity_animation": { "swing_main_hand": 0, @@ -442,73 +442,72 @@ "firework": 26, "fishing": 27, "flame": 28, - "dripping_cherry_leaves": 29, - "falling_cherry_leaves": 30, - "landing_cherry_leaves": 31, - "sculk_soul": 32, - "sculk_charge": 33, - "sculk_charge_pop": 34, - "soul_fire_flame": 35, - "soul": 36, - "flash": 37, - "happy_villager": 38, - "composter": 39, - "heart": 40, - "instant_effect": 41, - "item": 42, - "vibration": 43, - "item_slime": 44, - "item_snowball": 45, - "large_smoke": 46, - "lava": 47, - "mycelium": 48, - "note": 49, - "poof": 50, - "portal": 51, - "rain": 52, - "smoke": 53, - "sneeze": 54, - "spit": 55, - "squid_ink": 56, - "sweep_attack": 57, - "totem_of_undying": 58, - "underwater": 59, - "splash": 60, - "witch": 61, - "bubble_pop": 62, - "current_down": 63, - "bubble_column_up": 64, - "nautilus": 65, - "dolphin": 66, - "campfire_cosy_smoke": 67, - "campfire_signal_smoke": 68, - "dripping_honey": 69, - "falling_honey": 70, - "landing_honey": 71, - "falling_nectar": 72, - "falling_spore_blossom": 73, - "ash": 74, - "crimson_spore": 75, - "warped_spore": 76, - "spore_blossom_air": 77, - "dripping_obsidian_tear": 78, - "falling_obsidian_tear": 79, - "landing_obsidian_tear": 80, - "reverse_portal": 81, - "white_ash": 82, - "small_flame": 83, - "snowflake": 84, - "dripping_dripstone_lava": 85, - "falling_dripstone_lava": 86, - "dripping_dripstone_water": 87, - "falling_dripstone_water": 88, - "glow_squid_ink": 89, - "glow": 90, - "wax_on": 91, - "wax_off": 92, - "electric_spark": 93, - "scrape": 94, - "shriek": 95 + "cherry_leaves": 29, + "sculk_soul": 30, + "sculk_charge": 31, + "sculk_charge_pop": 32, + "soul_fire_flame": 33, + "soul": 34, + "flash": 35, + "happy_villager": 36, + "composter": 37, + "heart": 38, + "instant_effect": 39, + "item": 40, + "vibration": 41, + "item_slime": 42, + "item_snowball": 43, + "large_smoke": 44, + "lava": 45, + "mycelium": 46, + "note": 47, + "poof": 48, + "portal": 49, + "rain": 50, + "smoke": 51, + "sneeze": 52, + "spit": 53, + "squid_ink": 54, + "sweep_attack": 55, + "totem_of_undying": 56, + "underwater": 57, + "splash": 58, + "witch": 59, + "bubble_pop": 60, + "current_down": 61, + "bubble_column_up": 62, + "nautilus": 63, + "dolphin": 64, + "campfire_cosy_smoke": 65, + "campfire_signal_smoke": 66, + "dripping_honey": 67, + "falling_honey": 68, + "landing_honey": 69, + "falling_nectar": 70, + "falling_spore_blossom": 71, + "ash": 72, + "crimson_spore": 73, + "warped_spore": 74, + "spore_blossom_air": 75, + "dripping_obsidian_tear": 76, + "falling_obsidian_tear": 77, + "landing_obsidian_tear": 78, + "reverse_portal": 79, + "white_ash": 80, + "small_flame": 81, + "snowflake": 82, + "dripping_dripstone_lava": 83, + "falling_dripstone_lava": 84, + "dripping_dripstone_water": 85, + "falling_dripstone_water": 86, + "glow_squid_ink": 87, + "glow": 88, + "wax_on": 89, + "wax_off": 90, + "electric_spark": 91, + "scrape": 92, + "shriek": 93, + "egg_crack": 94 }, "sniffer_state": { "idling": 0, diff --git a/extracted/registry_codec_1.19.4.dat b/extracted/registry_codec_1.20.dat similarity index 67% rename from extracted/registry_codec_1.19.4.dat rename to extracted/registry_codec_1.20.dat index f4990ff..63e4a3a 100644 Binary files a/extracted/registry_codec_1.19.4.dat and b/extracted/registry_codec_1.20.dat differ diff --git a/extracted/sounds.json b/extracted/sounds.json index 3da915f..1d62958 100644 --- a/extracted/sounds.json +++ b/extracted/sounds.json @@ -137,5682 +137,5762 @@ }, { "id": 34, - "name": "block.amethyst_block.step" + "name": "block.amethyst_block.resonate" }, { "id": 35, - "name": "block.amethyst_cluster.break" + "name": "block.amethyst_block.step" }, { "id": 36, - "name": "block.amethyst_cluster.fall" + "name": "block.amethyst_cluster.break" }, { "id": 37, - "name": "block.amethyst_cluster.hit" + "name": "block.amethyst_cluster.fall" }, { "id": 38, - "name": "block.amethyst_cluster.place" + "name": "block.amethyst_cluster.hit" }, { "id": 39, - "name": "block.amethyst_cluster.step" + "name": "block.amethyst_cluster.place" }, { "id": 40, - "name": "block.ancient_debris.break" + "name": "block.amethyst_cluster.step" }, { "id": 41, - "name": "block.ancient_debris.step" + "name": "block.ancient_debris.break" }, { "id": 42, - "name": "block.ancient_debris.place" + "name": "block.ancient_debris.step" }, { "id": 43, - "name": "block.ancient_debris.hit" + "name": "block.ancient_debris.place" }, { "id": 44, - "name": "block.ancient_debris.fall" + "name": "block.ancient_debris.hit" }, { "id": 45, - "name": "block.anvil.break" + "name": "block.ancient_debris.fall" }, { "id": 46, - "name": "block.anvil.destroy" + "name": "block.anvil.break" }, { "id": 47, - "name": "block.anvil.fall" + "name": "block.anvil.destroy" }, { "id": 48, - "name": "block.anvil.hit" + "name": "block.anvil.fall" }, { "id": 49, - "name": "block.anvil.land" + "name": "block.anvil.hit" }, { "id": 50, - "name": "block.anvil.place" + "name": "block.anvil.land" }, { "id": 51, - "name": "block.anvil.step" + "name": "block.anvil.place" }, { "id": 52, - "name": "block.anvil.use" + "name": "block.anvil.step" }, { "id": 53, - "name": "item.armor.equip_chain" + "name": "block.anvil.use" }, { "id": 54, - "name": "item.armor.equip_diamond" + "name": "item.armor.equip_chain" }, { "id": 55, - "name": "item.armor.equip_elytra" + "name": "item.armor.equip_diamond" }, { "id": 56, - "name": "item.armor.equip_generic" + "name": "item.armor.equip_elytra" }, { "id": 57, - "name": "item.armor.equip_gold" + "name": "item.armor.equip_generic" }, { "id": 58, - "name": "item.armor.equip_iron" + "name": "item.armor.equip_gold" }, { "id": 59, - "name": "item.armor.equip_leather" + "name": "item.armor.equip_iron" }, { "id": 60, - "name": "item.armor.equip_netherite" + "name": "item.armor.equip_leather" }, { "id": 61, - "name": "item.armor.equip_turtle" + "name": "item.armor.equip_netherite" }, { "id": 62, - "name": "entity.armor_stand.break" + "name": "item.armor.equip_turtle" }, { "id": 63, - "name": "entity.armor_stand.fall" + "name": "entity.armor_stand.break" }, { "id": 64, - "name": "entity.armor_stand.hit" + "name": "entity.armor_stand.fall" }, { "id": 65, - "name": "entity.armor_stand.place" + "name": "entity.armor_stand.hit" }, { "id": 66, - "name": "entity.arrow.hit" + "name": "entity.armor_stand.place" }, { "id": 67, - "name": "entity.arrow.hit_player" + "name": "entity.arrow.hit" }, { "id": 68, - "name": "entity.arrow.shoot" + "name": "entity.arrow.hit_player" }, { "id": 69, - "name": "item.axe.strip" + "name": "entity.arrow.shoot" }, { "id": 70, - "name": "item.axe.scrape" + "name": "item.axe.strip" }, { "id": 71, - "name": "item.axe.wax_off" + "name": "item.axe.scrape" }, { "id": 72, - "name": "entity.axolotl.attack" + "name": "item.axe.wax_off" }, { "id": 73, - "name": "entity.axolotl.death" + "name": "entity.axolotl.attack" }, { "id": 74, - "name": "entity.axolotl.hurt" + "name": "entity.axolotl.death" }, { "id": 75, - "name": "entity.axolotl.idle_air" + "name": "entity.axolotl.hurt" }, { "id": 76, - "name": "entity.axolotl.idle_water" + "name": "entity.axolotl.idle_air" }, { "id": 77, - "name": "entity.axolotl.splash" + "name": "entity.axolotl.idle_water" }, { "id": 78, - "name": "entity.axolotl.swim" + "name": "entity.axolotl.splash" }, { "id": 79, - "name": "block.azalea.break" + "name": "entity.axolotl.swim" }, { "id": 80, - "name": "block.azalea.fall" + "name": "block.azalea.break" }, { "id": 81, - "name": "block.azalea.hit" + "name": "block.azalea.fall" }, { "id": 82, - "name": "block.azalea.place" + "name": "block.azalea.hit" }, { "id": 83, - "name": "block.azalea.step" + "name": "block.azalea.place" }, { "id": 84, - "name": "block.azalea_leaves.break" + "name": "block.azalea.step" }, { "id": 85, - "name": "block.azalea_leaves.fall" + "name": "block.azalea_leaves.break" }, { "id": 86, - "name": "block.azalea_leaves.hit" + "name": "block.azalea_leaves.fall" }, { "id": 87, - "name": "block.azalea_leaves.place" + "name": "block.azalea_leaves.hit" }, { "id": 88, - "name": "block.azalea_leaves.step" + "name": "block.azalea_leaves.place" }, { "id": 89, - "name": "block.bamboo.break" + "name": "block.azalea_leaves.step" }, { "id": 90, - "name": "block.bamboo.fall" + "name": "block.bamboo.break" }, { "id": 91, - "name": "block.bamboo.hit" + "name": "block.bamboo.fall" }, { "id": 92, - "name": "block.bamboo.place" + "name": "block.bamboo.hit" }, { "id": 93, - "name": "block.bamboo.step" + "name": "block.bamboo.place" }, { "id": 94, - "name": "block.bamboo_sapling.break" + "name": "block.bamboo.step" }, { "id": 95, - "name": "block.bamboo_sapling.hit" + "name": "block.bamboo_sapling.break" }, { "id": 96, - "name": "block.bamboo_sapling.place" + "name": "block.bamboo_sapling.hit" }, { "id": 97, - "name": "block.bamboo_wood.break" + "name": "block.bamboo_sapling.place" }, { "id": 98, - "name": "block.bamboo_wood.fall" + "name": "block.bamboo_wood.break" }, { "id": 99, - "name": "block.bamboo_wood.hit" + "name": "block.bamboo_wood.fall" }, { "id": 100, - "name": "block.bamboo_wood.place" + "name": "block.bamboo_wood.hit" }, { "id": 101, - "name": "block.bamboo_wood.step" + "name": "block.bamboo_wood.place" }, { "id": 102, - "name": "block.bamboo_wood_door.close" + "name": "block.bamboo_wood.step" }, { "id": 103, - "name": "block.bamboo_wood_door.open" + "name": "block.bamboo_wood_door.close" }, { "id": 104, - "name": "block.bamboo_wood_trapdoor.close" + "name": "block.bamboo_wood_door.open" }, { "id": 105, - "name": "block.bamboo_wood_trapdoor.open" + "name": "block.bamboo_wood_trapdoor.close" }, { "id": 106, - "name": "block.bamboo_wood_button.click_off" + "name": "block.bamboo_wood_trapdoor.open" }, { "id": 107, - "name": "block.bamboo_wood_button.click_on" + "name": "block.bamboo_wood_button.click_off" }, { "id": 108, - "name": "block.bamboo_wood_pressure_plate.click_off" + "name": "block.bamboo_wood_button.click_on" }, { "id": 109, - "name": "block.bamboo_wood_pressure_plate.click_on" + "name": "block.bamboo_wood_pressure_plate.click_off" }, { "id": 110, - "name": "block.bamboo_wood_fence_gate.close" + "name": "block.bamboo_wood_pressure_plate.click_on" }, { "id": 111, - "name": "block.bamboo_wood_fence_gate.open" + "name": "block.bamboo_wood_fence_gate.close" }, { "id": 112, - "name": "block.barrel.close" + "name": "block.bamboo_wood_fence_gate.open" }, { "id": 113, - "name": "block.barrel.open" + "name": "block.barrel.close" }, { "id": 114, - "name": "block.basalt.break" + "name": "block.barrel.open" }, { "id": 115, - "name": "block.basalt.step" + "name": "block.basalt.break" }, { "id": 116, - "name": "block.basalt.place" + "name": "block.basalt.step" }, { "id": 117, - "name": "block.basalt.hit" + "name": "block.basalt.place" }, { "id": 118, - "name": "block.basalt.fall" + "name": "block.basalt.hit" }, { "id": 119, - "name": "entity.bat.ambient" + "name": "block.basalt.fall" }, { "id": 120, - "name": "entity.bat.death" + "name": "entity.bat.ambient" }, { "id": 121, - "name": "entity.bat.hurt" + "name": "entity.bat.death" }, { "id": 122, - "name": "entity.bat.loop" + "name": "entity.bat.hurt" }, { "id": 123, - "name": "entity.bat.takeoff" + "name": "entity.bat.loop" }, { "id": 124, - "name": "block.beacon.activate" + "name": "entity.bat.takeoff" }, { "id": 125, - "name": "block.beacon.ambient" + "name": "block.beacon.activate" }, { "id": 126, - "name": "block.beacon.deactivate" + "name": "block.beacon.ambient" }, { "id": 127, - "name": "block.beacon.power_select" + "name": "block.beacon.deactivate" }, { "id": 128, - "name": "entity.bee.death" + "name": "block.beacon.power_select" }, { "id": 129, - "name": "entity.bee.hurt" + "name": "entity.bee.death" }, { "id": 130, - "name": "entity.bee.loop_aggressive" + "name": "entity.bee.hurt" }, { "id": 131, - "name": "entity.bee.loop" + "name": "entity.bee.loop_aggressive" }, { "id": 132, - "name": "entity.bee.sting" + "name": "entity.bee.loop" }, { "id": 133, - "name": "entity.bee.pollinate" + "name": "entity.bee.sting" }, { "id": 134, - "name": "block.beehive.drip" + "name": "entity.bee.pollinate" }, { "id": 135, - "name": "block.beehive.enter" + "name": "block.beehive.drip" }, { "id": 136, - "name": "block.beehive.exit" + "name": "block.beehive.enter" }, { "id": 137, - "name": "block.beehive.shear" + "name": "block.beehive.exit" }, { "id": 138, - "name": "block.beehive.work" + "name": "block.beehive.shear" }, { "id": 139, - "name": "block.bell.use" + "name": "block.beehive.work" }, { "id": 140, - "name": "block.bell.resonate" + "name": "block.bell.use" }, { "id": 141, - "name": "block.big_dripleaf.break" + "name": "block.bell.resonate" }, { "id": 142, - "name": "block.big_dripleaf.fall" + "name": "block.big_dripleaf.break" }, { "id": 143, - "name": "block.big_dripleaf.hit" + "name": "block.big_dripleaf.fall" }, { "id": 144, - "name": "block.big_dripleaf.place" + "name": "block.big_dripleaf.hit" }, { "id": 145, - "name": "block.big_dripleaf.step" + "name": "block.big_dripleaf.place" }, { "id": 146, - "name": "entity.blaze.ambient" + "name": "block.big_dripleaf.step" }, { "id": 147, - "name": "entity.blaze.burn" + "name": "entity.blaze.ambient" }, { "id": 148, - "name": "entity.blaze.death" + "name": "entity.blaze.burn" }, { "id": 149, - "name": "entity.blaze.hurt" + "name": "entity.blaze.death" }, { "id": 150, - "name": "entity.blaze.shoot" + "name": "entity.blaze.hurt" }, { "id": 151, - "name": "entity.boat.paddle_land" + "name": "entity.blaze.shoot" }, { "id": 152, - "name": "entity.boat.paddle_water" + "name": "entity.boat.paddle_land" }, { "id": 153, - "name": "block.bone_block.break" + "name": "entity.boat.paddle_water" }, { "id": 154, - "name": "block.bone_block.fall" + "name": "block.bone_block.break" }, { "id": 155, - "name": "block.bone_block.hit" + "name": "block.bone_block.fall" }, { "id": 156, - "name": "block.bone_block.place" + "name": "block.bone_block.hit" }, { "id": 157, - "name": "block.bone_block.step" + "name": "block.bone_block.place" }, { "id": 158, - "name": "item.bone_meal.use" + "name": "block.bone_block.step" }, { "id": 159, - "name": "item.book.page_turn" + "name": "item.bone_meal.use" }, { "id": 160, - "name": "item.book.put" + "name": "item.book.page_turn" }, { "id": 161, - "name": "block.blastfurnace.fire_crackle" + "name": "item.book.put" }, { "id": 162, - "name": "item.bottle.empty" + "name": "block.blastfurnace.fire_crackle" }, { "id": 163, - "name": "item.bottle.fill" + "name": "item.bottle.empty" }, { "id": 164, - "name": "item.bottle.fill_dragonbreath" + "name": "item.bottle.fill" }, { "id": 165, - "name": "block.brewing_stand.brew" + "name": "item.bottle.fill_dragonbreath" }, { "id": 166, - "name": "item.brush.brushing" + "name": "block.brewing_stand.brew" }, { "id": 167, - "name": "item.brush.brush_sand_completed" + "name": "item.brush.brushing.generic" }, { "id": 168, - "name": "block.bubble_column.bubble_pop" + "name": "item.brush.brushing.sand" }, { "id": 169, - "name": "block.bubble_column.upwards_ambient" + "name": "item.brush.brushing.gravel" }, { "id": 170, - "name": "block.bubble_column.upwards_inside" + "name": "item.brush.brushing.sand.complete" }, { "id": 171, - "name": "block.bubble_column.whirlpool_ambient" + "name": "item.brush.brushing.gravel.complete" }, { "id": 172, - "name": "block.bubble_column.whirlpool_inside" + "name": "block.bubble_column.bubble_pop" }, { "id": 173, - "name": "item.bucket.empty" + "name": "block.bubble_column.upwards_ambient" }, { "id": 174, - "name": "item.bucket.empty_axolotl" + "name": "block.bubble_column.upwards_inside" }, { "id": 175, - "name": "item.bucket.empty_fish" + "name": "block.bubble_column.whirlpool_ambient" }, { "id": 176, - "name": "item.bucket.empty_lava" + "name": "block.bubble_column.whirlpool_inside" }, { "id": 177, - "name": "item.bucket.empty_powder_snow" + "name": "item.bucket.empty" }, { "id": 178, - "name": "item.bucket.empty_tadpole" + "name": "item.bucket.empty_axolotl" }, { "id": 179, - "name": "item.bucket.fill" + "name": "item.bucket.empty_fish" }, { "id": 180, - "name": "item.bucket.fill_axolotl" + "name": "item.bucket.empty_lava" }, { "id": 181, - "name": "item.bucket.fill_fish" + "name": "item.bucket.empty_powder_snow" }, { "id": 182, - "name": "item.bucket.fill_lava" + "name": "item.bucket.empty_tadpole" }, { "id": 183, - "name": "item.bucket.fill_powder_snow" + "name": "item.bucket.fill" }, { "id": 184, - "name": "item.bucket.fill_tadpole" + "name": "item.bucket.fill_axolotl" }, { "id": 185, - "name": "item.bundle.drop_contents" + "name": "item.bucket.fill_fish" }, { "id": 186, - "name": "item.bundle.insert" + "name": "item.bucket.fill_lava" }, { "id": 187, - "name": "item.bundle.remove_one" + "name": "item.bucket.fill_powder_snow" }, { "id": 188, - "name": "block.cake.add_candle" + "name": "item.bucket.fill_tadpole" }, { "id": 189, - "name": "block.calcite.break" + "name": "item.bundle.drop_contents" }, { "id": 190, - "name": "block.calcite.step" + "name": "item.bundle.insert" }, { "id": 191, - "name": "block.calcite.place" + "name": "item.bundle.remove_one" }, { "id": 192, - "name": "block.calcite.hit" + "name": "block.cake.add_candle" }, { "id": 193, - "name": "block.calcite.fall" + "name": "block.calcite.break" }, { "id": 194, - "name": "entity.camel.ambient" + "name": "block.calcite.step" }, { "id": 195, - "name": "entity.camel.dash" + "name": "block.calcite.place" }, { "id": 196, - "name": "entity.camel.dash_ready" + "name": "block.calcite.hit" }, { "id": 197, - "name": "entity.camel.death" + "name": "block.calcite.fall" }, { "id": 198, - "name": "entity.camel.eat" + "name": "entity.camel.ambient" }, { "id": 199, - "name": "entity.camel.hurt" + "name": "entity.camel.dash" }, { "id": 200, - "name": "entity.camel.saddle" + "name": "entity.camel.dash_ready" }, { "id": 201, - "name": "entity.camel.sit" + "name": "entity.camel.death" }, { "id": 202, - "name": "entity.camel.stand" + "name": "entity.camel.eat" }, { "id": 203, - "name": "entity.camel.step" + "name": "entity.camel.hurt" }, { "id": 204, - "name": "entity.camel.step_sand" + "name": "entity.camel.saddle" }, { "id": 205, - "name": "block.campfire.crackle" + "name": "entity.camel.sit" }, { "id": 206, - "name": "block.candle.ambient" + "name": "entity.camel.stand" }, { "id": 207, - "name": "block.candle.break" + "name": "entity.camel.step" }, { "id": 208, - "name": "block.candle.extinguish" + "name": "entity.camel.step_sand" }, { "id": 209, - "name": "block.candle.fall" + "name": "block.campfire.crackle" }, { "id": 210, - "name": "block.candle.hit" + "name": "block.candle.ambient" }, { "id": 211, - "name": "block.candle.place" + "name": "block.candle.break" }, { "id": 212, - "name": "block.candle.step" + "name": "block.candle.extinguish" }, { "id": 213, - "name": "entity.cat.ambient" + "name": "block.candle.fall" }, { "id": 214, - "name": "entity.cat.stray_ambient" + "name": "block.candle.hit" }, { "id": 215, - "name": "entity.cat.death" + "name": "block.candle.place" }, { "id": 216, - "name": "entity.cat.eat" + "name": "block.candle.step" }, { "id": 217, - "name": "entity.cat.hiss" + "name": "entity.cat.ambient" }, { "id": 218, - "name": "entity.cat.beg_for_food" + "name": "entity.cat.stray_ambient" }, { "id": 219, - "name": "entity.cat.hurt" + "name": "entity.cat.death" }, { "id": 220, - "name": "entity.cat.purr" + "name": "entity.cat.eat" }, { "id": 221, - "name": "entity.cat.purreow" + "name": "entity.cat.hiss" }, { "id": 222, - "name": "block.cave_vines.break" + "name": "entity.cat.beg_for_food" }, { "id": 223, - "name": "block.cave_vines.fall" + "name": "entity.cat.hurt" }, { "id": 224, - "name": "block.cave_vines.hit" + "name": "entity.cat.purr" }, { "id": 225, - "name": "block.cave_vines.place" + "name": "entity.cat.purreow" }, { "id": 226, - "name": "block.cave_vines.step" + "name": "block.cave_vines.break" }, { "id": 227, - "name": "block.cave_vines.pick_berries" + "name": "block.cave_vines.fall" }, { "id": 228, - "name": "block.chain.break" + "name": "block.cave_vines.hit" }, { "id": 229, - "name": "block.chain.fall" + "name": "block.cave_vines.place" }, { "id": 230, - "name": "block.chain.hit" + "name": "block.cave_vines.step" }, { "id": 231, - "name": "block.chain.place" + "name": "block.cave_vines.pick_berries" }, { "id": 232, - "name": "block.chain.step" + "name": "block.chain.break" }, { "id": 233, - "name": "block.cherry_wood.break" + "name": "block.chain.fall" }, { "id": 234, - "name": "block.cherry_wood.fall" + "name": "block.chain.hit" }, { "id": 235, - "name": "block.cherry_wood.hit" + "name": "block.chain.place" }, { "id": 236, - "name": "block.cherry_wood.place" + "name": "block.chain.step" }, { "id": 237, - "name": "block.cherry_wood.step" + "name": "block.cherry_wood.break" }, { "id": 238, - "name": "block.cherry_sapling.break" + "name": "block.cherry_wood.fall" }, { "id": 239, - "name": "block.cherry_sapling.fall" + "name": "block.cherry_wood.hit" }, { "id": 240, - "name": "block.cherry_sapling.hit" + "name": "block.cherry_wood.place" }, { "id": 241, - "name": "block.cherry_sapling.place" + "name": "block.cherry_wood.step" }, { "id": 242, - "name": "block.cherry_sapling.step" + "name": "block.cherry_sapling.break" }, { "id": 243, - "name": "block.cherry_leaves.break" + "name": "block.cherry_sapling.fall" }, { "id": 244, - "name": "block.cherry_leaves.fall" + "name": "block.cherry_sapling.hit" }, { "id": 245, - "name": "block.cherry_leaves.hit" + "name": "block.cherry_sapling.place" }, { "id": 246, - "name": "block.cherry_leaves.place" + "name": "block.cherry_sapling.step" }, { "id": 247, - "name": "block.cherry_leaves.step" + "name": "block.cherry_leaves.break" }, { "id": 248, - "name": "block.cherry_wood_hanging_sign.step" + "name": "block.cherry_leaves.fall" }, { "id": 249, - "name": "block.cherry_wood_hanging_sign.break" + "name": "block.cherry_leaves.hit" }, { "id": 250, - "name": "block.cherry_wood_hanging_sign.fall" + "name": "block.cherry_leaves.place" }, { "id": 251, - "name": "block.cherry_wood_hanging_sign.hit" + "name": "block.cherry_leaves.step" }, { "id": 252, - "name": "block.cherry_wood_hanging_sign.place" + "name": "block.cherry_wood_hanging_sign.step" }, { "id": 253, - "name": "block.cherry_wood_door.close" + "name": "block.cherry_wood_hanging_sign.break" }, { "id": 254, - "name": "block.cherry_wood_door.open" + "name": "block.cherry_wood_hanging_sign.fall" }, { "id": 255, - "name": "block.cherry_wood_trapdoor.close" + "name": "block.cherry_wood_hanging_sign.hit" }, { "id": 256, - "name": "block.cherry_wood_trapdoor.open" + "name": "block.cherry_wood_hanging_sign.place" }, { "id": 257, - "name": "block.cherry_wood_button.click_off" + "name": "block.cherry_wood_door.close" }, { "id": 258, - "name": "block.cherry_wood_button.click_on" + "name": "block.cherry_wood_door.open" }, { "id": 259, - "name": "block.cherry_wood_pressure_plate.click_off" + "name": "block.cherry_wood_trapdoor.close" }, { "id": 260, - "name": "block.cherry_wood_pressure_plate.click_on" + "name": "block.cherry_wood_trapdoor.open" }, { "id": 261, - "name": "block.cherry_wood_fence_gate.close" + "name": "block.cherry_wood_button.click_off" }, { "id": 262, - "name": "block.cherry_wood_fence_gate.open" + "name": "block.cherry_wood_button.click_on" }, { "id": 263, - "name": "block.chest.close" + "name": "block.cherry_wood_pressure_plate.click_off" }, { "id": 264, - "name": "block.chest.locked" + "name": "block.cherry_wood_pressure_plate.click_on" }, { "id": 265, - "name": "block.chest.open" + "name": "block.cherry_wood_fence_gate.close" }, { "id": 266, - "name": "entity.chicken.ambient" + "name": "block.cherry_wood_fence_gate.open" }, { "id": 267, - "name": "entity.chicken.death" + "name": "block.chest.close" }, { "id": 268, - "name": "entity.chicken.egg" + "name": "block.chest.locked" }, { "id": 269, - "name": "entity.chicken.hurt" + "name": "block.chest.open" }, { "id": 270, - "name": "entity.chicken.step" + "name": "entity.chicken.ambient" }, { "id": 271, - "name": "block.chiseled_bookshelf.break" + "name": "entity.chicken.death" }, { "id": 272, - "name": "block.chiseled_bookshelf.fall" + "name": "entity.chicken.egg" }, { "id": 273, - "name": "block.chiseled_bookshelf.hit" + "name": "entity.chicken.hurt" }, { "id": 274, - "name": "block.chiseled_bookshelf.insert" + "name": "entity.chicken.step" }, { "id": 275, - "name": "block.chiseled_bookshelf.insert.enchanted" + "name": "block.chiseled_bookshelf.break" }, { "id": 276, - "name": "block.chiseled_bookshelf.step" + "name": "block.chiseled_bookshelf.fall" }, { "id": 277, - "name": "block.chiseled_bookshelf.pickup" + "name": "block.chiseled_bookshelf.hit" }, { "id": 278, - "name": "block.chiseled_bookshelf.pickup.enchanted" + "name": "block.chiseled_bookshelf.insert" }, { "id": 279, - "name": "block.chiseled_bookshelf.place" + "name": "block.chiseled_bookshelf.insert.enchanted" }, { "id": 280, - "name": "block.chorus_flower.death" + "name": "block.chiseled_bookshelf.step" }, { "id": 281, - "name": "block.chorus_flower.grow" + "name": "block.chiseled_bookshelf.pickup" }, { "id": 282, - "name": "item.chorus_fruit.teleport" + "name": "block.chiseled_bookshelf.pickup.enchanted" }, { "id": 283, - "name": "entity.cod.ambient" + "name": "block.chiseled_bookshelf.place" }, { "id": 284, - "name": "entity.cod.death" + "name": "block.chorus_flower.death" }, { "id": 285, - "name": "entity.cod.flop" + "name": "block.chorus_flower.grow" }, { "id": 286, - "name": "entity.cod.hurt" + "name": "item.chorus_fruit.teleport" }, { "id": 287, - "name": "block.comparator.click" + "name": "entity.cod.ambient" }, { "id": 288, - "name": "block.composter.empty" + "name": "entity.cod.death" }, { "id": 289, - "name": "block.composter.fill" + "name": "entity.cod.flop" }, { "id": 290, - "name": "block.composter.fill_success" + "name": "entity.cod.hurt" }, { "id": 291, - "name": "block.composter.ready" + "name": "block.comparator.click" }, { "id": 292, - "name": "block.conduit.activate" + "name": "block.composter.empty" }, { "id": 293, - "name": "block.conduit.ambient" + "name": "block.composter.fill" }, { "id": 294, - "name": "block.conduit.ambient.short" + "name": "block.composter.fill_success" }, { "id": 295, - "name": "block.conduit.attack.target" + "name": "block.composter.ready" }, { "id": 296, - "name": "block.conduit.deactivate" + "name": "block.conduit.activate" }, { "id": 297, - "name": "block.copper.break" + "name": "block.conduit.ambient" }, { "id": 298, - "name": "block.copper.step" + "name": "block.conduit.ambient.short" }, { "id": 299, - "name": "block.copper.place" + "name": "block.conduit.attack.target" }, { "id": 300, - "name": "block.copper.hit" + "name": "block.conduit.deactivate" }, { "id": 301, - "name": "block.copper.fall" + "name": "block.copper.break" }, { "id": 302, - "name": "block.coral_block.break" + "name": "block.copper.step" }, { "id": 303, - "name": "block.coral_block.fall" + "name": "block.copper.place" }, { "id": 304, - "name": "block.coral_block.hit" + "name": "block.copper.hit" }, { "id": 305, - "name": "block.coral_block.place" + "name": "block.copper.fall" }, { "id": 306, - "name": "block.coral_block.step" + "name": "block.coral_block.break" }, { "id": 307, - "name": "entity.cow.ambient" + "name": "block.coral_block.fall" }, { "id": 308, - "name": "entity.cow.death" + "name": "block.coral_block.hit" }, { "id": 309, - "name": "entity.cow.hurt" + "name": "block.coral_block.place" }, { "id": 310, - "name": "entity.cow.milk" + "name": "block.coral_block.step" }, { "id": 311, - "name": "entity.cow.step" + "name": "entity.cow.ambient" }, { "id": 312, - "name": "entity.creeper.death" + "name": "entity.cow.death" }, { "id": 313, - "name": "entity.creeper.hurt" + "name": "entity.cow.hurt" }, { "id": 314, - "name": "entity.creeper.primed" + "name": "entity.cow.milk" }, { "id": 315, - "name": "block.crop.break" + "name": "entity.cow.step" }, { "id": 316, - "name": "item.crop.plant" + "name": "entity.creeper.death" }, { "id": 317, - "name": "item.crossbow.hit" + "name": "entity.creeper.hurt" }, { "id": 318, - "name": "item.crossbow.loading_end" + "name": "entity.creeper.primed" }, { "id": 319, - "name": "item.crossbow.loading_middle" + "name": "block.crop.break" }, { "id": 320, - "name": "item.crossbow.loading_start" + "name": "item.crop.plant" }, { "id": 321, - "name": "item.crossbow.quick_charge_1" + "name": "item.crossbow.hit" }, { "id": 322, - "name": "item.crossbow.quick_charge_2" + "name": "item.crossbow.loading_end" }, { "id": 323, - "name": "item.crossbow.quick_charge_3" + "name": "item.crossbow.loading_middle" }, { "id": 324, - "name": "item.crossbow.shoot" + "name": "item.crossbow.loading_start" }, { "id": 325, - "name": "block.decorated_pot.break" + "name": "item.crossbow.quick_charge_1" }, { "id": 326, - "name": "block.decorated_pot.fall" + "name": "item.crossbow.quick_charge_2" }, { "id": 327, - "name": "block.decorated_pot.hit" + "name": "item.crossbow.quick_charge_3" }, { "id": 328, - "name": "block.decorated_pot.step" + "name": "item.crossbow.shoot" }, { "id": 329, - "name": "block.decorated_pot.place" + "name": "block.decorated_pot.break" }, { "id": 330, - "name": "block.decorated_pot.shatter" + "name": "block.decorated_pot.fall" }, { "id": 331, - "name": "block.deepslate_bricks.break" + "name": "block.decorated_pot.hit" }, { "id": 332, - "name": "block.deepslate_bricks.fall" + "name": "block.decorated_pot.step" }, { "id": 333, - "name": "block.deepslate_bricks.hit" + "name": "block.decorated_pot.place" }, { "id": 334, - "name": "block.deepslate_bricks.place" + "name": "block.decorated_pot.shatter" }, { "id": 335, - "name": "block.deepslate_bricks.step" + "name": "block.deepslate_bricks.break" }, { "id": 336, - "name": "block.deepslate.break" + "name": "block.deepslate_bricks.fall" }, { "id": 337, - "name": "block.deepslate.fall" + "name": "block.deepslate_bricks.hit" }, { "id": 338, - "name": "block.deepslate.hit" + "name": "block.deepslate_bricks.place" }, { "id": 339, - "name": "block.deepslate.place" + "name": "block.deepslate_bricks.step" }, { "id": 340, - "name": "block.deepslate.step" + "name": "block.deepslate.break" }, { "id": 341, - "name": "block.deepslate_tiles.break" + "name": "block.deepslate.fall" }, { "id": 342, - "name": "block.deepslate_tiles.fall" + "name": "block.deepslate.hit" }, { "id": 343, - "name": "block.deepslate_tiles.hit" + "name": "block.deepslate.place" }, { "id": 344, - "name": "block.deepslate_tiles.place" + "name": "block.deepslate.step" }, { "id": 345, - "name": "block.deepslate_tiles.step" + "name": "block.deepslate_tiles.break" }, { "id": 346, - "name": "block.dispenser.dispense" + "name": "block.deepslate_tiles.fall" }, { "id": 347, - "name": "block.dispenser.fail" + "name": "block.deepslate_tiles.hit" }, { "id": 348, - "name": "block.dispenser.launch" + "name": "block.deepslate_tiles.place" }, { "id": 349, - "name": "entity.dolphin.ambient" + "name": "block.deepslate_tiles.step" }, { "id": 350, - "name": "entity.dolphin.ambient_water" + "name": "block.dispenser.dispense" }, { "id": 351, - "name": "entity.dolphin.attack" + "name": "block.dispenser.fail" }, { "id": 352, - "name": "entity.dolphin.death" + "name": "block.dispenser.launch" }, { "id": 353, - "name": "entity.dolphin.eat" + "name": "entity.dolphin.ambient" }, { "id": 354, - "name": "entity.dolphin.hurt" + "name": "entity.dolphin.ambient_water" }, { "id": 355, - "name": "entity.dolphin.jump" + "name": "entity.dolphin.attack" }, { "id": 356, - "name": "entity.dolphin.play" + "name": "entity.dolphin.death" }, { "id": 357, - "name": "entity.dolphin.splash" + "name": "entity.dolphin.eat" }, { "id": 358, - "name": "entity.dolphin.swim" + "name": "entity.dolphin.hurt" }, { "id": 359, - "name": "entity.donkey.ambient" + "name": "entity.dolphin.jump" }, { "id": 360, - "name": "entity.donkey.angry" + "name": "entity.dolphin.play" }, { "id": 361, - "name": "entity.donkey.chest" + "name": "entity.dolphin.splash" }, { "id": 362, - "name": "entity.donkey.death" + "name": "entity.dolphin.swim" }, { "id": 363, - "name": "entity.donkey.eat" + "name": "entity.donkey.ambient" }, { "id": 364, - "name": "entity.donkey.hurt" + "name": "entity.donkey.angry" }, { "id": 365, - "name": "block.dripstone_block.break" + "name": "entity.donkey.chest" }, { "id": 366, - "name": "block.dripstone_block.step" + "name": "entity.donkey.death" }, { "id": 367, - "name": "block.dripstone_block.place" + "name": "entity.donkey.eat" }, { "id": 368, - "name": "block.dripstone_block.hit" + "name": "entity.donkey.hurt" }, { "id": 369, - "name": "block.dripstone_block.fall" + "name": "block.dripstone_block.break" }, { "id": 370, - "name": "block.pointed_dripstone.break" + "name": "block.dripstone_block.step" }, { "id": 371, - "name": "block.pointed_dripstone.step" + "name": "block.dripstone_block.place" }, { "id": 372, - "name": "block.pointed_dripstone.place" + "name": "block.dripstone_block.hit" }, { "id": 373, - "name": "block.pointed_dripstone.hit" + "name": "block.dripstone_block.fall" }, { "id": 374, - "name": "block.pointed_dripstone.fall" + "name": "block.pointed_dripstone.break" }, { "id": 375, - "name": "block.pointed_dripstone.land" + "name": "block.pointed_dripstone.step" }, { "id": 376, - "name": "block.pointed_dripstone.drip_lava" + "name": "block.pointed_dripstone.place" }, { "id": 377, - "name": "block.pointed_dripstone.drip_water" + "name": "block.pointed_dripstone.hit" }, { "id": 378, - "name": "block.pointed_dripstone.drip_lava_into_cauldron" + "name": "block.pointed_dripstone.fall" }, { "id": 379, - "name": "block.pointed_dripstone.drip_water_into_cauldron" + "name": "block.pointed_dripstone.land" }, { "id": 380, - "name": "block.big_dripleaf.tilt_down" + "name": "block.pointed_dripstone.drip_lava" }, { "id": 381, - "name": "block.big_dripleaf.tilt_up" + "name": "block.pointed_dripstone.drip_water" }, { "id": 382, - "name": "entity.drowned.ambient" + "name": "block.pointed_dripstone.drip_lava_into_cauldron" }, { "id": 383, - "name": "entity.drowned.ambient_water" + "name": "block.pointed_dripstone.drip_water_into_cauldron" }, { "id": 384, - "name": "entity.drowned.death" + "name": "block.big_dripleaf.tilt_down" }, { "id": 385, - "name": "entity.drowned.death_water" + "name": "block.big_dripleaf.tilt_up" }, { "id": 386, - "name": "entity.drowned.hurt" + "name": "entity.drowned.ambient" }, { "id": 387, - "name": "entity.drowned.hurt_water" + "name": "entity.drowned.ambient_water" }, { "id": 388, - "name": "entity.drowned.shoot" + "name": "entity.drowned.death" }, { "id": 389, - "name": "entity.drowned.step" + "name": "entity.drowned.death_water" }, { "id": 390, - "name": "entity.drowned.swim" + "name": "entity.drowned.hurt" }, { "id": 391, - "name": "item.dye.use" + "name": "entity.drowned.hurt_water" }, { "id": 392, - "name": "entity.egg.throw" + "name": "entity.drowned.shoot" }, { "id": 393, - "name": "entity.elder_guardian.ambient" + "name": "entity.drowned.step" }, { "id": 394, - "name": "entity.elder_guardian.ambient_land" + "name": "entity.drowned.swim" }, { "id": 395, - "name": "entity.elder_guardian.curse" + "name": "item.dye.use" }, { "id": 396, - "name": "entity.elder_guardian.death" + "name": "entity.egg.throw" }, { "id": 397, - "name": "entity.elder_guardian.death_land" + "name": "entity.elder_guardian.ambient" }, { "id": 398, - "name": "entity.elder_guardian.flop" + "name": "entity.elder_guardian.ambient_land" }, { "id": 399, - "name": "entity.elder_guardian.hurt" + "name": "entity.elder_guardian.curse" }, { "id": 400, - "name": "entity.elder_guardian.hurt_land" + "name": "entity.elder_guardian.death" }, { "id": 401, - "name": "item.elytra.flying" + "name": "entity.elder_guardian.death_land" }, { "id": 402, - "name": "block.enchantment_table.use" + "name": "entity.elder_guardian.flop" }, { "id": 403, - "name": "block.ender_chest.close" + "name": "entity.elder_guardian.hurt" }, { "id": 404, - "name": "block.ender_chest.open" + "name": "entity.elder_guardian.hurt_land" }, { "id": 405, - "name": "entity.ender_dragon.ambient" + "name": "item.elytra.flying" }, { "id": 406, - "name": "entity.ender_dragon.death" + "name": "block.enchantment_table.use" }, { "id": 407, - "name": "entity.dragon_fireball.explode" + "name": "block.ender_chest.close" }, { "id": 408, - "name": "entity.ender_dragon.flap" + "name": "block.ender_chest.open" }, { "id": 409, - "name": "entity.ender_dragon.growl" + "name": "entity.ender_dragon.ambient" }, { "id": 410, - "name": "entity.ender_dragon.hurt" + "name": "entity.ender_dragon.death" }, { "id": 411, - "name": "entity.ender_dragon.shoot" + "name": "entity.dragon_fireball.explode" }, { "id": 412, - "name": "entity.ender_eye.death" + "name": "entity.ender_dragon.flap" }, { "id": 413, - "name": "entity.ender_eye.launch" + "name": "entity.ender_dragon.growl" }, { "id": 414, - "name": "entity.enderman.ambient" + "name": "entity.ender_dragon.hurt" }, { "id": 415, - "name": "entity.enderman.death" + "name": "entity.ender_dragon.shoot" }, { "id": 416, - "name": "entity.enderman.hurt" + "name": "entity.ender_eye.death" }, { "id": 417, - "name": "entity.enderman.scream" + "name": "entity.ender_eye.launch" }, { "id": 418, - "name": "entity.enderman.stare" + "name": "entity.enderman.ambient" }, { "id": 419, - "name": "entity.enderman.teleport" + "name": "entity.enderman.death" }, { "id": 420, - "name": "entity.endermite.ambient" + "name": "entity.enderman.hurt" }, { "id": 421, - "name": "entity.endermite.death" + "name": "entity.enderman.scream" }, { "id": 422, - "name": "entity.endermite.hurt" + "name": "entity.enderman.stare" }, { "id": 423, - "name": "entity.endermite.step" + "name": "entity.enderman.teleport" }, { "id": 424, - "name": "entity.ender_pearl.throw" + "name": "entity.endermite.ambient" }, { "id": 425, - "name": "block.end_gateway.spawn" + "name": "entity.endermite.death" }, { "id": 426, - "name": "block.end_portal_frame.fill" + "name": "entity.endermite.hurt" }, { "id": 427, - "name": "block.end_portal.spawn" + "name": "entity.endermite.step" }, { "id": 428, - "name": "entity.evoker.ambient" + "name": "entity.ender_pearl.throw" }, { "id": 429, - "name": "entity.evoker.cast_spell" + "name": "block.end_gateway.spawn" }, { "id": 430, - "name": "entity.evoker.celebrate" + "name": "block.end_portal_frame.fill" }, { "id": 431, - "name": "entity.evoker.death" + "name": "block.end_portal.spawn" }, { "id": 432, - "name": "entity.evoker_fangs.attack" + "name": "entity.evoker.ambient" }, { "id": 433, - "name": "entity.evoker.hurt" + "name": "entity.evoker.cast_spell" }, { "id": 434, - "name": "entity.evoker.prepare_attack" + "name": "entity.evoker.celebrate" }, { "id": 435, - "name": "entity.evoker.prepare_summon" + "name": "entity.evoker.death" }, { "id": 436, - "name": "entity.evoker.prepare_wololo" + "name": "entity.evoker_fangs.attack" }, { "id": 437, - "name": "entity.experience_bottle.throw" + "name": "entity.evoker.hurt" }, { "id": 438, - "name": "entity.experience_orb.pickup" + "name": "entity.evoker.prepare_attack" }, { "id": 439, - "name": "block.fence_gate.close" + "name": "entity.evoker.prepare_summon" }, { "id": 440, - "name": "block.fence_gate.open" + "name": "entity.evoker.prepare_wololo" }, { "id": 441, - "name": "item.firecharge.use" + "name": "entity.experience_bottle.throw" }, { "id": 442, - "name": "entity.firework_rocket.blast" + "name": "entity.experience_orb.pickup" }, { "id": 443, - "name": "entity.firework_rocket.blast_far" + "name": "block.fence_gate.close" }, { "id": 444, - "name": "entity.firework_rocket.large_blast" + "name": "block.fence_gate.open" }, { "id": 445, - "name": "entity.firework_rocket.large_blast_far" + "name": "item.firecharge.use" }, { "id": 446, - "name": "entity.firework_rocket.launch" + "name": "entity.firework_rocket.blast" }, { "id": 447, - "name": "entity.firework_rocket.shoot" + "name": "entity.firework_rocket.blast_far" }, { "id": 448, - "name": "entity.firework_rocket.twinkle" + "name": "entity.firework_rocket.large_blast" }, { "id": 449, - "name": "entity.firework_rocket.twinkle_far" + "name": "entity.firework_rocket.large_blast_far" }, { "id": 450, - "name": "block.fire.ambient" + "name": "entity.firework_rocket.launch" }, { "id": 451, - "name": "block.fire.extinguish" + "name": "entity.firework_rocket.shoot" }, { "id": 452, - "name": "entity.fish.swim" + "name": "entity.firework_rocket.twinkle" }, { "id": 453, - "name": "entity.fishing_bobber.retrieve" + "name": "entity.firework_rocket.twinkle_far" }, { "id": 454, - "name": "entity.fishing_bobber.splash" + "name": "block.fire.ambient" }, { "id": 455, - "name": "entity.fishing_bobber.throw" + "name": "block.fire.extinguish" }, { "id": 456, - "name": "item.flintandsteel.use" + "name": "entity.fish.swim" }, { "id": 457, - "name": "block.flowering_azalea.break" + "name": "entity.fishing_bobber.retrieve" }, { "id": 458, - "name": "block.flowering_azalea.fall" + "name": "entity.fishing_bobber.splash" }, { "id": 459, - "name": "block.flowering_azalea.hit" + "name": "entity.fishing_bobber.throw" }, { "id": 460, - "name": "block.flowering_azalea.place" + "name": "item.flintandsteel.use" }, { "id": 461, - "name": "block.flowering_azalea.step" + "name": "block.flowering_azalea.break" }, { "id": 462, - "name": "entity.fox.aggro" + "name": "block.flowering_azalea.fall" }, { "id": 463, - "name": "entity.fox.ambient" + "name": "block.flowering_azalea.hit" }, { "id": 464, - "name": "entity.fox.bite" + "name": "block.flowering_azalea.place" }, { "id": 465, - "name": "entity.fox.death" + "name": "block.flowering_azalea.step" }, { "id": 466, - "name": "entity.fox.eat" + "name": "entity.fox.aggro" }, { "id": 467, - "name": "entity.fox.hurt" + "name": "entity.fox.ambient" }, { "id": 468, - "name": "entity.fox.screech" + "name": "entity.fox.bite" }, { "id": 469, - "name": "entity.fox.sleep" + "name": "entity.fox.death" }, { "id": 470, - "name": "entity.fox.sniff" + "name": "entity.fox.eat" }, { "id": 471, - "name": "entity.fox.spit" + "name": "entity.fox.hurt" }, { "id": 472, - "name": "entity.fox.teleport" + "name": "entity.fox.screech" }, { "id": 473, - "name": "block.suspicious_sand.break" + "name": "entity.fox.sleep" }, { "id": 474, - "name": "block.suspicious_sand.step" + "name": "entity.fox.sniff" }, { "id": 475, - "name": "block.suspicious_sand.place" + "name": "entity.fox.spit" }, { "id": 476, - "name": "block.suspicious_sand.hit" + "name": "entity.fox.teleport" }, { "id": 477, - "name": "block.suspicious_sand.fall" + "name": "block.suspicious_sand.break" }, { "id": 478, - "name": "block.froglight.break" + "name": "block.suspicious_sand.step" }, { "id": 479, - "name": "block.froglight.fall" + "name": "block.suspicious_sand.place" }, { "id": 480, - "name": "block.froglight.hit" + "name": "block.suspicious_sand.hit" }, { "id": 481, - "name": "block.froglight.place" + "name": "block.suspicious_sand.fall" }, { "id": 482, - "name": "block.froglight.step" + "name": "block.suspicious_gravel.break" }, { "id": 483, - "name": "block.frogspawn.step" + "name": "block.suspicious_gravel.step" }, { "id": 484, - "name": "block.frogspawn.break" + "name": "block.suspicious_gravel.place" }, { "id": 485, - "name": "block.frogspawn.fall" + "name": "block.suspicious_gravel.hit" }, { "id": 486, - "name": "block.frogspawn.hatch" + "name": "block.suspicious_gravel.fall" }, { "id": 487, - "name": "block.frogspawn.hit" + "name": "block.froglight.break" }, { "id": 488, - "name": "block.frogspawn.place" + "name": "block.froglight.fall" }, { "id": 489, - "name": "entity.frog.ambient" + "name": "block.froglight.hit" }, { "id": 490, - "name": "entity.frog.death" + "name": "block.froglight.place" }, { "id": 491, - "name": "entity.frog.eat" + "name": "block.froglight.step" }, { "id": 492, - "name": "entity.frog.hurt" + "name": "block.frogspawn.step" }, { "id": 493, - "name": "entity.frog.lay_spawn" + "name": "block.frogspawn.break" }, { "id": 494, - "name": "entity.frog.long_jump" + "name": "block.frogspawn.fall" }, { "id": 495, - "name": "entity.frog.step" + "name": "block.frogspawn.hatch" }, { "id": 496, - "name": "entity.frog.tongue" + "name": "block.frogspawn.hit" }, { "id": 497, - "name": "block.roots.break" + "name": "block.frogspawn.place" }, { "id": 498, - "name": "block.roots.step" + "name": "entity.frog.ambient" }, { "id": 499, - "name": "block.roots.place" + "name": "entity.frog.death" }, { "id": 500, - "name": "block.roots.hit" + "name": "entity.frog.eat" }, { "id": 501, - "name": "block.roots.fall" + "name": "entity.frog.hurt" }, { "id": 502, - "name": "block.furnace.fire_crackle" + "name": "entity.frog.lay_spawn" }, { "id": 503, - "name": "entity.generic.big_fall" + "name": "entity.frog.long_jump" }, { "id": 504, - "name": "entity.generic.burn" + "name": "entity.frog.step" }, { "id": 505, - "name": "entity.generic.death" + "name": "entity.frog.tongue" }, { "id": 506, - "name": "entity.generic.drink" + "name": "block.roots.break" }, { "id": 507, - "name": "entity.generic.eat" + "name": "block.roots.step" }, { "id": 508, - "name": "entity.generic.explode" + "name": "block.roots.place" }, { "id": 509, - "name": "entity.generic.extinguish_fire" + "name": "block.roots.hit" }, { "id": 510, - "name": "entity.generic.hurt" + "name": "block.roots.fall" }, { "id": 511, - "name": "entity.generic.small_fall" + "name": "block.furnace.fire_crackle" }, { "id": 512, - "name": "entity.generic.splash" + "name": "entity.generic.big_fall" }, { "id": 513, - "name": "entity.generic.swim" + "name": "entity.generic.burn" }, { "id": 514, - "name": "entity.ghast.ambient" + "name": "entity.generic.death" }, { "id": 515, - "name": "entity.ghast.death" + "name": "entity.generic.drink" }, { "id": 516, - "name": "entity.ghast.hurt" + "name": "entity.generic.eat" }, { "id": 517, - "name": "entity.ghast.scream" + "name": "entity.generic.explode" }, { "id": 518, - "name": "entity.ghast.shoot" + "name": "entity.generic.extinguish_fire" }, { "id": 519, - "name": "entity.ghast.warn" + "name": "entity.generic.hurt" }, { "id": 520, - "name": "block.gilded_blackstone.break" + "name": "entity.generic.small_fall" }, { "id": 521, - "name": "block.gilded_blackstone.fall" + "name": "entity.generic.splash" }, { "id": 522, - "name": "block.gilded_blackstone.hit" + "name": "entity.generic.swim" }, { "id": 523, - "name": "block.gilded_blackstone.place" + "name": "entity.ghast.ambient" }, { "id": 524, - "name": "block.gilded_blackstone.step" + "name": "entity.ghast.death" }, { "id": 525, - "name": "block.glass.break" + "name": "entity.ghast.hurt" }, { "id": 526, - "name": "block.glass.fall" + "name": "entity.ghast.scream" }, { "id": 527, - "name": "block.glass.hit" + "name": "entity.ghast.shoot" }, { "id": 528, - "name": "block.glass.place" + "name": "entity.ghast.warn" }, { "id": 529, - "name": "block.glass.step" + "name": "block.gilded_blackstone.break" }, { "id": 530, - "name": "item.glow_ink_sac.use" + "name": "block.gilded_blackstone.fall" }, { "id": 531, - "name": "entity.glow_item_frame.add_item" + "name": "block.gilded_blackstone.hit" }, { "id": 532, - "name": "entity.glow_item_frame.break" + "name": "block.gilded_blackstone.place" }, { "id": 533, - "name": "entity.glow_item_frame.place" + "name": "block.gilded_blackstone.step" }, { "id": 534, - "name": "entity.glow_item_frame.remove_item" + "name": "block.glass.break" }, { "id": 535, - "name": "entity.glow_item_frame.rotate_item" + "name": "block.glass.fall" }, { "id": 536, - "name": "entity.glow_squid.ambient" + "name": "block.glass.hit" }, { "id": 537, - "name": "entity.glow_squid.death" + "name": "block.glass.place" }, { "id": 538, - "name": "entity.glow_squid.hurt" + "name": "block.glass.step" }, { "id": 539, - "name": "entity.glow_squid.squirt" + "name": "item.glow_ink_sac.use" }, { "id": 540, - "name": "entity.goat.ambient" + "name": "entity.glow_item_frame.add_item" }, { "id": 541, - "name": "entity.goat.death" + "name": "entity.glow_item_frame.break" }, { "id": 542, - "name": "entity.goat.eat" + "name": "entity.glow_item_frame.place" }, { "id": 543, - "name": "entity.goat.hurt" + "name": "entity.glow_item_frame.remove_item" }, { "id": 544, - "name": "entity.goat.long_jump" + "name": "entity.glow_item_frame.rotate_item" }, { "id": 545, - "name": "entity.goat.milk" + "name": "entity.glow_squid.ambient" }, { "id": 546, - "name": "entity.goat.prepare_ram" + "name": "entity.glow_squid.death" }, { "id": 547, - "name": "entity.goat.ram_impact" + "name": "entity.glow_squid.hurt" }, { "id": 548, - "name": "entity.goat.horn_break" + "name": "entity.glow_squid.squirt" }, { "id": 549, - "name": "item.goat_horn.play" + "name": "entity.goat.ambient" }, { "id": 550, - "name": "entity.goat.screaming.ambient" + "name": "entity.goat.death" }, { "id": 551, - "name": "entity.goat.screaming.death" + "name": "entity.goat.eat" }, { "id": 552, - "name": "entity.goat.screaming.eat" + "name": "entity.goat.hurt" }, { "id": 553, - "name": "entity.goat.screaming.hurt" + "name": "entity.goat.long_jump" }, { "id": 554, - "name": "entity.goat.screaming.long_jump" + "name": "entity.goat.milk" }, { "id": 555, - "name": "entity.goat.screaming.milk" + "name": "entity.goat.prepare_ram" }, { "id": 556, - "name": "entity.goat.screaming.prepare_ram" + "name": "entity.goat.ram_impact" }, { "id": 557, - "name": "entity.goat.screaming.ram_impact" + "name": "entity.goat.horn_break" }, { "id": 558, - "name": "entity.goat.screaming.horn_break" + "name": "item.goat_horn.play" }, { "id": 559, - "name": "entity.goat.step" + "name": "entity.goat.screaming.ambient" }, { "id": 560, - "name": "block.grass.break" + "name": "entity.goat.screaming.death" }, { "id": 561, - "name": "block.grass.fall" + "name": "entity.goat.screaming.eat" }, { "id": 562, - "name": "block.grass.hit" + "name": "entity.goat.screaming.hurt" }, { "id": 563, - "name": "block.grass.place" + "name": "entity.goat.screaming.long_jump" }, { "id": 564, - "name": "block.grass.step" + "name": "entity.goat.screaming.milk" }, { "id": 565, - "name": "block.gravel.break" + "name": "entity.goat.screaming.prepare_ram" }, { "id": 566, - "name": "block.gravel.fall" + "name": "entity.goat.screaming.ram_impact" }, { "id": 567, - "name": "block.gravel.hit" + "name": "entity.goat.screaming.horn_break" }, { "id": 568, - "name": "block.gravel.place" + "name": "entity.goat.step" }, { "id": 569, - "name": "block.gravel.step" + "name": "block.grass.break" }, { "id": 570, - "name": "block.grindstone.use" + "name": "block.grass.fall" }, { "id": 571, - "name": "block.growing_plant.crop" + "name": "block.grass.hit" }, { "id": 572, - "name": "entity.guardian.ambient" + "name": "block.grass.place" }, { "id": 573, - "name": "entity.guardian.ambient_land" + "name": "block.grass.step" }, { "id": 574, - "name": "entity.guardian.attack" + "name": "block.gravel.break" }, { "id": 575, - "name": "entity.guardian.death" + "name": "block.gravel.fall" }, { "id": 576, - "name": "entity.guardian.death_land" + "name": "block.gravel.hit" }, { "id": 577, - "name": "entity.guardian.flop" + "name": "block.gravel.place" }, { "id": 578, - "name": "entity.guardian.hurt" + "name": "block.gravel.step" }, { "id": 579, - "name": "entity.guardian.hurt_land" + "name": "block.grindstone.use" }, { "id": 580, - "name": "block.hanging_roots.break" + "name": "block.growing_plant.crop" }, { "id": 581, - "name": "block.hanging_roots.fall" + "name": "entity.guardian.ambient" }, { "id": 582, - "name": "block.hanging_roots.hit" + "name": "entity.guardian.ambient_land" }, { "id": 583, - "name": "block.hanging_roots.place" + "name": "entity.guardian.attack" }, { "id": 584, - "name": "block.hanging_roots.step" + "name": "entity.guardian.death" }, { "id": 585, - "name": "block.hanging_sign.step" + "name": "entity.guardian.death_land" }, { "id": 586, - "name": "block.hanging_sign.break" + "name": "entity.guardian.flop" }, { "id": 587, - "name": "block.hanging_sign.fall" + "name": "entity.guardian.hurt" }, { "id": 588, - "name": "block.hanging_sign.hit" + "name": "entity.guardian.hurt_land" }, { "id": 589, - "name": "block.hanging_sign.place" + "name": "block.hanging_roots.break" }, { "id": 590, - "name": "block.nether_wood_hanging_sign.step" + "name": "block.hanging_roots.fall" }, { "id": 591, - "name": "block.nether_wood_hanging_sign.break" + "name": "block.hanging_roots.hit" }, { "id": 592, - "name": "block.nether_wood_hanging_sign.fall" + "name": "block.hanging_roots.place" }, { "id": 593, - "name": "block.nether_wood_hanging_sign.hit" + "name": "block.hanging_roots.step" }, { "id": 594, - "name": "block.nether_wood_hanging_sign.place" + "name": "block.hanging_sign.step" }, { "id": 595, - "name": "block.bamboo_wood_hanging_sign.step" + "name": "block.hanging_sign.break" }, { "id": 596, - "name": "block.bamboo_wood_hanging_sign.break" + "name": "block.hanging_sign.fall" }, { "id": 597, - "name": "block.bamboo_wood_hanging_sign.fall" + "name": "block.hanging_sign.hit" }, { "id": 598, - "name": "block.bamboo_wood_hanging_sign.hit" + "name": "block.hanging_sign.place" }, { "id": 599, - "name": "block.bamboo_wood_hanging_sign.place" + "name": "block.nether_wood_hanging_sign.step" }, { "id": 600, - "name": "item.hoe.till" + "name": "block.nether_wood_hanging_sign.break" }, { "id": 601, - "name": "entity.hoglin.ambient" + "name": "block.nether_wood_hanging_sign.fall" }, { "id": 602, - "name": "entity.hoglin.angry" + "name": "block.nether_wood_hanging_sign.hit" }, { "id": 603, - "name": "entity.hoglin.attack" + "name": "block.nether_wood_hanging_sign.place" }, { "id": 604, - "name": "entity.hoglin.converted_to_zombified" + "name": "block.bamboo_wood_hanging_sign.step" }, { "id": 605, - "name": "entity.hoglin.death" + "name": "block.bamboo_wood_hanging_sign.break" }, { "id": 606, - "name": "entity.hoglin.hurt" + "name": "block.bamboo_wood_hanging_sign.fall" }, { "id": 607, - "name": "entity.hoglin.retreat" + "name": "block.bamboo_wood_hanging_sign.hit" }, { "id": 608, - "name": "entity.hoglin.step" + "name": "block.bamboo_wood_hanging_sign.place" }, { "id": 609, - "name": "block.honey_block.break" + "name": "item.hoe.till" }, { "id": 610, - "name": "block.honey_block.fall" + "name": "entity.hoglin.ambient" }, { "id": 611, - "name": "block.honey_block.hit" + "name": "entity.hoglin.angry" }, { "id": 612, - "name": "block.honey_block.place" + "name": "entity.hoglin.attack" }, { "id": 613, - "name": "block.honey_block.slide" + "name": "entity.hoglin.converted_to_zombified" }, { "id": 614, - "name": "block.honey_block.step" + "name": "entity.hoglin.death" }, { "id": 615, - "name": "item.honeycomb.wax_on" + "name": "entity.hoglin.hurt" }, { "id": 616, - "name": "item.honey_bottle.drink" + "name": "entity.hoglin.retreat" }, { "id": 617, - "name": "item.goat_horn.sound.0" + "name": "entity.hoglin.step" }, { "id": 618, - "name": "item.goat_horn.sound.1" + "name": "block.honey_block.break" }, { "id": 619, - "name": "item.goat_horn.sound.2" + "name": "block.honey_block.fall" }, { "id": 620, - "name": "item.goat_horn.sound.3" + "name": "block.honey_block.hit" }, { "id": 621, - "name": "item.goat_horn.sound.4" + "name": "block.honey_block.place" }, { "id": 622, - "name": "item.goat_horn.sound.5" + "name": "block.honey_block.slide" }, { "id": 623, - "name": "item.goat_horn.sound.6" + "name": "block.honey_block.step" }, { "id": 624, - "name": "item.goat_horn.sound.7" + "name": "item.honeycomb.wax_on" }, { "id": 625, - "name": "entity.horse.ambient" + "name": "item.honey_bottle.drink" }, { "id": 626, - "name": "entity.horse.angry" + "name": "item.goat_horn.sound.0" }, { "id": 627, - "name": "entity.horse.armor" + "name": "item.goat_horn.sound.1" }, { "id": 628, - "name": "entity.horse.breathe" + "name": "item.goat_horn.sound.2" }, { "id": 629, - "name": "entity.horse.death" + "name": "item.goat_horn.sound.3" }, { "id": 630, - "name": "entity.horse.eat" + "name": "item.goat_horn.sound.4" }, { "id": 631, - "name": "entity.horse.gallop" + "name": "item.goat_horn.sound.5" }, { "id": 632, - "name": "entity.horse.hurt" + "name": "item.goat_horn.sound.6" }, { "id": 633, - "name": "entity.horse.jump" + "name": "item.goat_horn.sound.7" }, { "id": 634, - "name": "entity.horse.land" + "name": "entity.horse.ambient" }, { "id": 635, - "name": "entity.horse.saddle" + "name": "entity.horse.angry" }, { "id": 636, - "name": "entity.horse.step" + "name": "entity.horse.armor" }, { "id": 637, - "name": "entity.horse.step_wood" + "name": "entity.horse.breathe" }, { "id": 638, - "name": "entity.hostile.big_fall" + "name": "entity.horse.death" }, { "id": 639, - "name": "entity.hostile.death" + "name": "entity.horse.eat" }, { "id": 640, - "name": "entity.hostile.hurt" + "name": "entity.horse.gallop" }, { "id": 641, - "name": "entity.hostile.small_fall" + "name": "entity.horse.hurt" }, { "id": 642, - "name": "entity.hostile.splash" + "name": "entity.horse.jump" }, { "id": 643, - "name": "entity.hostile.swim" + "name": "entity.horse.land" }, { "id": 644, - "name": "entity.husk.ambient" + "name": "entity.horse.saddle" }, { "id": 645, - "name": "entity.husk.converted_to_zombie" + "name": "entity.horse.step" }, { "id": 646, - "name": "entity.husk.death" + "name": "entity.horse.step_wood" }, { "id": 647, - "name": "entity.husk.hurt" + "name": "entity.hostile.big_fall" }, { "id": 648, - "name": "entity.husk.step" + "name": "entity.hostile.death" }, { "id": 649, - "name": "entity.illusioner.ambient" + "name": "entity.hostile.hurt" }, { "id": 650, - "name": "entity.illusioner.cast_spell" + "name": "entity.hostile.small_fall" }, { "id": 651, - "name": "entity.illusioner.death" + "name": "entity.hostile.splash" }, { "id": 652, - "name": "entity.illusioner.hurt" + "name": "entity.hostile.swim" }, { "id": 653, - "name": "entity.illusioner.mirror_move" + "name": "entity.husk.ambient" }, { "id": 654, - "name": "entity.illusioner.prepare_blindness" + "name": "entity.husk.converted_to_zombie" }, { "id": 655, - "name": "entity.illusioner.prepare_mirror" + "name": "entity.husk.death" }, { "id": 656, - "name": "item.ink_sac.use" + "name": "entity.husk.hurt" }, { "id": 657, - "name": "block.iron_door.close" + "name": "entity.husk.step" }, { "id": 658, - "name": "block.iron_door.open" + "name": "entity.illusioner.ambient" }, { "id": 659, - "name": "entity.iron_golem.attack" + "name": "entity.illusioner.cast_spell" }, { "id": 660, - "name": "entity.iron_golem.damage" + "name": "entity.illusioner.death" }, { "id": 661, - "name": "entity.iron_golem.death" + "name": "entity.illusioner.hurt" }, { "id": 662, - "name": "entity.iron_golem.hurt" + "name": "entity.illusioner.mirror_move" }, { "id": 663, - "name": "entity.iron_golem.repair" + "name": "entity.illusioner.prepare_blindness" }, { "id": 664, - "name": "entity.iron_golem.step" + "name": "entity.illusioner.prepare_mirror" }, { "id": 665, - "name": "block.iron_trapdoor.close" + "name": "item.ink_sac.use" }, { "id": 666, - "name": "block.iron_trapdoor.open" + "name": "block.iron_door.close" }, { "id": 667, - "name": "entity.item_frame.add_item" + "name": "block.iron_door.open" }, { "id": 668, - "name": "entity.item_frame.break" + "name": "entity.iron_golem.attack" }, { "id": 669, - "name": "entity.item_frame.place" + "name": "entity.iron_golem.damage" }, { "id": 670, - "name": "entity.item_frame.remove_item" + "name": "entity.iron_golem.death" }, { "id": 671, - "name": "entity.item_frame.rotate_item" + "name": "entity.iron_golem.hurt" }, { "id": 672, - "name": "entity.item.break" + "name": "entity.iron_golem.repair" }, { "id": 673, - "name": "entity.item.pickup" + "name": "entity.iron_golem.step" }, { "id": 674, - "name": "block.ladder.break" + "name": "block.iron_trapdoor.close" }, { "id": 675, - "name": "block.ladder.fall" + "name": "block.iron_trapdoor.open" }, { "id": 676, - "name": "block.ladder.hit" + "name": "entity.item_frame.add_item" }, { "id": 677, - "name": "block.ladder.place" + "name": "entity.item_frame.break" }, { "id": 678, - "name": "block.ladder.step" + "name": "entity.item_frame.place" }, { "id": 679, - "name": "block.lantern.break" + "name": "entity.item_frame.remove_item" }, { "id": 680, - "name": "block.lantern.fall" + "name": "entity.item_frame.rotate_item" }, { "id": 681, - "name": "block.lantern.hit" + "name": "entity.item.break" }, { "id": 682, - "name": "block.lantern.place" + "name": "entity.item.pickup" }, { "id": 683, - "name": "block.lantern.step" + "name": "block.ladder.break" }, { "id": 684, - "name": "block.large_amethyst_bud.break" + "name": "block.ladder.fall" }, { "id": 685, - "name": "block.large_amethyst_bud.place" + "name": "block.ladder.hit" }, { "id": 686, - "name": "block.lava.ambient" + "name": "block.ladder.place" }, { "id": 687, - "name": "block.lava.extinguish" + "name": "block.ladder.step" }, { "id": 688, - "name": "block.lava.pop" + "name": "block.lantern.break" }, { "id": 689, - "name": "entity.leash_knot.break" + "name": "block.lantern.fall" }, { "id": 690, - "name": "entity.leash_knot.place" + "name": "block.lantern.hit" }, { "id": 691, - "name": "block.lever.click" + "name": "block.lantern.place" }, { "id": 692, - "name": "entity.lightning_bolt.impact" + "name": "block.lantern.step" }, { "id": 693, - "name": "entity.lightning_bolt.thunder" + "name": "block.large_amethyst_bud.break" }, { "id": 694, - "name": "entity.lingering_potion.throw" + "name": "block.large_amethyst_bud.place" }, { "id": 695, - "name": "entity.llama.ambient" + "name": "block.lava.ambient" }, { "id": 696, - "name": "entity.llama.angry" + "name": "block.lava.extinguish" }, { "id": 697, - "name": "entity.llama.chest" + "name": "block.lava.pop" }, { "id": 698, - "name": "entity.llama.death" + "name": "entity.leash_knot.break" }, { "id": 699, - "name": "entity.llama.eat" + "name": "entity.leash_knot.place" }, { "id": 700, - "name": "entity.llama.hurt" + "name": "block.lever.click" }, { "id": 701, - "name": "entity.llama.spit" + "name": "entity.lightning_bolt.impact" }, { "id": 702, - "name": "entity.llama.step" + "name": "entity.lightning_bolt.thunder" }, { "id": 703, - "name": "entity.llama.swag" + "name": "entity.lingering_potion.throw" }, { "id": 704, - "name": "entity.magma_cube.death_small" + "name": "entity.llama.ambient" }, { "id": 705, - "name": "block.lodestone.break" + "name": "entity.llama.angry" }, { "id": 706, - "name": "block.lodestone.step" + "name": "entity.llama.chest" }, { "id": 707, - "name": "block.lodestone.place" + "name": "entity.llama.death" }, { "id": 708, - "name": "block.lodestone.hit" + "name": "entity.llama.eat" }, { "id": 709, - "name": "block.lodestone.fall" + "name": "entity.llama.hurt" }, { "id": 710, - "name": "item.lodestone_compass.lock" + "name": "entity.llama.spit" }, { "id": 711, - "name": "entity.magma_cube.death" + "name": "entity.llama.step" }, { "id": 712, - "name": "entity.magma_cube.hurt" + "name": "entity.llama.swag" }, { "id": 713, - "name": "entity.magma_cube.hurt_small" + "name": "entity.magma_cube.death_small" }, { "id": 714, - "name": "entity.magma_cube.jump" + "name": "block.lodestone.break" }, { "id": 715, - "name": "entity.magma_cube.squish" + "name": "block.lodestone.step" }, { "id": 716, - "name": "entity.magma_cube.squish_small" + "name": "block.lodestone.place" }, { "id": 717, - "name": "block.mangrove_roots.break" + "name": "block.lodestone.hit" }, { "id": 718, - "name": "block.mangrove_roots.fall" + "name": "block.lodestone.fall" }, { "id": 719, - "name": "block.mangrove_roots.hit" + "name": "item.lodestone_compass.lock" }, { "id": 720, - "name": "block.mangrove_roots.place" + "name": "entity.magma_cube.death" }, { "id": 721, - "name": "block.mangrove_roots.step" + "name": "entity.magma_cube.hurt" }, { "id": 722, - "name": "block.medium_amethyst_bud.break" + "name": "entity.magma_cube.hurt_small" }, { "id": 723, - "name": "block.medium_amethyst_bud.place" + "name": "entity.magma_cube.jump" }, { "id": 724, - "name": "block.metal.break" + "name": "entity.magma_cube.squish" }, { "id": 725, - "name": "block.metal.fall" + "name": "entity.magma_cube.squish_small" }, { "id": 726, - "name": "block.metal.hit" + "name": "block.mangrove_roots.break" }, { "id": 727, - "name": "block.metal.place" + "name": "block.mangrove_roots.fall" }, { "id": 728, - "name": "block.metal_pressure_plate.click_off" + "name": "block.mangrove_roots.hit" }, { "id": 729, - "name": "block.metal_pressure_plate.click_on" + "name": "block.mangrove_roots.place" }, { "id": 730, - "name": "block.metal.step" + "name": "block.mangrove_roots.step" }, { "id": 731, - "name": "entity.minecart.inside.underwater" + "name": "block.medium_amethyst_bud.break" }, { "id": 732, - "name": "entity.minecart.inside" + "name": "block.medium_amethyst_bud.place" }, { "id": 733, - "name": "entity.minecart.riding" + "name": "block.metal.break" }, { "id": 734, - "name": "entity.mooshroom.convert" + "name": "block.metal.fall" }, { "id": 735, - "name": "entity.mooshroom.eat" + "name": "block.metal.hit" }, { "id": 736, - "name": "entity.mooshroom.milk" + "name": "block.metal.place" }, { "id": 737, - "name": "entity.mooshroom.suspicious_milk" + "name": "block.metal_pressure_plate.click_off" }, { "id": 738, - "name": "entity.mooshroom.shear" + "name": "block.metal_pressure_plate.click_on" }, { "id": 739, - "name": "block.moss_carpet.break" + "name": "block.metal.step" }, { "id": 740, - "name": "block.moss_carpet.fall" + "name": "entity.minecart.inside.underwater" }, { "id": 741, - "name": "block.moss_carpet.hit" + "name": "entity.minecart.inside" }, { "id": 742, - "name": "block.moss_carpet.place" + "name": "entity.minecart.riding" }, { "id": 743, - "name": "block.moss_carpet.step" + "name": "entity.mooshroom.convert" }, { "id": 744, - "name": "block.pink_petals.break" + "name": "entity.mooshroom.eat" }, { "id": 745, - "name": "block.pink_petals.fall" + "name": "entity.mooshroom.milk" }, { "id": 746, - "name": "block.pink_petals.hit" + "name": "entity.mooshroom.suspicious_milk" }, { "id": 747, - "name": "block.pink_petals.place" + "name": "entity.mooshroom.shear" }, { "id": 748, - "name": "block.pink_petals.step" + "name": "block.moss_carpet.break" }, { "id": 749, - "name": "block.moss.break" + "name": "block.moss_carpet.fall" }, { "id": 750, - "name": "block.moss.fall" + "name": "block.moss_carpet.hit" }, { "id": 751, - "name": "block.moss.hit" + "name": "block.moss_carpet.place" }, { "id": 752, - "name": "block.moss.place" + "name": "block.moss_carpet.step" }, { "id": 753, - "name": "block.moss.step" + "name": "block.pink_petals.break" }, { "id": 754, - "name": "block.mud.break" + "name": "block.pink_petals.fall" }, { "id": 755, - "name": "block.mud.fall" + "name": "block.pink_petals.hit" }, { "id": 756, - "name": "block.mud.hit" + "name": "block.pink_petals.place" }, { "id": 757, - "name": "block.mud.place" + "name": "block.pink_petals.step" }, { "id": 758, - "name": "block.mud.step" + "name": "block.moss.break" }, { "id": 759, - "name": "block.mud_bricks.break" + "name": "block.moss.fall" }, { "id": 760, - "name": "block.mud_bricks.fall" + "name": "block.moss.hit" }, { "id": 761, - "name": "block.mud_bricks.hit" + "name": "block.moss.place" }, { "id": 762, - "name": "block.mud_bricks.place" + "name": "block.moss.step" }, { "id": 763, - "name": "block.mud_bricks.step" + "name": "block.mud.break" }, { "id": 764, - "name": "block.muddy_mangrove_roots.break" + "name": "block.mud.fall" }, { "id": 765, - "name": "block.muddy_mangrove_roots.fall" + "name": "block.mud.hit" }, { "id": 766, - "name": "block.muddy_mangrove_roots.hit" + "name": "block.mud.place" }, { "id": 767, - "name": "block.muddy_mangrove_roots.place" + "name": "block.mud.step" }, { "id": 768, - "name": "block.muddy_mangrove_roots.step" + "name": "block.mud_bricks.break" }, { "id": 769, - "name": "entity.mule.ambient" + "name": "block.mud_bricks.fall" }, { "id": 770, - "name": "entity.mule.angry" + "name": "block.mud_bricks.hit" }, { "id": 771, - "name": "entity.mule.chest" + "name": "block.mud_bricks.place" }, { "id": 772, - "name": "entity.mule.death" + "name": "block.mud_bricks.step" }, { "id": 773, - "name": "entity.mule.eat" + "name": "block.muddy_mangrove_roots.break" }, { "id": 774, - "name": "entity.mule.hurt" + "name": "block.muddy_mangrove_roots.fall" }, { "id": 775, - "name": "music.creative" + "name": "block.muddy_mangrove_roots.hit" }, { "id": 776, - "name": "music.credits" + "name": "block.muddy_mangrove_roots.place" }, { "id": 777, - "name": "music_disc.5" + "name": "block.muddy_mangrove_roots.step" }, { "id": 778, - "name": "music_disc.11" + "name": "entity.mule.ambient" }, { "id": 779, - "name": "music_disc.13" + "name": "entity.mule.angry" }, { "id": 780, - "name": "music_disc.blocks" + "name": "entity.mule.chest" }, { "id": 781, - "name": "music_disc.cat" + "name": "entity.mule.death" }, { "id": 782, - "name": "music_disc.chirp" + "name": "entity.mule.eat" }, { "id": 783, - "name": "music_disc.far" + "name": "entity.mule.hurt" }, { "id": 784, - "name": "music_disc.mall" + "name": "music.creative" }, { "id": 785, - "name": "music_disc.mellohi" + "name": "music.credits" }, { "id": 786, - "name": "music_disc.pigstep" + "name": "music_disc.5" }, { "id": 787, - "name": "music_disc.stal" + "name": "music_disc.11" }, { "id": 788, - "name": "music_disc.strad" + "name": "music_disc.13" }, { "id": 789, - "name": "music_disc.wait" + "name": "music_disc.blocks" }, { "id": 790, - "name": "music_disc.ward" + "name": "music_disc.cat" }, { "id": 791, - "name": "music_disc.otherside" + "name": "music_disc.chirp" }, { "id": 792, - "name": "music.dragon" + "name": "music_disc.far" }, { "id": 793, - "name": "music.end" + "name": "music_disc.mall" }, { "id": 794, - "name": "music.game" + "name": "music_disc.mellohi" }, { "id": 795, - "name": "music.menu" + "name": "music_disc.pigstep" }, { "id": 796, - "name": "music.nether.basalt_deltas" + "name": "music_disc.stal" }, { "id": 797, - "name": "music.nether.crimson_forest" + "name": "music_disc.strad" }, { "id": 798, - "name": "music.overworld.deep_dark" + "name": "music_disc.wait" }, { "id": 799, - "name": "music.overworld.dripstone_caves" + "name": "music_disc.ward" }, { "id": 800, - "name": "music.overworld.grove" + "name": "music_disc.otherside" }, { "id": 801, - "name": "music.overworld.jagged_peaks" + "name": "music_disc.relic" }, { "id": 802, - "name": "music.overworld.lush_caves" + "name": "music.dragon" }, { "id": 803, - "name": "music.overworld.swamp" + "name": "music.end" }, { "id": 804, - "name": "music.overworld.jungle_and_forest" + "name": "music.game" }, { "id": 805, - "name": "music.overworld.old_growth_taiga" + "name": "music.menu" }, { "id": 806, - "name": "music.overworld.meadow" + "name": "music.nether.basalt_deltas" }, { "id": 807, - "name": "music.overworld.cherry_grove" + "name": "music.nether.crimson_forest" }, { "id": 808, - "name": "music.nether.nether_wastes" + "name": "music.overworld.deep_dark" }, { "id": 809, - "name": "music.overworld.frozen_peaks" + "name": "music.overworld.dripstone_caves" }, { "id": 810, - "name": "music.overworld.snowy_slopes" + "name": "music.overworld.grove" }, { "id": 811, - "name": "music.nether.soul_sand_valley" + "name": "music.overworld.jagged_peaks" }, { "id": 812, - "name": "music.overworld.stony_peaks" + "name": "music.overworld.lush_caves" }, { "id": 813, - "name": "music.nether.warped_forest" + "name": "music.overworld.swamp" }, { "id": 814, - "name": "music.under_water" + "name": "music.overworld.forest" }, { "id": 815, - "name": "block.nether_bricks.break" + "name": "music.overworld.old_growth_taiga" }, { "id": 816, - "name": "block.nether_bricks.step" + "name": "music.overworld.meadow" }, { "id": 817, - "name": "block.nether_bricks.place" + "name": "music.overworld.cherry_grove" }, { "id": 818, - "name": "block.nether_bricks.hit" + "name": "music.nether.nether_wastes" }, { "id": 819, - "name": "block.nether_bricks.fall" + "name": "music.overworld.frozen_peaks" }, { "id": 820, - "name": "block.nether_wart.break" + "name": "music.overworld.snowy_slopes" }, { "id": 821, - "name": "item.nether_wart.plant" + "name": "music.nether.soul_sand_valley" }, { "id": 822, - "name": "block.nether_wood.break" + "name": "music.overworld.stony_peaks" }, { "id": 823, - "name": "block.nether_wood.fall" + "name": "music.nether.warped_forest" }, { "id": 824, - "name": "block.nether_wood.hit" + "name": "music.overworld.flower_forest" }, { "id": 825, - "name": "block.nether_wood.place" + "name": "music.overworld.desert" }, { "id": 826, - "name": "block.nether_wood.step" + "name": "music.overworld.badlands" }, { "id": 827, - "name": "block.nether_wood_door.close" + "name": "music.overworld.jungle" }, { "id": 828, - "name": "block.nether_wood_door.open" + "name": "music.overworld.sparse_jungle" }, { "id": 829, - "name": "block.nether_wood_trapdoor.close" + "name": "music.overworld.bamboo_jungle" }, { "id": 830, - "name": "block.nether_wood_trapdoor.open" + "name": "music.under_water" }, { "id": 831, - "name": "block.nether_wood_button.click_off" + "name": "block.nether_bricks.break" }, { "id": 832, - "name": "block.nether_wood_button.click_on" + "name": "block.nether_bricks.step" }, { "id": 833, - "name": "block.nether_wood_pressure_plate.click_off" + "name": "block.nether_bricks.place" }, { "id": 834, - "name": "block.nether_wood_pressure_plate.click_on" + "name": "block.nether_bricks.hit" }, { "id": 835, - "name": "block.nether_wood_fence_gate.close" + "name": "block.nether_bricks.fall" }, { "id": 836, - "name": "block.nether_wood_fence_gate.open" + "name": "block.nether_wart.break" }, { "id": 837, - "name": "intentionally_empty" + "name": "item.nether_wart.plant" }, { "id": 838, - "name": "block.packed_mud.break" + "name": "block.nether_wood.break" }, { "id": 839, - "name": "block.packed_mud.fall" + "name": "block.nether_wood.fall" }, { "id": 840, - "name": "block.packed_mud.hit" + "name": "block.nether_wood.hit" }, { "id": 841, - "name": "block.packed_mud.place" + "name": "block.nether_wood.place" }, { "id": 842, - "name": "block.packed_mud.step" + "name": "block.nether_wood.step" }, { "id": 843, - "name": "block.stem.break" + "name": "block.nether_wood_door.close" }, { "id": 844, - "name": "block.stem.step" + "name": "block.nether_wood_door.open" }, { "id": 845, - "name": "block.stem.place" + "name": "block.nether_wood_trapdoor.close" }, { "id": 846, - "name": "block.stem.hit" + "name": "block.nether_wood_trapdoor.open" }, { "id": 847, - "name": "block.stem.fall" + "name": "block.nether_wood_button.click_off" }, { "id": 848, - "name": "block.nylium.break" + "name": "block.nether_wood_button.click_on" }, { "id": 849, - "name": "block.nylium.step" + "name": "block.nether_wood_pressure_plate.click_off" }, { "id": 850, - "name": "block.nylium.place" + "name": "block.nether_wood_pressure_plate.click_on" }, { "id": 851, - "name": "block.nylium.hit" + "name": "block.nether_wood_fence_gate.close" }, { "id": 852, - "name": "block.nylium.fall" + "name": "block.nether_wood_fence_gate.open" }, { "id": 853, - "name": "block.nether_sprouts.break" + "name": "intentionally_empty" }, { "id": 854, - "name": "block.nether_sprouts.step" + "name": "block.packed_mud.break" }, { "id": 855, - "name": "block.nether_sprouts.place" + "name": "block.packed_mud.fall" }, { "id": 856, - "name": "block.nether_sprouts.hit" + "name": "block.packed_mud.hit" }, { "id": 857, - "name": "block.nether_sprouts.fall" + "name": "block.packed_mud.place" }, { "id": 858, - "name": "block.fungus.break" + "name": "block.packed_mud.step" }, { "id": 859, - "name": "block.fungus.step" + "name": "block.stem.break" }, { "id": 860, - "name": "block.fungus.place" + "name": "block.stem.step" }, { "id": 861, - "name": "block.fungus.hit" + "name": "block.stem.place" }, { "id": 862, - "name": "block.fungus.fall" + "name": "block.stem.hit" }, { "id": 863, - "name": "block.weeping_vines.break" + "name": "block.stem.fall" }, { "id": 864, - "name": "block.weeping_vines.step" + "name": "block.nylium.break" }, { "id": 865, - "name": "block.weeping_vines.place" + "name": "block.nylium.step" }, { "id": 866, - "name": "block.weeping_vines.hit" + "name": "block.nylium.place" }, { "id": 867, - "name": "block.weeping_vines.fall" + "name": "block.nylium.hit" }, { "id": 868, - "name": "block.wart_block.break" + "name": "block.nylium.fall" }, { "id": 869, - "name": "block.wart_block.step" + "name": "block.nether_sprouts.break" }, { "id": 870, - "name": "block.wart_block.place" + "name": "block.nether_sprouts.step" }, { "id": 871, - "name": "block.wart_block.hit" + "name": "block.nether_sprouts.place" }, { "id": 872, - "name": "block.wart_block.fall" + "name": "block.nether_sprouts.hit" }, { "id": 873, - "name": "block.netherite_block.break" + "name": "block.nether_sprouts.fall" }, { "id": 874, - "name": "block.netherite_block.step" + "name": "block.fungus.break" }, { "id": 875, - "name": "block.netherite_block.place" + "name": "block.fungus.step" }, { "id": 876, - "name": "block.netherite_block.hit" + "name": "block.fungus.place" }, { "id": 877, - "name": "block.netherite_block.fall" + "name": "block.fungus.hit" }, { "id": 878, - "name": "block.netherrack.break" + "name": "block.fungus.fall" }, { "id": 879, - "name": "block.netherrack.step" + "name": "block.weeping_vines.break" }, { "id": 880, - "name": "block.netherrack.place" + "name": "block.weeping_vines.step" }, { "id": 881, - "name": "block.netherrack.hit" + "name": "block.weeping_vines.place" }, { "id": 882, - "name": "block.netherrack.fall" + "name": "block.weeping_vines.hit" }, { "id": 883, - "name": "block.note_block.basedrum" + "name": "block.weeping_vines.fall" }, { "id": 884, - "name": "block.note_block.bass" + "name": "block.wart_block.break" }, { "id": 885, - "name": "block.note_block.bell" + "name": "block.wart_block.step" }, { "id": 886, - "name": "block.note_block.chime" + "name": "block.wart_block.place" }, { "id": 887, - "name": "block.note_block.flute" + "name": "block.wart_block.hit" }, { "id": 888, - "name": "block.note_block.guitar" + "name": "block.wart_block.fall" }, { "id": 889, - "name": "block.note_block.harp" + "name": "block.netherite_block.break" }, { "id": 890, - "name": "block.note_block.hat" + "name": "block.netherite_block.step" }, { "id": 891, - "name": "block.note_block.pling" + "name": "block.netherite_block.place" }, { "id": 892, - "name": "block.note_block.snare" + "name": "block.netherite_block.hit" }, { "id": 893, - "name": "block.note_block.xylophone" + "name": "block.netherite_block.fall" }, { "id": 894, - "name": "block.note_block.iron_xylophone" + "name": "block.netherrack.break" }, { "id": 895, - "name": "block.note_block.cow_bell" + "name": "block.netherrack.step" }, { "id": 896, - "name": "block.note_block.didgeridoo" + "name": "block.netherrack.place" }, { "id": 897, - "name": "block.note_block.bit" + "name": "block.netherrack.hit" }, { "id": 898, - "name": "block.note_block.banjo" + "name": "block.netherrack.fall" }, { "id": 899, - "name": "block.note_block.imitate.zombie" + "name": "block.note_block.basedrum" }, { "id": 900, - "name": "block.note_block.imitate.skeleton" + "name": "block.note_block.bass" }, { "id": 901, - "name": "block.note_block.imitate.creeper" + "name": "block.note_block.bell" }, { "id": 902, - "name": "block.note_block.imitate.ender_dragon" + "name": "block.note_block.chime" }, { "id": 903, - "name": "block.note_block.imitate.wither_skeleton" + "name": "block.note_block.flute" }, { "id": 904, - "name": "block.note_block.imitate.piglin" + "name": "block.note_block.guitar" }, { "id": 905, - "name": "entity.ocelot.hurt" + "name": "block.note_block.harp" }, { "id": 906, - "name": "entity.ocelot.ambient" + "name": "block.note_block.hat" }, { "id": 907, - "name": "entity.ocelot.death" + "name": "block.note_block.pling" }, { "id": 908, - "name": "entity.painting.break" + "name": "block.note_block.snare" }, { "id": 909, - "name": "entity.painting.place" + "name": "block.note_block.xylophone" }, { "id": 910, - "name": "entity.panda.pre_sneeze" + "name": "block.note_block.iron_xylophone" }, { "id": 911, - "name": "entity.panda.sneeze" + "name": "block.note_block.cow_bell" }, { "id": 912, - "name": "entity.panda.ambient" + "name": "block.note_block.didgeridoo" }, { "id": 913, - "name": "entity.panda.death" + "name": "block.note_block.bit" }, { "id": 914, - "name": "entity.panda.eat" + "name": "block.note_block.banjo" }, { "id": 915, - "name": "entity.panda.step" + "name": "block.note_block.imitate.zombie" }, { "id": 916, - "name": "entity.panda.cant_breed" + "name": "block.note_block.imitate.skeleton" }, { "id": 917, - "name": "entity.panda.aggressive_ambient" + "name": "block.note_block.imitate.creeper" }, { "id": 918, - "name": "entity.panda.worried_ambient" + "name": "block.note_block.imitate.ender_dragon" }, { "id": 919, - "name": "entity.panda.hurt" + "name": "block.note_block.imitate.wither_skeleton" }, { "id": 920, - "name": "entity.panda.bite" + "name": "block.note_block.imitate.piglin" }, { "id": 921, - "name": "entity.parrot.ambient" + "name": "entity.ocelot.hurt" }, { "id": 922, - "name": "entity.parrot.death" + "name": "entity.ocelot.ambient" }, { "id": 923, - "name": "entity.parrot.eat" + "name": "entity.ocelot.death" }, { "id": 924, - "name": "entity.parrot.fly" + "name": "entity.painting.break" }, { "id": 925, - "name": "entity.parrot.hurt" + "name": "entity.painting.place" }, { "id": 926, - "name": "entity.parrot.imitate.blaze" + "name": "entity.panda.pre_sneeze" }, { "id": 927, - "name": "entity.parrot.imitate.creeper" + "name": "entity.panda.sneeze" }, { "id": 928, - "name": "entity.parrot.imitate.drowned" + "name": "entity.panda.ambient" }, { "id": 929, - "name": "entity.parrot.imitate.elder_guardian" + "name": "entity.panda.death" }, { "id": 930, - "name": "entity.parrot.imitate.ender_dragon" + "name": "entity.panda.eat" }, { "id": 931, - "name": "entity.parrot.imitate.endermite" + "name": "entity.panda.step" }, { "id": 932, - "name": "entity.parrot.imitate.evoker" + "name": "entity.panda.cant_breed" }, { "id": 933, - "name": "entity.parrot.imitate.ghast" + "name": "entity.panda.aggressive_ambient" }, { "id": 934, - "name": "entity.parrot.imitate.guardian" + "name": "entity.panda.worried_ambient" }, { "id": 935, - "name": "entity.parrot.imitate.hoglin" + "name": "entity.panda.hurt" }, { "id": 936, - "name": "entity.parrot.imitate.husk" + "name": "entity.panda.bite" }, { "id": 937, - "name": "entity.parrot.imitate.illusioner" + "name": "entity.parrot.ambient" }, { "id": 938, - "name": "entity.parrot.imitate.magma_cube" + "name": "entity.parrot.death" }, { "id": 939, - "name": "entity.parrot.imitate.phantom" + "name": "entity.parrot.eat" }, { "id": 940, - "name": "entity.parrot.imitate.piglin" + "name": "entity.parrot.fly" }, { "id": 941, - "name": "entity.parrot.imitate.piglin_brute" + "name": "entity.parrot.hurt" }, { "id": 942, - "name": "entity.parrot.imitate.pillager" + "name": "entity.parrot.imitate.blaze" }, { "id": 943, - "name": "entity.parrot.imitate.ravager" + "name": "entity.parrot.imitate.creeper" }, { "id": 944, - "name": "entity.parrot.imitate.shulker" + "name": "entity.parrot.imitate.drowned" }, { "id": 945, - "name": "entity.parrot.imitate.silverfish" + "name": "entity.parrot.imitate.elder_guardian" }, { "id": 946, - "name": "entity.parrot.imitate.skeleton" + "name": "entity.parrot.imitate.ender_dragon" }, { "id": 947, - "name": "entity.parrot.imitate.slime" + "name": "entity.parrot.imitate.endermite" }, { "id": 948, - "name": "entity.parrot.imitate.spider" + "name": "entity.parrot.imitate.evoker" }, { "id": 949, - "name": "entity.parrot.imitate.stray" + "name": "entity.parrot.imitate.ghast" }, { "id": 950, - "name": "entity.parrot.imitate.vex" + "name": "entity.parrot.imitate.guardian" }, { "id": 951, - "name": "entity.parrot.imitate.vindicator" + "name": "entity.parrot.imitate.hoglin" }, { "id": 952, - "name": "entity.parrot.imitate.warden" + "name": "entity.parrot.imitate.husk" }, { "id": 953, - "name": "entity.parrot.imitate.witch" + "name": "entity.parrot.imitate.illusioner" }, { "id": 954, - "name": "entity.parrot.imitate.wither" + "name": "entity.parrot.imitate.magma_cube" }, { "id": 955, - "name": "entity.parrot.imitate.wither_skeleton" + "name": "entity.parrot.imitate.phantom" }, { "id": 956, - "name": "entity.parrot.imitate.zoglin" + "name": "entity.parrot.imitate.piglin" }, { "id": 957, - "name": "entity.parrot.imitate.zombie" + "name": "entity.parrot.imitate.piglin_brute" }, { "id": 958, - "name": "entity.parrot.imitate.zombie_villager" + "name": "entity.parrot.imitate.pillager" }, { "id": 959, - "name": "entity.parrot.step" + "name": "entity.parrot.imitate.ravager" }, { "id": 960, - "name": "entity.phantom.ambient" + "name": "entity.parrot.imitate.shulker" }, { "id": 961, - "name": "entity.phantom.bite" + "name": "entity.parrot.imitate.silverfish" }, { "id": 962, - "name": "entity.phantom.death" + "name": "entity.parrot.imitate.skeleton" }, { "id": 963, - "name": "entity.phantom.flap" + "name": "entity.parrot.imitate.slime" }, { "id": 964, - "name": "entity.phantom.hurt" + "name": "entity.parrot.imitate.spider" }, { "id": 965, - "name": "entity.phantom.swoop" + "name": "entity.parrot.imitate.stray" }, { "id": 966, - "name": "entity.pig.ambient" + "name": "entity.parrot.imitate.vex" }, { "id": 967, - "name": "entity.pig.death" + "name": "entity.parrot.imitate.vindicator" }, { "id": 968, - "name": "entity.pig.hurt" + "name": "entity.parrot.imitate.warden" }, { "id": 969, - "name": "entity.pig.saddle" + "name": "entity.parrot.imitate.witch" }, { "id": 970, - "name": "entity.pig.step" + "name": "entity.parrot.imitate.wither" }, { "id": 971, - "name": "entity.piglin.admiring_item" + "name": "entity.parrot.imitate.wither_skeleton" }, { "id": 972, - "name": "entity.piglin.ambient" + "name": "entity.parrot.imitate.zoglin" }, { "id": 973, - "name": "entity.piglin.angry" + "name": "entity.parrot.imitate.zombie" }, { "id": 974, - "name": "entity.piglin.celebrate" + "name": "entity.parrot.imitate.zombie_villager" }, { "id": 975, - "name": "entity.piglin.death" + "name": "entity.parrot.step" }, { "id": 976, - "name": "entity.piglin.jealous" + "name": "entity.phantom.ambient" }, { "id": 977, - "name": "entity.piglin.hurt" + "name": "entity.phantom.bite" }, { "id": 978, - "name": "entity.piglin.retreat" + "name": "entity.phantom.death" }, { "id": 979, - "name": "entity.piglin.step" + "name": "entity.phantom.flap" }, { "id": 980, - "name": "entity.piglin.converted_to_zombified" + "name": "entity.phantom.hurt" }, { "id": 981, - "name": "entity.piglin_brute.ambient" + "name": "entity.phantom.swoop" }, { "id": 982, - "name": "entity.piglin_brute.angry" + "name": "entity.pig.ambient" }, { "id": 983, - "name": "entity.piglin_brute.death" + "name": "entity.pig.death" }, { "id": 984, - "name": "entity.piglin_brute.hurt" + "name": "entity.pig.hurt" }, { "id": 985, - "name": "entity.piglin_brute.step" + "name": "entity.pig.saddle" }, { "id": 986, - "name": "entity.piglin_brute.converted_to_zombified" + "name": "entity.pig.step" }, { "id": 987, - "name": "entity.pillager.ambient" + "name": "entity.piglin.admiring_item" }, { "id": 988, - "name": "entity.pillager.celebrate" + "name": "entity.piglin.ambient" }, { "id": 989, - "name": "entity.pillager.death" + "name": "entity.piglin.angry" }, { "id": 990, - "name": "entity.pillager.hurt" + "name": "entity.piglin.celebrate" }, { "id": 991, - "name": "block.piston.contract" + "name": "entity.piglin.death" }, { "id": 992, - "name": "block.piston.extend" + "name": "entity.piglin.jealous" }, { "id": 993, - "name": "entity.player.attack.crit" + "name": "entity.piglin.hurt" }, { "id": 994, - "name": "entity.player.attack.knockback" + "name": "entity.piglin.retreat" }, { "id": 995, - "name": "entity.player.attack.nodamage" + "name": "entity.piglin.step" }, { "id": 996, - "name": "entity.player.attack.strong" + "name": "entity.piglin.converted_to_zombified" }, { "id": 997, - "name": "entity.player.attack.sweep" + "name": "entity.piglin_brute.ambient" }, { "id": 998, - "name": "entity.player.attack.weak" + "name": "entity.piglin_brute.angry" }, { "id": 999, - "name": "entity.player.big_fall" + "name": "entity.piglin_brute.death" }, { "id": 1000, - "name": "entity.player.breath" + "name": "entity.piglin_brute.hurt" }, { "id": 1001, - "name": "entity.player.burp" + "name": "entity.piglin_brute.step" }, { "id": 1002, - "name": "entity.player.death" + "name": "entity.piglin_brute.converted_to_zombified" }, { "id": 1003, - "name": "entity.player.hurt" + "name": "entity.pillager.ambient" }, { "id": 1004, - "name": "entity.player.hurt_drown" + "name": "entity.pillager.celebrate" }, { "id": 1005, - "name": "entity.player.hurt_freeze" + "name": "entity.pillager.death" }, { "id": 1006, - "name": "entity.player.hurt_on_fire" + "name": "entity.pillager.hurt" }, { "id": 1007, - "name": "entity.player.hurt_sweet_berry_bush" + "name": "block.piston.contract" }, { "id": 1008, - "name": "entity.player.levelup" + "name": "block.piston.extend" }, { "id": 1009, - "name": "entity.player.small_fall" + "name": "entity.player.attack.crit" }, { "id": 1010, - "name": "entity.player.splash" + "name": "entity.player.attack.knockback" }, { "id": 1011, - "name": "entity.player.splash.high_speed" + "name": "entity.player.attack.nodamage" }, { "id": 1012, - "name": "entity.player.swim" + "name": "entity.player.attack.strong" }, { "id": 1013, - "name": "entity.polar_bear.ambient" + "name": "entity.player.attack.sweep" }, { "id": 1014, - "name": "entity.polar_bear.ambient_baby" + "name": "entity.player.attack.weak" }, { "id": 1015, - "name": "entity.polar_bear.death" + "name": "entity.player.big_fall" }, { "id": 1016, - "name": "entity.polar_bear.hurt" + "name": "entity.player.breath" }, { "id": 1017, - "name": "entity.polar_bear.step" + "name": "entity.player.burp" }, { "id": 1018, - "name": "entity.polar_bear.warning" + "name": "entity.player.death" }, { "id": 1019, - "name": "block.polished_deepslate.break" + "name": "entity.player.hurt" }, { "id": 1020, - "name": "block.polished_deepslate.fall" + "name": "entity.player.hurt_drown" }, { "id": 1021, - "name": "block.polished_deepslate.hit" + "name": "entity.player.hurt_freeze" }, { "id": 1022, - "name": "block.polished_deepslate.place" + "name": "entity.player.hurt_on_fire" }, { "id": 1023, - "name": "block.polished_deepslate.step" + "name": "entity.player.hurt_sweet_berry_bush" }, { "id": 1024, - "name": "block.portal.ambient" + "name": "entity.player.levelup" }, { "id": 1025, - "name": "block.portal.travel" + "name": "entity.player.small_fall" }, { "id": 1026, - "name": "block.portal.trigger" + "name": "entity.player.splash" }, { "id": 1027, - "name": "block.powder_snow.break" + "name": "entity.player.splash.high_speed" }, { "id": 1028, - "name": "block.powder_snow.fall" + "name": "entity.player.swim" }, { "id": 1029, - "name": "block.powder_snow.hit" + "name": "entity.polar_bear.ambient" }, { "id": 1030, - "name": "block.powder_snow.place" + "name": "entity.polar_bear.ambient_baby" }, { "id": 1031, - "name": "block.powder_snow.step" + "name": "entity.polar_bear.death" }, { "id": 1032, - "name": "entity.puffer_fish.ambient" + "name": "entity.polar_bear.hurt" }, { "id": 1033, - "name": "entity.puffer_fish.blow_out" + "name": "entity.polar_bear.step" }, { "id": 1034, - "name": "entity.puffer_fish.blow_up" + "name": "entity.polar_bear.warning" }, { "id": 1035, - "name": "entity.puffer_fish.death" + "name": "block.polished_deepslate.break" }, { "id": 1036, - "name": "entity.puffer_fish.flop" + "name": "block.polished_deepslate.fall" }, { "id": 1037, - "name": "entity.puffer_fish.hurt" + "name": "block.polished_deepslate.hit" }, { "id": 1038, - "name": "entity.puffer_fish.sting" + "name": "block.polished_deepslate.place" }, { "id": 1039, - "name": "block.pumpkin.carve" + "name": "block.polished_deepslate.step" }, { "id": 1040, - "name": "entity.rabbit.ambient" + "name": "block.portal.ambient" }, { "id": 1041, - "name": "entity.rabbit.attack" + "name": "block.portal.travel" }, { "id": 1042, - "name": "entity.rabbit.death" + "name": "block.portal.trigger" }, { "id": 1043, - "name": "entity.rabbit.hurt" + "name": "block.powder_snow.break" }, { "id": 1044, - "name": "entity.rabbit.jump" + "name": "block.powder_snow.fall" }, { "id": 1045, - "name": "event.raid.horn" + "name": "block.powder_snow.hit" }, { "id": 1046, - "name": "entity.ravager.ambient" + "name": "block.powder_snow.place" }, { "id": 1047, - "name": "entity.ravager.attack" + "name": "block.powder_snow.step" }, { "id": 1048, - "name": "entity.ravager.celebrate" + "name": "entity.puffer_fish.ambient" }, { "id": 1049, - "name": "entity.ravager.death" + "name": "entity.puffer_fish.blow_out" }, { "id": 1050, - "name": "entity.ravager.hurt" + "name": "entity.puffer_fish.blow_up" }, { "id": 1051, - "name": "entity.ravager.step" + "name": "entity.puffer_fish.death" }, { "id": 1052, - "name": "entity.ravager.stunned" + "name": "entity.puffer_fish.flop" }, { "id": 1053, - "name": "entity.ravager.roar" + "name": "entity.puffer_fish.hurt" }, { "id": 1054, - "name": "block.nether_gold_ore.break" + "name": "entity.puffer_fish.sting" }, { "id": 1055, - "name": "block.nether_gold_ore.fall" + "name": "block.pumpkin.carve" }, { "id": 1056, - "name": "block.nether_gold_ore.hit" + "name": "entity.rabbit.ambient" }, { "id": 1057, - "name": "block.nether_gold_ore.place" + "name": "entity.rabbit.attack" }, { "id": 1058, - "name": "block.nether_gold_ore.step" + "name": "entity.rabbit.death" }, { "id": 1059, - "name": "block.nether_ore.break" + "name": "entity.rabbit.hurt" }, { "id": 1060, - "name": "block.nether_ore.fall" + "name": "entity.rabbit.jump" }, { "id": 1061, - "name": "block.nether_ore.hit" + "name": "event.raid.horn" }, { "id": 1062, - "name": "block.nether_ore.place" + "name": "entity.ravager.ambient" }, { "id": 1063, - "name": "block.nether_ore.step" + "name": "entity.ravager.attack" }, { "id": 1064, - "name": "block.redstone_torch.burnout" + "name": "entity.ravager.celebrate" }, { "id": 1065, - "name": "block.respawn_anchor.ambient" + "name": "entity.ravager.death" }, { "id": 1066, - "name": "block.respawn_anchor.charge" + "name": "entity.ravager.hurt" }, { "id": 1067, - "name": "block.respawn_anchor.deplete" + "name": "entity.ravager.step" }, { "id": 1068, - "name": "block.respawn_anchor.set_spawn" + "name": "entity.ravager.stunned" }, { "id": 1069, - "name": "block.rooted_dirt.break" + "name": "entity.ravager.roar" }, { "id": 1070, - "name": "block.rooted_dirt.fall" + "name": "block.nether_gold_ore.break" }, { "id": 1071, - "name": "block.rooted_dirt.hit" + "name": "block.nether_gold_ore.fall" }, { "id": 1072, - "name": "block.rooted_dirt.place" + "name": "block.nether_gold_ore.hit" }, { "id": 1073, - "name": "block.rooted_dirt.step" + "name": "block.nether_gold_ore.place" }, { "id": 1074, - "name": "entity.salmon.ambient" + "name": "block.nether_gold_ore.step" }, { "id": 1075, - "name": "entity.salmon.death" + "name": "block.nether_ore.break" }, { "id": 1076, - "name": "entity.salmon.flop" + "name": "block.nether_ore.fall" }, { "id": 1077, - "name": "entity.salmon.hurt" + "name": "block.nether_ore.hit" }, { "id": 1078, - "name": "block.sand.break" + "name": "block.nether_ore.place" }, { "id": 1079, - "name": "block.sand.fall" + "name": "block.nether_ore.step" }, { "id": 1080, - "name": "block.sand.hit" + "name": "block.redstone_torch.burnout" }, { "id": 1081, - "name": "block.sand.place" + "name": "block.respawn_anchor.ambient" }, { "id": 1082, - "name": "block.sand.step" + "name": "block.respawn_anchor.charge" }, { "id": 1083, - "name": "block.scaffolding.break" + "name": "block.respawn_anchor.deplete" }, { "id": 1084, - "name": "block.scaffolding.fall" + "name": "block.respawn_anchor.set_spawn" }, { "id": 1085, - "name": "block.scaffolding.hit" + "name": "block.rooted_dirt.break" }, { "id": 1086, - "name": "block.scaffolding.place" + "name": "block.rooted_dirt.fall" }, { "id": 1087, - "name": "block.scaffolding.step" + "name": "block.rooted_dirt.hit" }, { "id": 1088, - "name": "block.sculk.spread" + "name": "block.rooted_dirt.place" }, { "id": 1089, - "name": "block.sculk.charge" + "name": "block.rooted_dirt.step" }, { "id": 1090, - "name": "block.sculk.break" + "name": "entity.salmon.ambient" }, { "id": 1091, - "name": "block.sculk.fall" + "name": "entity.salmon.death" }, { "id": 1092, - "name": "block.sculk.hit" + "name": "entity.salmon.flop" }, { "id": 1093, - "name": "block.sculk.place" + "name": "entity.salmon.hurt" }, { "id": 1094, - "name": "block.sculk.step" + "name": "block.sand.break" }, { "id": 1095, - "name": "block.sculk_catalyst.bloom" + "name": "block.sand.fall" }, { "id": 1096, - "name": "block.sculk_catalyst.break" + "name": "block.sand.hit" }, { "id": 1097, - "name": "block.sculk_catalyst.fall" + "name": "block.sand.place" }, { "id": 1098, - "name": "block.sculk_catalyst.hit" + "name": "block.sand.step" }, { "id": 1099, - "name": "block.sculk_catalyst.place" + "name": "block.scaffolding.break" }, { "id": 1100, - "name": "block.sculk_catalyst.step" + "name": "block.scaffolding.fall" }, { "id": 1101, - "name": "block.sculk_sensor.clicking" + "name": "block.scaffolding.hit" }, { "id": 1102, - "name": "block.sculk_sensor.clicking_stop" + "name": "block.scaffolding.place" }, { "id": 1103, - "name": "block.sculk_sensor.break" + "name": "block.scaffolding.step" }, { "id": 1104, - "name": "block.sculk_sensor.fall" + "name": "block.sculk.spread" }, { "id": 1105, - "name": "block.sculk_sensor.hit" + "name": "block.sculk.charge" }, { "id": 1106, - "name": "block.sculk_sensor.place" + "name": "block.sculk.break" }, { "id": 1107, - "name": "block.sculk_sensor.step" + "name": "block.sculk.fall" }, { "id": 1108, - "name": "block.sculk_shrieker.break" + "name": "block.sculk.hit" }, { "id": 1109, - "name": "block.sculk_shrieker.fall" + "name": "block.sculk.place" }, { "id": 1110, - "name": "block.sculk_shrieker.hit" + "name": "block.sculk.step" }, { "id": 1111, - "name": "block.sculk_shrieker.place" + "name": "block.sculk_catalyst.bloom" }, { "id": 1112, - "name": "block.sculk_shrieker.shriek" + "name": "block.sculk_catalyst.break" }, { "id": 1113, - "name": "block.sculk_shrieker.step" + "name": "block.sculk_catalyst.fall" }, { "id": 1114, - "name": "block.sculk_vein.break" + "name": "block.sculk_catalyst.hit" }, { "id": 1115, - "name": "block.sculk_vein.fall" + "name": "block.sculk_catalyst.place" }, { "id": 1116, - "name": "block.sculk_vein.hit" + "name": "block.sculk_catalyst.step" }, { "id": 1117, - "name": "block.sculk_vein.place" + "name": "block.sculk_sensor.clicking" }, { "id": 1118, - "name": "block.sculk_vein.step" + "name": "block.sculk_sensor.clicking_stop" }, { "id": 1119, - "name": "entity.sheep.ambient" + "name": "block.sculk_sensor.break" }, { "id": 1120, - "name": "entity.sheep.death" + "name": "block.sculk_sensor.fall" }, { "id": 1121, - "name": "entity.sheep.hurt" + "name": "block.sculk_sensor.hit" }, { "id": 1122, - "name": "entity.sheep.shear" + "name": "block.sculk_sensor.place" }, { "id": 1123, - "name": "entity.sheep.step" + "name": "block.sculk_sensor.step" }, { "id": 1124, - "name": "item.shield.block" + "name": "block.sculk_shrieker.break" }, { "id": 1125, - "name": "item.shield.break" + "name": "block.sculk_shrieker.fall" }, { "id": 1126, - "name": "block.shroomlight.break" + "name": "block.sculk_shrieker.hit" }, { "id": 1127, - "name": "block.shroomlight.step" + "name": "block.sculk_shrieker.place" }, { "id": 1128, - "name": "block.shroomlight.place" + "name": "block.sculk_shrieker.shriek" }, { "id": 1129, - "name": "block.shroomlight.hit" + "name": "block.sculk_shrieker.step" }, { "id": 1130, - "name": "block.shroomlight.fall" + "name": "block.sculk_vein.break" }, { "id": 1131, - "name": "item.shovel.flatten" + "name": "block.sculk_vein.fall" }, { "id": 1132, - "name": "entity.shulker.ambient" + "name": "block.sculk_vein.hit" }, { "id": 1133, - "name": "block.shulker_box.close" + "name": "block.sculk_vein.place" }, { "id": 1134, - "name": "block.shulker_box.open" + "name": "block.sculk_vein.step" }, { "id": 1135, - "name": "entity.shulker_bullet.hit" + "name": "entity.sheep.ambient" }, { "id": 1136, - "name": "entity.shulker_bullet.hurt" + "name": "entity.sheep.death" }, { "id": 1137, - "name": "entity.shulker.close" + "name": "entity.sheep.hurt" }, { "id": 1138, - "name": "entity.shulker.death" + "name": "entity.sheep.shear" }, { "id": 1139, - "name": "entity.shulker.hurt" + "name": "entity.sheep.step" }, { "id": 1140, - "name": "entity.shulker.hurt_closed" + "name": "item.shield.block" }, { "id": 1141, - "name": "entity.shulker.open" + "name": "item.shield.break" }, { "id": 1142, - "name": "entity.shulker.shoot" + "name": "block.shroomlight.break" }, { "id": 1143, - "name": "entity.shulker.teleport" + "name": "block.shroomlight.step" }, { "id": 1144, - "name": "entity.silverfish.ambient" + "name": "block.shroomlight.place" }, { "id": 1145, - "name": "entity.silverfish.death" + "name": "block.shroomlight.hit" }, { "id": 1146, - "name": "entity.silverfish.hurt" + "name": "block.shroomlight.fall" }, { "id": 1147, - "name": "entity.silverfish.step" + "name": "item.shovel.flatten" }, { "id": 1148, - "name": "entity.skeleton.ambient" + "name": "entity.shulker.ambient" }, { "id": 1149, - "name": "entity.skeleton.converted_to_stray" + "name": "block.shulker_box.close" }, { "id": 1150, - "name": "entity.skeleton.death" + "name": "block.shulker_box.open" }, { "id": 1151, - "name": "entity.skeleton_horse.ambient" + "name": "entity.shulker_bullet.hit" }, { "id": 1152, - "name": "entity.skeleton_horse.death" + "name": "entity.shulker_bullet.hurt" }, { "id": 1153, - "name": "entity.skeleton_horse.hurt" + "name": "entity.shulker.close" }, { "id": 1154, - "name": "entity.skeleton_horse.swim" + "name": "entity.shulker.death" }, { "id": 1155, - "name": "entity.skeleton_horse.ambient_water" + "name": "entity.shulker.hurt" }, { "id": 1156, - "name": "entity.skeleton_horse.gallop_water" + "name": "entity.shulker.hurt_closed" }, { "id": 1157, - "name": "entity.skeleton_horse.jump_water" + "name": "entity.shulker.open" }, { "id": 1158, - "name": "entity.skeleton_horse.step_water" + "name": "entity.shulker.shoot" }, { "id": 1159, - "name": "entity.skeleton.hurt" + "name": "entity.shulker.teleport" }, { "id": 1160, - "name": "entity.skeleton.shoot" + "name": "entity.silverfish.ambient" }, { "id": 1161, - "name": "entity.skeleton.step" + "name": "entity.silverfish.death" }, { "id": 1162, - "name": "entity.slime.attack" + "name": "entity.silverfish.hurt" }, { "id": 1163, - "name": "entity.slime.death" + "name": "entity.silverfish.step" }, { "id": 1164, - "name": "entity.slime.hurt" + "name": "entity.skeleton.ambient" }, { "id": 1165, - "name": "entity.slime.jump" + "name": "entity.skeleton.converted_to_stray" }, { "id": 1166, - "name": "entity.slime.squish" + "name": "entity.skeleton.death" }, { "id": 1167, - "name": "block.slime_block.break" + "name": "entity.skeleton_horse.ambient" }, { "id": 1168, - "name": "block.slime_block.fall" + "name": "entity.skeleton_horse.death" }, { "id": 1169, - "name": "block.slime_block.hit" + "name": "entity.skeleton_horse.hurt" }, { "id": 1170, - "name": "block.slime_block.place" + "name": "entity.skeleton_horse.swim" }, { "id": 1171, - "name": "block.slime_block.step" + "name": "entity.skeleton_horse.ambient_water" }, { "id": 1172, - "name": "block.small_amethyst_bud.break" + "name": "entity.skeleton_horse.gallop_water" }, { "id": 1173, - "name": "block.small_amethyst_bud.place" + "name": "entity.skeleton_horse.jump_water" }, { "id": 1174, - "name": "block.small_dripleaf.break" + "name": "entity.skeleton_horse.step_water" }, { "id": 1175, - "name": "block.small_dripleaf.fall" + "name": "entity.skeleton.hurt" }, { "id": 1176, - "name": "block.small_dripleaf.hit" + "name": "entity.skeleton.shoot" }, { "id": 1177, - "name": "block.small_dripleaf.place" + "name": "entity.skeleton.step" }, { "id": 1178, - "name": "block.small_dripleaf.step" + "name": "entity.slime.attack" }, { "id": 1179, - "name": "block.soul_sand.break" + "name": "entity.slime.death" }, { "id": 1180, - "name": "block.soul_sand.step" + "name": "entity.slime.hurt" }, { "id": 1181, - "name": "block.soul_sand.place" + "name": "entity.slime.jump" }, { "id": 1182, - "name": "block.soul_sand.hit" + "name": "entity.slime.squish" }, { "id": 1183, - "name": "block.soul_sand.fall" + "name": "block.slime_block.break" }, { "id": 1184, - "name": "block.soul_soil.break" + "name": "block.slime_block.fall" }, { "id": 1185, - "name": "block.soul_soil.step" + "name": "block.slime_block.hit" }, { "id": 1186, - "name": "block.soul_soil.place" + "name": "block.slime_block.place" }, { "id": 1187, - "name": "block.soul_soil.hit" + "name": "block.slime_block.step" }, { "id": 1188, - "name": "block.soul_soil.fall" + "name": "block.small_amethyst_bud.break" }, { "id": 1189, - "name": "particle.soul_escape" + "name": "block.small_amethyst_bud.place" }, { "id": 1190, - "name": "block.spore_blossom.break" + "name": "block.small_dripleaf.break" }, { "id": 1191, - "name": "block.spore_blossom.fall" + "name": "block.small_dripleaf.fall" }, { "id": 1192, - "name": "block.spore_blossom.hit" + "name": "block.small_dripleaf.hit" }, { "id": 1193, - "name": "block.spore_blossom.place" + "name": "block.small_dripleaf.place" }, { "id": 1194, - "name": "block.spore_blossom.step" + "name": "block.small_dripleaf.step" }, { "id": 1195, - "name": "entity.strider.ambient" + "name": "block.soul_sand.break" }, { "id": 1196, - "name": "entity.strider.happy" + "name": "block.soul_sand.step" }, { "id": 1197, - "name": "entity.strider.retreat" + "name": "block.soul_sand.place" }, { "id": 1198, - "name": "entity.strider.death" + "name": "block.soul_sand.hit" }, { "id": 1199, - "name": "entity.strider.hurt" + "name": "block.soul_sand.fall" }, { "id": 1200, - "name": "entity.strider.step" + "name": "block.soul_soil.break" }, { "id": 1201, - "name": "entity.strider.step_lava" + "name": "block.soul_soil.step" }, { "id": 1202, - "name": "entity.strider.eat" + "name": "block.soul_soil.place" }, { "id": 1203, - "name": "entity.strider.saddle" + "name": "block.soul_soil.hit" }, { "id": 1204, - "name": "entity.slime.death_small" + "name": "block.soul_soil.fall" }, { "id": 1205, - "name": "entity.slime.hurt_small" + "name": "particle.soul_escape" }, { "id": 1206, - "name": "entity.slime.jump_small" + "name": "block.spore_blossom.break" }, { "id": 1207, - "name": "entity.slime.squish_small" + "name": "block.spore_blossom.fall" }, { "id": 1208, - "name": "block.smithing_table.use" + "name": "block.spore_blossom.hit" }, { "id": 1209, - "name": "block.smoker.smoke" + "name": "block.spore_blossom.place" }, { "id": 1210, - "name": "entity.sniffer.step" + "name": "block.spore_blossom.step" }, { "id": 1211, - "name": "entity.sniffer.eat" + "name": "entity.strider.ambient" }, { "id": 1212, - "name": "entity.sniffer.idle" + "name": "entity.strider.happy" }, { "id": 1213, - "name": "entity.sniffer.hurt" + "name": "entity.strider.retreat" }, { "id": 1214, - "name": "entity.sniffer.death" + "name": "entity.strider.death" }, { "id": 1215, - "name": "entity.sniffer.drop_seed" + "name": "entity.strider.hurt" }, { "id": 1216, - "name": "entity.sniffer.scenting" + "name": "entity.strider.step" }, { "id": 1217, - "name": "entity.sniffer.sniffing" + "name": "entity.strider.step_lava" }, { "id": 1218, - "name": "entity.sniffer.searching" + "name": "entity.strider.eat" }, { "id": 1219, - "name": "entity.sniffer.digging" + "name": "entity.strider.saddle" }, { "id": 1220, - "name": "entity.sniffer.digging_stop" + "name": "entity.slime.death_small" }, { "id": 1221, - "name": "entity.sniffer.happy" + "name": "entity.slime.hurt_small" }, { "id": 1222, - "name": "entity.snowball.throw" + "name": "entity.slime.jump_small" }, { "id": 1223, - "name": "block.snow.break" + "name": "entity.slime.squish_small" }, { "id": 1224, - "name": "block.snow.fall" + "name": "block.smithing_table.use" }, { "id": 1225, - "name": "entity.snow_golem.ambient" + "name": "block.smoker.smoke" }, { "id": 1226, - "name": "entity.snow_golem.death" + "name": "entity.sniffer.step" }, { "id": 1227, - "name": "entity.snow_golem.hurt" + "name": "entity.sniffer.eat" }, { "id": 1228, - "name": "entity.snow_golem.shoot" + "name": "entity.sniffer.idle" }, { "id": 1229, - "name": "entity.snow_golem.shear" + "name": "entity.sniffer.hurt" }, { "id": 1230, - "name": "block.snow.hit" + "name": "entity.sniffer.death" }, { "id": 1231, - "name": "block.snow.place" + "name": "entity.sniffer.drop_seed" }, { "id": 1232, - "name": "block.snow.step" + "name": "entity.sniffer.scenting" }, { "id": 1233, - "name": "entity.spider.ambient" + "name": "entity.sniffer.sniffing" }, { "id": 1234, - "name": "entity.spider.death" + "name": "entity.sniffer.searching" }, { "id": 1235, - "name": "entity.spider.hurt" + "name": "entity.sniffer.digging" }, { "id": 1236, - "name": "entity.spider.step" + "name": "entity.sniffer.digging_stop" }, { "id": 1237, - "name": "entity.splash_potion.break" + "name": "entity.sniffer.happy" }, { "id": 1238, - "name": "entity.splash_potion.throw" + "name": "block.sniffer_egg.plop" }, { "id": 1239, - "name": "item.spyglass.use" + "name": "block.sniffer_egg.crack" }, { "id": 1240, - "name": "item.spyglass.stop_using" + "name": "block.sniffer_egg.hatch" }, { "id": 1241, - "name": "entity.squid.ambient" + "name": "entity.snowball.throw" }, { "id": 1242, - "name": "entity.squid.death" + "name": "block.snow.break" }, { "id": 1243, - "name": "entity.squid.hurt" + "name": "block.snow.fall" }, { "id": 1244, - "name": "entity.squid.squirt" + "name": "entity.snow_golem.ambient" }, { "id": 1245, - "name": "block.stone.break" + "name": "entity.snow_golem.death" }, { "id": 1246, - "name": "block.stone_button.click_off" + "name": "entity.snow_golem.hurt" }, { "id": 1247, - "name": "block.stone_button.click_on" + "name": "entity.snow_golem.shoot" }, { "id": 1248, - "name": "block.stone.fall" + "name": "entity.snow_golem.shear" }, { "id": 1249, - "name": "block.stone.hit" + "name": "block.snow.hit" }, { "id": 1250, - "name": "block.stone.place" + "name": "block.snow.place" }, { "id": 1251, - "name": "block.stone_pressure_plate.click_off" + "name": "block.snow.step" }, { "id": 1252, - "name": "block.stone_pressure_plate.click_on" + "name": "entity.spider.ambient" }, { "id": 1253, - "name": "block.stone.step" + "name": "entity.spider.death" }, { "id": 1254, - "name": "entity.stray.ambient" + "name": "entity.spider.hurt" }, { "id": 1255, - "name": "entity.stray.death" + "name": "entity.spider.step" }, { "id": 1256, - "name": "entity.stray.hurt" + "name": "entity.splash_potion.break" }, { "id": 1257, - "name": "entity.stray.step" + "name": "entity.splash_potion.throw" }, { "id": 1258, - "name": "block.sweet_berry_bush.break" + "name": "item.spyglass.use" }, { "id": 1259, - "name": "block.sweet_berry_bush.place" + "name": "item.spyglass.stop_using" }, { "id": 1260, - "name": "block.sweet_berry_bush.pick_berries" + "name": "entity.squid.ambient" }, { "id": 1261, - "name": "entity.tadpole.death" + "name": "entity.squid.death" }, { "id": 1262, - "name": "entity.tadpole.flop" + "name": "entity.squid.hurt" }, { "id": 1263, - "name": "entity.tadpole.grow_up" + "name": "entity.squid.squirt" }, { "id": 1264, - "name": "entity.tadpole.hurt" + "name": "block.stone.break" }, { "id": 1265, - "name": "enchant.thorns.hit" + "name": "block.stone_button.click_off" }, { "id": 1266, - "name": "entity.tnt.primed" + "name": "block.stone_button.click_on" }, { "id": 1267, - "name": "item.totem.use" + "name": "block.stone.fall" }, { "id": 1268, - "name": "item.trident.hit" + "name": "block.stone.hit" }, { "id": 1269, - "name": "item.trident.hit_ground" + "name": "block.stone.place" }, { "id": 1270, - "name": "item.trident.return" + "name": "block.stone_pressure_plate.click_off" }, { "id": 1271, - "name": "item.trident.riptide_1" + "name": "block.stone_pressure_plate.click_on" }, { "id": 1272, - "name": "item.trident.riptide_2" + "name": "block.stone.step" }, { "id": 1273, - "name": "item.trident.riptide_3" + "name": "entity.stray.ambient" }, { "id": 1274, - "name": "item.trident.throw" + "name": "entity.stray.death" }, { "id": 1275, - "name": "item.trident.thunder" + "name": "entity.stray.hurt" }, { "id": 1276, - "name": "block.tripwire.attach" + "name": "entity.stray.step" }, { "id": 1277, - "name": "block.tripwire.click_off" + "name": "block.sweet_berry_bush.break" }, { "id": 1278, - "name": "block.tripwire.click_on" + "name": "block.sweet_berry_bush.place" }, { "id": 1279, - "name": "block.tripwire.detach" + "name": "block.sweet_berry_bush.pick_berries" }, { "id": 1280, - "name": "entity.tropical_fish.ambient" + "name": "entity.tadpole.death" }, { "id": 1281, - "name": "entity.tropical_fish.death" + "name": "entity.tadpole.flop" }, { "id": 1282, - "name": "entity.tropical_fish.flop" + "name": "entity.tadpole.grow_up" }, { "id": 1283, - "name": "entity.tropical_fish.hurt" + "name": "entity.tadpole.hurt" }, { "id": 1284, - "name": "block.tuff.break" + "name": "enchant.thorns.hit" }, { "id": 1285, - "name": "block.tuff.step" + "name": "entity.tnt.primed" }, { "id": 1286, - "name": "block.tuff.place" + "name": "item.totem.use" }, { "id": 1287, - "name": "block.tuff.hit" + "name": "item.trident.hit" }, { "id": 1288, - "name": "block.tuff.fall" + "name": "item.trident.hit_ground" }, { "id": 1289, - "name": "entity.turtle.ambient_land" + "name": "item.trident.return" }, { "id": 1290, - "name": "entity.turtle.death" + "name": "item.trident.riptide_1" }, { "id": 1291, - "name": "entity.turtle.death_baby" + "name": "item.trident.riptide_2" }, { "id": 1292, - "name": "entity.turtle.egg_break" + "name": "item.trident.riptide_3" }, { "id": 1293, - "name": "entity.turtle.egg_crack" + "name": "item.trident.throw" }, { "id": 1294, - "name": "entity.turtle.egg_hatch" + "name": "item.trident.thunder" }, { "id": 1295, - "name": "entity.turtle.hurt" + "name": "block.tripwire.attach" }, { "id": 1296, - "name": "entity.turtle.hurt_baby" + "name": "block.tripwire.click_off" }, { "id": 1297, - "name": "entity.turtle.lay_egg" + "name": "block.tripwire.click_on" }, { "id": 1298, - "name": "entity.turtle.shamble" + "name": "block.tripwire.detach" }, { "id": 1299, - "name": "entity.turtle.shamble_baby" + "name": "entity.tropical_fish.ambient" }, { "id": 1300, - "name": "entity.turtle.swim" + "name": "entity.tropical_fish.death" }, { "id": 1301, - "name": "ui.button.click" + "name": "entity.tropical_fish.flop" }, { "id": 1302, - "name": "ui.loom.select_pattern" + "name": "entity.tropical_fish.hurt" }, { "id": 1303, - "name": "ui.loom.take_result" + "name": "block.tuff.break" }, { "id": 1304, - "name": "ui.cartography_table.take_result" + "name": "block.tuff.step" }, { "id": 1305, - "name": "ui.stonecutter.take_result" + "name": "block.tuff.place" }, { "id": 1306, - "name": "ui.stonecutter.select_recipe" + "name": "block.tuff.hit" }, { "id": 1307, - "name": "ui.toast.challenge_complete" + "name": "block.tuff.fall" }, { "id": 1308, - "name": "ui.toast.in" + "name": "entity.turtle.ambient_land" }, { "id": 1309, - "name": "ui.toast.out" + "name": "entity.turtle.death" }, { "id": 1310, - "name": "entity.vex.ambient" + "name": "entity.turtle.death_baby" }, { "id": 1311, - "name": "entity.vex.charge" + "name": "entity.turtle.egg_break" }, { "id": 1312, - "name": "entity.vex.death" + "name": "entity.turtle.egg_crack" }, { "id": 1313, - "name": "entity.vex.hurt" + "name": "entity.turtle.egg_hatch" }, { "id": 1314, - "name": "entity.villager.ambient" + "name": "entity.turtle.hurt" }, { "id": 1315, - "name": "entity.villager.celebrate" + "name": "entity.turtle.hurt_baby" }, { "id": 1316, - "name": "entity.villager.death" + "name": "entity.turtle.lay_egg" }, { "id": 1317, - "name": "entity.villager.hurt" + "name": "entity.turtle.shamble" }, { "id": 1318, - "name": "entity.villager.no" + "name": "entity.turtle.shamble_baby" }, { "id": 1319, - "name": "entity.villager.trade" + "name": "entity.turtle.swim" }, { "id": 1320, - "name": "entity.villager.yes" + "name": "ui.button.click" }, { "id": 1321, - "name": "entity.villager.work_armorer" + "name": "ui.loom.select_pattern" }, { "id": 1322, - "name": "entity.villager.work_butcher" + "name": "ui.loom.take_result" }, { "id": 1323, - "name": "entity.villager.work_cartographer" + "name": "ui.cartography_table.take_result" }, { "id": 1324, - "name": "entity.villager.work_cleric" + "name": "ui.stonecutter.take_result" }, { "id": 1325, - "name": "entity.villager.work_farmer" + "name": "ui.stonecutter.select_recipe" }, { "id": 1326, - "name": "entity.villager.work_fisherman" + "name": "ui.toast.challenge_complete" }, { "id": 1327, - "name": "entity.villager.work_fletcher" + "name": "ui.toast.in" }, { "id": 1328, - "name": "entity.villager.work_leatherworker" + "name": "ui.toast.out" }, { "id": 1329, - "name": "entity.villager.work_librarian" + "name": "entity.vex.ambient" }, { "id": 1330, - "name": "entity.villager.work_mason" + "name": "entity.vex.charge" }, { "id": 1331, - "name": "entity.villager.work_shepherd" + "name": "entity.vex.death" }, { "id": 1332, - "name": "entity.villager.work_toolsmith" + "name": "entity.vex.hurt" }, { "id": 1333, - "name": "entity.villager.work_weaponsmith" + "name": "entity.villager.ambient" }, { "id": 1334, - "name": "entity.vindicator.ambient" + "name": "entity.villager.celebrate" }, { "id": 1335, - "name": "entity.vindicator.celebrate" + "name": "entity.villager.death" }, { "id": 1336, - "name": "entity.vindicator.death" + "name": "entity.villager.hurt" }, { "id": 1337, - "name": "entity.vindicator.hurt" + "name": "entity.villager.no" }, { "id": 1338, - "name": "block.vine.break" + "name": "entity.villager.trade" }, { "id": 1339, - "name": "block.vine.fall" + "name": "entity.villager.yes" }, { "id": 1340, - "name": "block.vine.hit" + "name": "entity.villager.work_armorer" }, { "id": 1341, - "name": "block.vine.place" + "name": "entity.villager.work_butcher" }, { "id": 1342, - "name": "block.vine.step" + "name": "entity.villager.work_cartographer" }, { "id": 1343, - "name": "block.lily_pad.place" + "name": "entity.villager.work_cleric" }, { "id": 1344, - "name": "entity.wandering_trader.ambient" + "name": "entity.villager.work_farmer" }, { "id": 1345, - "name": "entity.wandering_trader.death" + "name": "entity.villager.work_fisherman" }, { "id": 1346, - "name": "entity.wandering_trader.disappeared" + "name": "entity.villager.work_fletcher" }, { "id": 1347, - "name": "entity.wandering_trader.drink_milk" + "name": "entity.villager.work_leatherworker" }, { "id": 1348, - "name": "entity.wandering_trader.drink_potion" + "name": "entity.villager.work_librarian" }, { "id": 1349, - "name": "entity.wandering_trader.hurt" + "name": "entity.villager.work_mason" }, { "id": 1350, - "name": "entity.wandering_trader.no" + "name": "entity.villager.work_shepherd" }, { "id": 1351, - "name": "entity.wandering_trader.reappeared" + "name": "entity.villager.work_toolsmith" }, { "id": 1352, - "name": "entity.wandering_trader.trade" + "name": "entity.villager.work_weaponsmith" }, { "id": 1353, - "name": "entity.wandering_trader.yes" + "name": "entity.vindicator.ambient" }, { "id": 1354, - "name": "entity.warden.agitated" + "name": "entity.vindicator.celebrate" }, { "id": 1355, - "name": "entity.warden.ambient" + "name": "entity.vindicator.death" }, { "id": 1356, - "name": "entity.warden.angry" + "name": "entity.vindicator.hurt" }, { "id": 1357, - "name": "entity.warden.attack_impact" + "name": "block.vine.break" }, { "id": 1358, - "name": "entity.warden.death" + "name": "block.vine.fall" }, { "id": 1359, - "name": "entity.warden.dig" + "name": "block.vine.hit" }, { "id": 1360, - "name": "entity.warden.emerge" + "name": "block.vine.place" }, { "id": 1361, - "name": "entity.warden.heartbeat" + "name": "block.vine.step" }, { "id": 1362, - "name": "entity.warden.hurt" + "name": "block.lily_pad.place" }, { "id": 1363, - "name": "entity.warden.listening" + "name": "entity.wandering_trader.ambient" }, { "id": 1364, - "name": "entity.warden.listening_angry" + "name": "entity.wandering_trader.death" }, { "id": 1365, - "name": "entity.warden.nearby_close" + "name": "entity.wandering_trader.disappeared" }, { "id": 1366, - "name": "entity.warden.nearby_closer" + "name": "entity.wandering_trader.drink_milk" }, { "id": 1367, - "name": "entity.warden.nearby_closest" + "name": "entity.wandering_trader.drink_potion" }, { "id": 1368, - "name": "entity.warden.roar" + "name": "entity.wandering_trader.hurt" }, { "id": 1369, - "name": "entity.warden.sniff" + "name": "entity.wandering_trader.no" }, { "id": 1370, - "name": "entity.warden.sonic_boom" + "name": "entity.wandering_trader.reappeared" }, { "id": 1371, - "name": "entity.warden.sonic_charge" + "name": "entity.wandering_trader.trade" }, { "id": 1372, - "name": "entity.warden.step" + "name": "entity.wandering_trader.yes" }, { "id": 1373, - "name": "entity.warden.tendril_clicks" + "name": "entity.warden.agitated" }, { "id": 1374, - "name": "block.water.ambient" + "name": "entity.warden.ambient" }, { "id": 1375, - "name": "weather.rain" + "name": "entity.warden.angry" }, { "id": 1376, - "name": "weather.rain.above" + "name": "entity.warden.attack_impact" }, { "id": 1377, - "name": "block.wet_grass.break" + "name": "entity.warden.death" }, { "id": 1378, - "name": "block.wet_grass.fall" + "name": "entity.warden.dig" }, { "id": 1379, - "name": "block.wet_grass.hit" + "name": "entity.warden.emerge" }, { "id": 1380, - "name": "block.wet_grass.place" + "name": "entity.warden.heartbeat" }, { "id": 1381, - "name": "block.wet_grass.step" + "name": "entity.warden.hurt" }, { "id": 1382, - "name": "entity.witch.ambient" + "name": "entity.warden.listening" }, { "id": 1383, - "name": "entity.witch.celebrate" + "name": "entity.warden.listening_angry" }, { "id": 1384, - "name": "entity.witch.death" + "name": "entity.warden.nearby_close" }, { "id": 1385, - "name": "entity.witch.drink" + "name": "entity.warden.nearby_closer" }, { "id": 1386, - "name": "entity.witch.hurt" + "name": "entity.warden.nearby_closest" }, { "id": 1387, - "name": "entity.witch.throw" + "name": "entity.warden.roar" }, { "id": 1388, - "name": "entity.wither.ambient" + "name": "entity.warden.sniff" }, { "id": 1389, - "name": "entity.wither.break_block" + "name": "entity.warden.sonic_boom" }, { "id": 1390, - "name": "entity.wither.death" + "name": "entity.warden.sonic_charge" }, { "id": 1391, - "name": "entity.wither.hurt" + "name": "entity.warden.step" }, { "id": 1392, - "name": "entity.wither.shoot" + "name": "entity.warden.tendril_clicks" }, { "id": 1393, - "name": "entity.wither_skeleton.ambient" + "name": "block.sign.waxed_interact_fail" }, { "id": 1394, - "name": "entity.wither_skeleton.death" + "name": "block.water.ambient" }, { "id": 1395, - "name": "entity.wither_skeleton.hurt" + "name": "weather.rain" }, { "id": 1396, - "name": "entity.wither_skeleton.step" + "name": "weather.rain.above" }, { "id": 1397, - "name": "entity.wither.spawn" + "name": "block.wet_grass.break" }, { "id": 1398, - "name": "entity.wolf.ambient" + "name": "block.wet_grass.fall" }, { "id": 1399, - "name": "entity.wolf.death" + "name": "block.wet_grass.hit" }, { "id": 1400, - "name": "entity.wolf.growl" + "name": "block.wet_grass.place" }, { "id": 1401, - "name": "entity.wolf.howl" + "name": "block.wet_grass.step" }, { "id": 1402, - "name": "entity.wolf.hurt" + "name": "entity.witch.ambient" }, { "id": 1403, - "name": "entity.wolf.pant" + "name": "entity.witch.celebrate" }, { "id": 1404, - "name": "entity.wolf.shake" + "name": "entity.witch.death" }, { "id": 1405, - "name": "entity.wolf.step" + "name": "entity.witch.drink" }, { "id": 1406, - "name": "entity.wolf.whine" + "name": "entity.witch.hurt" }, { "id": 1407, - "name": "block.wooden_door.close" + "name": "entity.witch.throw" }, { "id": 1408, - "name": "block.wooden_door.open" + "name": "entity.wither.ambient" }, { "id": 1409, - "name": "block.wooden_trapdoor.close" + "name": "entity.wither.break_block" }, { "id": 1410, - "name": "block.wooden_trapdoor.open" + "name": "entity.wither.death" }, { "id": 1411, - "name": "block.wooden_button.click_off" + "name": "entity.wither.hurt" }, { "id": 1412, - "name": "block.wooden_button.click_on" + "name": "entity.wither.shoot" }, { "id": 1413, - "name": "block.wooden_pressure_plate.click_off" + "name": "entity.wither_skeleton.ambient" }, { "id": 1414, - "name": "block.wooden_pressure_plate.click_on" + "name": "entity.wither_skeleton.death" }, { "id": 1415, - "name": "block.wood.break" + "name": "entity.wither_skeleton.hurt" }, { "id": 1416, - "name": "block.wood.fall" + "name": "entity.wither_skeleton.step" }, { "id": 1417, - "name": "block.wood.hit" + "name": "entity.wither.spawn" }, { "id": 1418, - "name": "block.wood.place" + "name": "entity.wolf.ambient" }, { "id": 1419, - "name": "block.wood.step" + "name": "entity.wolf.death" }, { "id": 1420, - "name": "block.wool.break" + "name": "entity.wolf.growl" }, { "id": 1421, - "name": "block.wool.fall" + "name": "entity.wolf.howl" }, { "id": 1422, - "name": "block.wool.hit" + "name": "entity.wolf.hurt" }, { "id": 1423, - "name": "block.wool.place" + "name": "entity.wolf.pant" }, { "id": 1424, - "name": "block.wool.step" + "name": "entity.wolf.shake" }, { "id": 1425, - "name": "entity.zoglin.ambient" + "name": "entity.wolf.step" }, { "id": 1426, - "name": "entity.zoglin.angry" + "name": "entity.wolf.whine" }, { "id": 1427, - "name": "entity.zoglin.attack" + "name": "block.wooden_door.close" }, { "id": 1428, - "name": "entity.zoglin.death" + "name": "block.wooden_door.open" }, { "id": 1429, - "name": "entity.zoglin.hurt" + "name": "block.wooden_trapdoor.close" }, { "id": 1430, - "name": "entity.zoglin.step" + "name": "block.wooden_trapdoor.open" }, { "id": 1431, - "name": "entity.zombie.ambient" + "name": "block.wooden_button.click_off" }, { "id": 1432, - "name": "entity.zombie.attack_wooden_door" + "name": "block.wooden_button.click_on" }, { "id": 1433, - "name": "entity.zombie.attack_iron_door" + "name": "block.wooden_pressure_plate.click_off" }, { "id": 1434, - "name": "entity.zombie.break_wooden_door" + "name": "block.wooden_pressure_plate.click_on" }, { "id": 1435, - "name": "entity.zombie.converted_to_drowned" + "name": "block.wood.break" }, { "id": 1436, - "name": "entity.zombie.death" + "name": "block.wood.fall" }, { "id": 1437, - "name": "entity.zombie.destroy_egg" + "name": "block.wood.hit" }, { "id": 1438, - "name": "entity.zombie_horse.ambient" + "name": "block.wood.place" }, { "id": 1439, - "name": "entity.zombie_horse.death" + "name": "block.wood.step" }, { "id": 1440, - "name": "entity.zombie_horse.hurt" + "name": "block.wool.break" }, { "id": 1441, - "name": "entity.zombie.hurt" + "name": "block.wool.fall" }, { "id": 1442, - "name": "entity.zombie.infect" + "name": "block.wool.hit" }, { "id": 1443, - "name": "entity.zombified_piglin.ambient" + "name": "block.wool.place" }, { "id": 1444, - "name": "entity.zombified_piglin.angry" + "name": "block.wool.step" }, { "id": 1445, - "name": "entity.zombified_piglin.death" + "name": "entity.zoglin.ambient" }, { "id": 1446, - "name": "entity.zombified_piglin.hurt" + "name": "entity.zoglin.angry" }, { "id": 1447, - "name": "entity.zombie.step" + "name": "entity.zoglin.attack" }, { "id": 1448, - "name": "entity.zombie_villager.ambient" + "name": "entity.zoglin.death" }, { "id": 1449, - "name": "entity.zombie_villager.converted" + "name": "entity.zoglin.hurt" }, { "id": 1450, - "name": "entity.zombie_villager.cure" + "name": "entity.zoglin.step" }, { "id": 1451, - "name": "entity.zombie_villager.death" + "name": "entity.zombie.ambient" }, { "id": 1452, - "name": "entity.zombie_villager.hurt" + "name": "entity.zombie.attack_wooden_door" }, { "id": 1453, + "name": "entity.zombie.attack_iron_door" + }, + { + "id": 1454, + "name": "entity.zombie.break_wooden_door" + }, + { + "id": 1455, + "name": "entity.zombie.converted_to_drowned" + }, + { + "id": 1456, + "name": "entity.zombie.death" + }, + { + "id": 1457, + "name": "entity.zombie.destroy_egg" + }, + { + "id": 1458, + "name": "entity.zombie_horse.ambient" + }, + { + "id": 1459, + "name": "entity.zombie_horse.death" + }, + { + "id": 1460, + "name": "entity.zombie_horse.hurt" + }, + { + "id": 1461, + "name": "entity.zombie.hurt" + }, + { + "id": 1462, + "name": "entity.zombie.infect" + }, + { + "id": 1463, + "name": "entity.zombified_piglin.ambient" + }, + { + "id": 1464, + "name": "entity.zombified_piglin.angry" + }, + { + "id": 1465, + "name": "entity.zombified_piglin.death" + }, + { + "id": 1466, + "name": "entity.zombified_piglin.hurt" + }, + { + "id": 1467, + "name": "entity.zombie.step" + }, + { + "id": 1468, + "name": "entity.zombie_villager.ambient" + }, + { + "id": 1469, + "name": "entity.zombie_villager.converted" + }, + { + "id": 1470, + "name": "entity.zombie_villager.cure" + }, + { + "id": 1471, + "name": "entity.zombie_villager.death" + }, + { + "id": 1472, + "name": "entity.zombie_villager.hurt" + }, + { + "id": 1473, "name": "entity.zombie_villager.step" } ] \ No newline at end of file diff --git a/extracted/tags.json b/extracted/tags.json index e83bc33..0f4ba3b 100644 --- a/extracted/tags.json +++ b/extracted/tags.json @@ -1,1374 +1,252 @@ [ { - "registry": "minecraft:painting_variant", + "registry": "minecraft:damage_type", "tags": [ { - "name": "minecraft:placeable", + "name": "minecraft:bypasses_effects", + "entries": [ + 35 + ] + }, + { + "name": "minecraft:always_most_significant_fall", + "entries": [ + 29 + ] + }, + { + "name": "minecraft:is_fall", "entries": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, 8, + 34 + ] + }, + { + "name": "minecraft:bypasses_armor", + "entries": [ + 28, + 20, + 3, + 5, + 14, + 16, + 42, + 4, + 35, + 8, + 15, + 34, + 24, + 21, + 29, + 17, + 33, + 30 + ] + }, + { + "name": "minecraft:ignites_armor_stands", + "entries": [ + 19 + ] + }, + { + "name": "minecraft:witch_resistant_to", + "entries": [ + 24, + 21, + 33, + 38 + ] + }, + { + "name": "minecraft:bypasses_resistance", + "entries": [ + 29, + 17 + ] + }, + { + "name": "minecraft:avoids_guardian_thorns", + "entries": [ + 24, + 38, + 13, + 7, + 32, + 1 + ] + }, + { + "name": "minecraft:bypasses_invulnerability", + "entries": [ + 29, + 17 + ] + }, + { + "name": "minecraft:burns_armor_stands", + "entries": [ + 28 + ] + }, + { + "name": "minecraft:no_anger", + "entries": [ + 26 + ] + }, + { + "name": "minecraft:is_drowning", + "entries": [ + 5 + ] + }, + { + "name": "minecraft:always_triggers_silverfish", + "entries": [ + 24 + ] + }, + { + "name": "minecraft:always_hurts_ender_dragons", + "entries": [ + 13, + 7, + 32, + 1 + ] + }, + { + "name": "minecraft:is_fire", + "entries": [ + 19, + 28, + 22, + 18, + 41, + 12 + ] + }, + { + "name": "minecraft:damages_helmet", + "entries": [ 9, 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, + 11 + ] + }, + { + "name": "minecraft:wither_immune_to", + "entries": [ + 5 + ] + }, + { + "name": "minecraft:bypasses_shield", + "entries": [ + 28, 20, - 21, - 22, - 23, + 3, + 5, + 14, + 16, + 42, + 4, + 35, + 8, + 15, + 34, 24, - 29 + 21, + 29, + 17, + 33, + 30, + 9, + 11 + ] + }, + { + "name": "minecraft:no_impact", + "entries": [ + 5 + ] + }, + { + "name": "minecraft:is_explosion", + "entries": [ + 13, + 7, + 32, + 1 + ] + }, + { + "name": "minecraft:is_lightning", + "entries": [ + 23 + ] + }, + { + "name": "minecraft:is_freezing", + "entries": [ + 15 + ] + }, + { + "name": "minecraft:is_projectile", + "entries": [ + 0, + 40, + 27, + 41, + 12, + 43, + 39 + ] + }, + { + "name": "minecraft:bypasses_enchantments", + "entries": [ + 33 ] } ] }, { - "registry": "minecraft:worldgen/biome", + "registry": "minecraft:cat_variant", "tags": [ { - "name": "c:climate_wet", + "name": "minecraft:default_spawns", "entries": [ - 10, - 11, - 8, - 12, - 34, - 28, - 21, - 5, - 56, - 39, - 23, - 30, - 52, - 29, + 0, 1, - 27, - 48 - ] - }, - { - "name": "minecraft:has_structure/nether_fortress", - "entries": [ - 33, - 47, - 6, - 57, - 2 - ] - }, - { - "name": "minecraft:water_on_map_outlines", - "entries": [ - 10, - 8, - 12, - 11, - 21, - 34, - 5, - 28, - 56, - 39, - 23, - 52, - 30 - ] - }, - { - "name": "minecraft:is_river", - "entries": [ - 39, - 23 - ] - }, - { - "name": "c:nether_forests", - "entries": [ - 57, - 6 - ] - }, - { - "name": "minecraft:has_structure/mineshaft", - "entries": [ - 10, - 8, - 12, - 11, - 21, - 34, - 5, - 28, - 56, - 39, - 23, + 2, 3, - 43, - 31, - 22, - 26, - 49, - 45, - 60, - 58, - 59, - 53, - 46, - 36, - 37, - 1, - 27, - 48, - 20, - 19, 4, - 35, - 7, - 24, - 50, - 32, - 25, - 61, - 13, - 40, - 44, - 38, - 51, - 52, - 30, - 41, - 14, - 29 - ] - }, - { - "name": "minecraft:has_structure/jungle_temple", - "entries": [ - 1, - 27 - ] - }, - { - "name": "c:mushroom", - "entries": [ - 32 - ] - }, - { - "name": "c:in_nether", - "entries": [ - 33, - 47, - 6, - 57, - 2 - ] - }, - { - "name": "c:tree_coniferous", - "entries": [ - 24, - 53, - 46, - 36, - 37 - ] - }, - { - "name": "c:mountain", - "entries": [ - 31, - 22, - 26, - 49, - 45 - ] - }, - { - "name": "c:savanna", - "entries": [ - 40, - 41, - 61 - ] - }, - { - "name": "minecraft:is_jungle", - "entries": [ - 1, - 27, - 48 - ] - }, - { - "name": "minecraft:is_ocean", - "entries": [ - 10, - 8, - 12, - 11, - 21, - 34, 5, - 28, - 56 + 6, + 7, + 8, + 9 ] }, { - "name": "c:caves", + "name": "minecraft:full_moon_spawns", "entries": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, 9, - 14, - 29 - ] - }, - { - "name": "c:floral", - "entries": [ - 51, - 19 - ] - }, - { - "name": "minecraft:has_structure/buried_treasure", - "entries": [ - 3, - 43 - ] - }, - { - "name": "minecraft:has_structure/ocean_ruin_cold", - "entries": [ - 21, - 5, - 34, - 10, - 8, - 12 - ] - }, - { - "name": "minecraft:produces_corals_from_bonemeal", - "entries": [ - 56 - ] - }, - { - "name": "c:badlands", - "entries": [ - 62, - 18, - 0 - ] - }, - { - "name": "minecraft:has_structure/stronghold", - "entries": [ - 32, - 10, - 21, - 8, - 5, - 12, - 34, - 11, - 28, - 56, - 50, - 52, - 30, - 45, - 44, - 43, - 59, - 24, - 60, - 46, - 58, - 53, - 38, - 31, - 3, - 20, - 37, - 19, - 4, - 7, - 41, - 40, - 27, - 0, - 13, - 62, - 26, - 49, - 23, - 39, - 25, - 36, - 51, - 35, - 48, - 1, - 18, - 61, - 22, - 14, - 29, - 9 - ] - }, - { - "name": "minecraft:has_structure/mineshaft_mesa", - "entries": [ - 0, - 18, - 62 - ] - }, - { - "name": "minecraft:has_structure/ancient_city", - "entries": [ - 9 - ] - }, - { - "name": "c:underground", - "entries": [ - 9, - 14, - 29 - ] - }, - { - "name": "minecraft:has_structure/shipwreck", - "entries": [ - 10, - 8, - 12, - 11, - 21, - 34, - 5, - 28, - 56 - ] - }, - { - "name": "c:snowy_plains", - "entries": [ - 44 - ] - }, - { - "name": "minecraft:is_savanna", - "entries": [ - 40, - 41, - 61 - ] - }, - { - "name": "c:vegetation_dense", - "entries": [ - 1, - 27, - 48, - 51 - ] - }, - { - "name": "c:jungle", - "entries": [ - 1, - 27, - 48 - ] - }, - { - "name": "minecraft:has_structure/igloo", - "entries": [ - 46, - 44, - 45 - ] - }, - { - "name": "minecraft:has_structure/shipwreck_beached", - "entries": [ - 3, - 43 - ] - }, - { - "name": "c:wasteland", - "entries": [] - }, - { - "name": "minecraft:is_hill", - "entries": [ - 60, - 58, - 59 - ] - }, - { - "name": "c:forest", - "entries": [ - 20, - 19, - 4, - 35, - 7, - 24 - ] - }, - { - "name": "c:end_islands", - "entries": [] - }, - { - "name": "c:dead", - "entries": [] - }, - { - "name": "minecraft:allows_surface_slime_spawns", - "entries": [ - 52, - 30 - ] - }, - { - "name": "c:deep_ocean", - "entries": [ - 10, - 11, - 8, - 12 - ] - }, - { - "name": "c:swamp", - "entries": [ - 30, - 52 - ] - }, - { - "name": "minecraft:required_ocean_monument_surrounding", - "entries": [ - 10, - 8, - 12, - 11, - 21, - 34, - 5, - 28, - 56, - 39, - 23 - ] - }, - { - "name": "c:in_overworld", - "entries": [ - 32, - 10, - 21, - 8, - 5, - 12, - 34, - 11, - 28, - 56, - 50, - 52, - 30, - 45, - 44, - 43, - 59, - 24, - 60, - 46, - 58, - 53, - 38, - 31, - 3, - 20, - 37, - 19, - 4, - 7, - 41, - 40, - 27, - 0, - 13, - 62, - 26, - 49, - 23, - 39, - 25, - 36, - 51, - 35, - 48, - 1, - 18, - 61, - 22, - 14, - 29, - 9 - ] - }, - { - "name": "c:tree_jungle", - "entries": [ - 1, - 27, - 48 - ] - }, - { - "name": "minecraft:has_structure/ocean_monument", - "entries": [ - 10, - 8, - 12, - 11 - ] - }, - { - "name": "minecraft:spawns_white_rabbits", - "entries": [ - 44, - 25, - 21, - 46, - 23, - 43, - 22, - 26, - 45, - 24 - ] - }, - { - "name": "minecraft:has_structure/ruined_portal_jungle", - "entries": [ - 1, - 27, - 48 - ] - }, - { - "name": "c:climate_cold", - "entries": [ - 44, - 24, - 26, - 53, - 46, - 37, - 36, - 22, - 25 - ] - }, - { - "name": "minecraft:plays_underwater_music", - "entries": [ - 10, - 8, - 12, - 11, - 21, - 34, - 5, - 28, - 56, - 39, - 23 - ] - }, - { - "name": "minecraft:has_structure/desert_pyramid", - "entries": [ - 13 - ] - }, - { - "name": "minecraft:has_structure/ruined_portal_ocean", - "entries": [ - 10, - 8, - 12, - 11, - 21, - 34, - 5, - 28, - 56 - ] - }, - { - "name": "c:in_the_end", - "entries": [ - 54, - 16, - 17, - 42, - 15 - ] - }, - { - "name": "minecraft:is_deep_ocean", - "entries": [ - 10, - 8, - 12, - 11 - ] - }, - { - "name": "c:river", - "entries": [ - 39, - 23 - ] - }, - { - "name": "c:windswept", - "entries": [ - 60, - 59, - 58, - 61 - ] - }, - { - "name": "minecraft:is_nether", - "entries": [ - 33, - 47, - 6, - 57, - 2 - ] - }, - { - "name": "c:climate_hot", - "entries": [ - 1, - 27, - 48, - 40, - 41, - 61, - 13, - 62, - 18, - 0, - 49, - 32, - 33, - 47, - 6, - 57, - 2 - ] - }, - { - "name": "c:desert", - "entries": [ - 13 - ] - }, - { - "name": "minecraft:increased_fire_burnout", - "entries": [ - 1, - 32, - 30, - 45, - 22, - 26, - 52, - 27 - ] - }, - { - "name": "minecraft:has_structure/woodland_mansion", - "entries": [ - 7 - ] - }, - { - "name": "c:mountain_peak", - "entries": [ - 22, - 26, - 49 - ] - }, - { - "name": "minecraft:has_structure/ocean_ruin_warm", - "entries": [ - 28, - 56, - 11 - ] - }, - { - "name": "c:shallow_ocean", - "entries": [ - 34, - 28, - 21, - 5, - 56 - ] - }, - { - "name": "c:flower_forests", - "entries": [ - 19 - ] - }, - { - "name": "c:tree_deciduous", - "entries": [ - 20, - 58, - 19, - 4, - 7, - 35 - ] - }, - { - "name": "minecraft:has_structure/village_desert", - "entries": [ - 13 - ] - }, - { - "name": "minecraft:more_frequent_drowned_spawns", - "entries": [ - 39, - 23 - ] - }, - { - "name": "c:tree_savanna", - "entries": [ - 40, - 41, - 61 - ] - }, - { - "name": "minecraft:spawns_snow_foxes", - "entries": [ - 44, - 25, - 21, - 46, - 23, - 43, - 22, - 26, - 45, - 24 - ] - }, - { - "name": "minecraft:is_forest", - "entries": [ - 20, - 19, - 4, - 35, - 7, - 24 - ] - }, - { - "name": "minecraft:is_overworld", - "entries": [ - 32, - 10, - 21, - 8, - 5, - 12, - 34, - 11, - 28, - 56, - 50, - 52, - 30, - 45, - 44, - 43, - 59, - 24, - 60, - 46, - 58, - 53, - 38, - 31, - 3, - 20, - 37, - 19, - 4, - 7, - 41, - 40, - 27, - 0, - 13, - 62, - 26, - 49, - 23, - 39, - 25, - 36, - 51, - 35, - 48, - 1, - 18, - 61, - 22, - 14, - 29, - 9 - ] - }, - { - "name": "minecraft:has_structure/village_savanna", - "entries": [ - 40 - ] - }, - { - "name": "c:icy", - "entries": [ - 22, - 25 - ] - }, - { - "name": "c:stony_shores", - "entries": [ - 50 - ] - }, - { - "name": "minecraft:without_patrol_spawns", - "entries": [ - 32 - ] - }, - { - "name": "c:mountain_slope", - "entries": [ - 45 - ] - }, - { - "name": "minecraft:has_structure/village_taiga", - "entries": [ - 53 - ] - }, - { - "name": "minecraft:allows_tropical_fish_spawns_at_any_height", - "entries": [ - 29 - ] - }, - { - "name": "c:void", - "entries": [ - 55 - ] - }, - { - "name": "minecraft:polar_bears_spawn_on_alternate_blocks", - "entries": [ - 21, 10 ] - }, - { - "name": "minecraft:has_closer_water_fog", - "entries": [ - 52, - 30 - ] - }, - { - "name": "minecraft:has_structure/village_plains", - "entries": [ - 38, - 31 - ] - }, - { - "name": "c:ocean", - "entries": [ - 10, - 11, - 8, - 12, - 34, - 28, - 21, - 5, - 56 - ] - }, - { - "name": "minecraft:snow_golem_melts", - "entries": [ - 0, - 2, - 6, - 13, - 18, - 33, - 40, - 41, - 47, - 57, - 61, - 62 - ] - }, - { - "name": "minecraft:without_wandering_trader_spawns", - "entries": [ - 55 - ] - }, - { - "name": "minecraft:has_structure/ruined_portal_desert", - "entries": [ - 13 - ] - }, - { - "name": "minecraft:has_structure/ruined_portal_swamp", - "entries": [ - 52, - 30 - ] - }, - { - "name": "minecraft:has_structure/swamp_hut", - "entries": [ - 52 - ] - }, - { - "name": "minecraft:spawns_cold_variant_frogs", - "entries": [ - 44, - 25, - 22, - 26, - 45, - 21, - 10, - 24, - 9, - 23, - 46, - 43, - 54, - 16, - 17, - 42, - 15 - ] - }, - { - "name": "minecraft:has_structure/ruined_portal_nether", - "entries": [ - 33, - 47, - 6, - 57, - 2 - ] - }, - { - "name": "minecraft:is_end", - "entries": [ - 54, - 16, - 17, - 42, - 15 - ] - }, - { - "name": "c:climate_dry", - "entries": [ - 33, - 47, - 6, - 57, - 2, - 62, - 18, - 0, - 13, - 40, - 41, - 61 - ] - }, - { - "name": "minecraft:stronghold_biased_to", - "entries": [ - 38, - 51, - 44, - 25, - 13, - 20, - 19, - 4, - 7, - 35, - 36, - 37, - 53, - 46, - 40, - 41, - 60, - 59, - 58, - 61, - 27, - 48, - 1, - 0, - 18, - 62, - 31, - 24, - 45, - 22, - 26, - 49, - 32, - 14, - 29 - ] - }, - { - "name": "minecraft:without_zombie_sieges", - "entries": [ - 32 - ] - }, - { - "name": "minecraft:is_beach", - "entries": [ - 3, - 43 - ] - }, - { - "name": "minecraft:has_structure/ruined_portal_standard", - "entries": [ - 3, - 43, - 39, - 23, - 53, - 46, - 36, - 37, - 20, - 19, - 4, - 35, - 7, - 24, - 32, - 25, - 14, - 29, - 40, - 44, - 38, - 51 - ] - }, - { - "name": "minecraft:has_structure/pillager_outpost", - "entries": [ - 13, - 38, - 40, - 44, - 53, - 31, - 22, - 26, - 49, - 45, - 24 - ] - }, - { - "name": "c:birch_forest", - "entries": [ - 4, - 35 - ] - }, - { - "name": "c:mesa", - "entries": [ - 62, - 18, - 0 - ] - }, - { - "name": "minecraft:is_taiga", - "entries": [ - 53, - 46, - 36, - 37 - ] - }, - { - "name": "minecraft:spawns_warm_variant_frogs", - "entries": [ - 13, - 56, - 1, - 27, - 48, - 40, - 41, - 61, - 33, - 47, - 6, - 57, - 2, - 0, - 18, - 62, - 30 - ] - }, - { - "name": "minecraft:mineshaft_blocking", - "entries": [ - 9 - ] - }, - { - "name": "minecraft:is_mountain", - "entries": [ - 31, - 22, - 26, - 49, - 45 - ] - }, - { - "name": "c:plains", - "entries": [ - 51, - 38 - ] - }, - { - "name": "minecraft:has_structure/village_snowy", - "entries": [ - 44 - ] - }, - { - "name": "c:snowy", - "entries": [ - 43, - 44, - 45, - 46 - ] - }, - { - "name": "minecraft:is_badlands", - "entries": [ - 0, - 18, - 62 - ] - }, - { - "name": "c:climate_temperate", - "entries": [ - 20, - 51, - 52, - 50, - 7, - 58, - 4, - 35, - 31, - 38 - ] - }, - { - "name": "minecraft:spawns_gold_rabbits", - "entries": [ - 13 - ] - }, - { - "name": "c:aquatic", - "entries": [ - 10, - 11, - 8, - 12, - 34, - 28, - 21, - 5, - 56, - 39, - 23 - ] - }, - { - "name": "c:taiga", - "entries": [ - 53, - 46, - 36, - 37 - ] - }, - { - "name": "c:aquatic_icy", - "entries": [ - 23, - 10, - 21 - ] - }, - { - "name": "minecraft:has_structure/nether_fossil", - "entries": [ - 47 - ] - }, - { - "name": "c:vegetation_sparse", - "entries": [ - 40, - 41, - 61, - 13, - 29 - ] - }, - { - "name": "minecraft:has_structure/end_city", - "entries": [ - 16, - 17 - ] - }, - { - "name": "c:beach", - "entries": [ - 3, - 43, - 50 - ] - }, - { - "name": "c:extreme_hills", - "entries": [ - 59, - 60 - ] - }, - { - "name": "minecraft:reduce_water_ambient_spawns", - "entries": [ - 39, - 23 - ] - }, - { - "name": "minecraft:has_structure/bastion_remnant", - "entries": [ - 6, - 33, - 47, - 57 - ] - }, - { - "name": "minecraft:has_structure/ruined_portal_mountain", - "entries": [ - 0, - 18, - 62, - 60, - 58, - 59, - 41, - 61, - 50, - 31, - 22, - 26, - 49, - 45 - ] } ] }, @@ -1423,1120 +301,476 @@ ] }, { - "registry": "minecraft:game_event", - "tags": [ - { - "name": "minecraft:vibrations", - "entries": [ - 1, - 2, - 3, - 5, - 6, - 7, - 8, - 0, - 4, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 26, - 27, - 28, - 29, - 30, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 42, - 44, - 45, - 46, - 47, - 25 - ] - }, - { - "name": "minecraft:ignore_vibrations_sneaking", - "entries": [ - 28, - 40, - 45, - 46, - 31, - 30 - ] - }, - { - "name": "minecraft:warden_can_listen", - "entries": [ - 1, - 2, - 3, - 5, - 6, - 7, - 8, - 0, - 4, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 26, - 27, - 28, - 29, - 30, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 42, - 44, - 45, - 46, - 47, - 43, - 41 - ] - }, - { - "name": "minecraft:allay_can_listen", - "entries": [ - 35 - ] - }, - { - "name": "minecraft:shrieker_can_listen", - "entries": [ - 41 - ] - } - ] - }, - { - "registry": "minecraft:cat_variant", - "tags": [ - { - "name": "minecraft:default_spawns", - "entries": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9 - ] - }, - { - "name": "minecraft:full_moon_spawns", - "entries": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10 - ] - } - ] - }, - { - "registry": "minecraft:damage_type", - "tags": [ - { - "name": "minecraft:always_most_significant_fall", - "entries": [ - 28 - ] - }, - { - "name": "minecraft:bypasses_effects", - "entries": [ - 33 - ] - }, - { - "name": "minecraft:is_fall", - "entries": [ - 8, - 32 - ] - }, - { - "name": "minecraft:bypasses_armor", - "entries": [ - 27, - 19, - 3, - 5, - 14, - 16, - 40, - 4, - 33, - 8, - 15, - 32, - 23, - 20, - 28, - 31 - ] - }, - { - "name": "minecraft:ignites_armor_stands", - "entries": [ - 18 - ] - }, - { - "name": "minecraft:witch_resistant_to", - "entries": [ - 23, - 20, - 31, - 36 - ] - }, - { - "name": "minecraft:bypasses_invulnerability", - "entries": [ - 28 - ] - }, - { - "name": "minecraft:burns_armor_stands", - "entries": [ - 27 - ] - }, - { - "name": "minecraft:avoids_guardian_thorns", - "entries": [ - 23, - 36, - 13, - 7, - 30, - 1 - ] - }, - { - "name": "minecraft:bypasses_resistance", - "entries": [ - 28 - ] - }, - { - "name": "minecraft:no_anger", - "entries": [ - 25 - ] - }, - { - "name": "minecraft:is_drowning", - "entries": [ - 5 - ] - }, - { - "name": "minecraft:always_triggers_silverfish", - "entries": [ - 23 - ] - }, - { - "name": "minecraft:always_hurts_ender_dragons", - "entries": [ - 13, - 7, - 30, - 1 - ] - }, - { - "name": "minecraft:is_fire", - "entries": [ - 18, - 27, - 21, - 17, - 39, - 12 - ] - }, - { - "name": "minecraft:damages_helmet", - "entries": [ - 9, - 10, - 11 - ] - }, - { - "name": "minecraft:bypasses_shield", - "entries": [ - 27, - 19, - 3, - 5, - 14, - 16, - 40, - 4, - 33, - 8, - 15, - 32, - 23, - 20, - 28, - 31, - 9, - 11 - ] - }, - { - "name": "minecraft:wither_immune_to", - "entries": [ - 5 - ] - }, - { - "name": "minecraft:no_impact", - "entries": [ - 5 - ] - }, - { - "name": "minecraft:is_explosion", - "entries": [ - 13, - 7, - 30, - 1 - ] - }, - { - "name": "minecraft:is_lightning", - "entries": [ - 22 - ] - }, - { - "name": "minecraft:is_freezing", - "entries": [ - 15 - ] - }, - { - "name": "minecraft:is_projectile", - "entries": [ - 0, - 38, - 26, - 39, - 12, - 41, - 37 - ] - }, - { - "name": "minecraft:bypasses_enchantments", - "entries": [ - 31 - ] - } - ] - }, - { - "registry": "minecraft:enchantment", - "tags": [ - { - "name": "c:weapon_damage_enhancement", - "entries": [ - 15, - 31, - 14, - 24, - 13 - ] - }, - { - "name": "c:entity_movement_enhancement", - "entries": [ - 12, - 8, - 11 - ] - }, - { - "name": "c:looting", - "entries": [ - 18 - ] - }, - { - "name": "c:entity_defense_enhancement", - "entries": [ - 2, - 0, - 3, - 4, - 1, - 5 - ] - }, - { - "name": "c:fortune", - "entries": [ - 23 - ] - } - ] - }, - { - "registry": "minecraft:block", + "registry": "minecraft:item", "tags": [ { "name": "minecraft:soul_fire_base_blocks", "entries": [ - 256, - 257 + 304, + 305 ] }, { - "name": "minecraft:campfires", + "name": "c:sandstone_stairs", "entries": [ - 782, - 783 + 358, + 606, + 491, + 600 ] }, { - "name": "minecraft:infiniburn_nether", + "name": "minecraft:trim_materials", "entries": [ - 255, - 604 + 770, + 772, + 774, + 766, + 765, + 764, + 775, + 635, + 767, + 768 + ] + }, + { + "name": "c:foods", + "entries": [ + 759, + 809, + 815, + 841, + 842, + 844, + 845, + 895, + 896, + 897, + 898, + 899, + 900, + 940, + 943, + 944, + 947, + 948, + 949, + 950, + 951, + 959, + 1051, + 1052, + 1053, + 1054, + 1056, + 1065, + 1072, + 1073, + 1074, + 1085, + 1086, + 1104, + 1108, + 1110, + 1144, + 1165, + 1166, + 1173 + ] + }, + { + "name": "minecraft:beacon_payment_items", + "entries": [ + 775, + 765, + 764, + 774, + 770 + ] + }, + { + "name": "c:lava_buckets", + "entries": [ + 870 + ] + }, + { + "name": "c:raw_iron_ores", + "entries": [ + 769 ] }, { "name": "minecraft:wooden_slabs", "entries": [ - 538, - 539, - 540, - 541, - 542, - 544, - 808, - 809, - 545 - ] - }, - { - "name": "minecraft:snaps_goat_horn", - "entries": [ - 49, - 47, - 45, - 48, - 46, - 51, - 52, - 1, - 495, - 40, - 42, - 918, - 341 + 230, + 231, + 232, + 233, + 234, + 236, + 240, + 241, + 237, + 238, + 235 ] }, { "name": "minecraft:coal_ores", "entries": [ - 42, - 43 + 49, + 50 ] }, { - "name": "minecraft:occludes_vibration_signals", + "name": "c:magenta_dyes", "entries": [ - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144 - ] - }, - { - "name": "minecraft:replaceable_plants", - "entries": [ - 122, - 123, - 124, - 316, - 317, - 496, - 497, - 498, - 499, - 500, - 501, - 962 + 906 ] }, { "name": "minecraft:small_flowers", "entries": [ - 146, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 159, - 158 + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209 ] }, { - "name": "minecraft:azalea_root_replaceable", + "name": "c:axes", "entries": [ - 1, - 2, - 4, - 6, - 905, - 965, - 9, - 8, - 11, - 10, - 322, - 963, - 958, - 964, - 54, - 493, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 36, - 250, - 37, - 34, - 248, - 908 + 800, + 790, + 780, + 785, + 795, + 805 + ] + }, + { + "name": "c:raw_iron_blocks", + "entries": [ + 69 ] }, { "name": "minecraft:wooden_trapdoors", "entries": [ - 288, - 286, - 290, - 287, - 284, - 285, - 814, - 815, - 291 + 705, + 703, + 707, + 704, + 701, + 702, + 710, + 711, + 708, + 709, + 706 ] }, { - "name": "minecraft:invalid_spawn_inside", + "name": "c:pink_dyes", "entries": [ - 334, - 600 + 910 ] }, { - "name": "minecraft:wolves_spawnable_on", + "name": "c:shovels", "entries": [ - 8, - 246, - 248 + 798, + 788, + 778, + 783, + 793, + 803 ] }, { - "name": "minecraft:foxes_spawnable_on", + "name": "c:black_dyes", "entries": [ - 8, - 246, - 248, - 11, - 10 + 919 + ] + }, + { + "name": "minecraft:trimmable_armor", + "entries": [ + 836, + 837, + 838, + 839, + 828, + 829, + 830, + 831, + 832, + 833, + 834, + 835, + 824, + 825, + 826, + 827, + 820, + 821, + 822, + 823, + 816, + 817, + 818, + 819, + 756 + ] + }, + { + "name": "c:lapis", + "entries": [ + 766 + ] + }, + { + "name": "c:netherite_ingots", + "entries": [ + 775 + ] + }, + { + "name": "minecraft:axolotl_tempt_items", + "entries": [ + 878 + ] + }, + { + "name": "c:spears", + "entries": [ + 1139 ] }, { "name": "minecraft:wool", "entries": [ - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144 + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195 + ] + }, + { + "name": "c:purple_dyes", + "entries": [ + 914 ] }, { "name": "minecraft:stairs", "entries": [ - 175, - 347, + 361, + 362, + 363, + 364, + 365, + 367, + 371, + 372, + 368, + 369, + 366, + 370, + 282, + 358, 348, - 349, - 456, - 458, - 818, - 819, - 459, - 197, 340, - 326, - 320, - 319, - 595, - 421, - 537, - 470, - 469, - 471, - 728, - 729, - 730, - 731, - 732, - 733, - 734, - 735, - 736, - 737, - 738, - 739, - 740, - 741, - 846, - 854, - 857, - 967, - 971, - 975, - 979, - 924, - 925, - 926, - 927, - 941, - 942, - 943, - 940, - 321 + 339, + 275, + 404, + 491, + 485, + 484, + 486, + 599, + 600, + 601, + 602, + 603, + 604, + 605, + 606, + 607, + 608, + 609, + 610, + 611, + 612, + 1179, + 1187, + 1183, + 613, + 614, + 616, + 615, + 89, + 88, + 87, + 86, + 104, + 103, + 102, + 105, + 341 + ] + }, + { + "name": "minecraft:tools", + "entries": [ + 797, + 782, + 787, + 802, + 777, + 792, + 800, + 785, + 790, + 805, + 780, + 795, + 799, + 784, + 789, + 804, + 779, + 794, + 798, + 783, + 788, + 803, + 778, + 793, + 801, + 786, + 791, + 806, + 781, + 796, + 1139 ] }, { "name": "minecraft:logs", "entries": [ - 51, - 71, - 61, - 79, - 45, - 65, - 62, - 73, - 49, - 69, - 59, - 77, - 47, - 67, - 57, - 75, - 48, - 68, - 58, - 76, - 46, - 66, - 56, - 74, - 52, - 72, - 63, - 80, - 794, - 795, - 796, - 797, - 785, - 786, - 787, - 788 + 116, + 150, + 129, + 139, + 110, + 144, + 123, + 133, + 114, + 148, + 127, + 137, + 112, + 146, + 125, + 135, + 113, + 147, + 126, + 136, + 111, + 145, + 124, + 134, + 117, + 151, + 130, + 140, + 115, + 149, + 128, + 138, + 120, + 131, + 152, + 141, + 121, + 132, + 153, + 142 ] }, { - "name": "minecraft:beehives", + "name": "minecraft:creeper_drop_music_discs", "entries": [ - 832, - 833 + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133 ] }, { - "name": "minecraft:all_signs", + "name": "c:nuggets", "entries": [ - 185, - 186, - 187, - 188, - 190, - 191, - 824, - 825, - 192, - 198, - 199, - 200, - 201, - 203, - 204, - 826, - 827, - 205 + 955, + 1119 ] }, { - "name": "minecraft:ice", + "name": "c:sandstone_slabs", "entries": [ - 247, - 495, - 720, - 603 + 244, + 245, + 623, + 253, + 254, + 618 ] }, { - "name": "minecraft:azalea_grows_on", + "name": "minecraft:arrows", "entries": [ - 9, - 8, - 11, - 10, - 322, - 963, - 958, - 964, - 54, - 34, - 36, - 493, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 248, - 908 + 761, + 1114, + 1113 ] }, { "name": "minecraft:wool_carpets", "entries": [ - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492 - ] - }, - { - "name": "minecraft:crops", - "entries": [ - 598, - 382, - 383, - 182, - 315, - 314 - ] - }, - { - "name": "minecraft:dragon_immune", - "entries": [ - 463, - 31, - 334, - 335, - 600, - 350, - 601, - 602, - 828, - 829, - 145, - 169, - 838, - 336, - 308, - 839, - 996 - ] - }, - { - "name": "minecraft:mangrove_roots_can_grow_through", - "entries": [ - 964, - 54, - 53, - 956, - 316, - 30, - 246 - ] - }, - { - "name": "minecraft:features_cannot_replace", - "entries": [ - 31, - 174, - 176, - 335, - 996 - ] - }, - { - "name": "minecraft:valid_spawn", - "entries": [ - 8, - 11 - ] - }, - { - "name": "minecraft:mushroom_grow_block", - "entries": [ - 322, - 11, - 798, - 789 - ] - }, - { - "name": "minecraft:wooden_doors", - "entries": [ - 194, - 582, - 583, - 584, - 585, - 587, - 822, - 823, - 588 - ] - }, - { - "name": "minecraft:crystal_sound_blocks", - "entries": [ - 899, - 900 - ] - }, - { - "name": "minecraft:warped_stems", - "entries": [ - 785, - 786, - 787, - 788 - ] - }, - { - "name": "minecraft:standing_signs", - "entries": [ - 185, - 186, - 187, - 188, - 190, - 191, - 824, - 825, - 192 - ] - }, - { - "name": "minecraft:infiniburn_end", - "entries": [ - 255, - 604, - 31 - ] - }, - { - "name": "minecraft:emerald_ores", - "entries": [ - 341, - 342 - ] - }, - { - "name": "minecraft:crimson_stems", - "entries": [ - 794, - 795, - 796, - 797 - ] - }, - { - "name": "minecraft:needs_stone_tool", - "entries": [ - 163, - 987, - 40, - 41, - 96, - 94, - 95, - 917, - 988, - 918, - 919, - 931, - 927, - 923, - 915, - 929, - 925, - 921, - 914, - 928, - 924, - 920, - 916, - 930, - 926, - 922, - 932, - 947, - 943, - 939, - 933, - 945, - 941, - 937, - 934, - 946, - 942, - 938, - 935, - 944, - 940, - 936, - 948 - ] - }, - { - "name": "minecraft:lava_pool_stone_cannot_replace", - "entries": [ - 31, - 174, - 176, - 335, - 996, - 84, - 81, - 82, - 87, - 85, - 83, - 89, - 90, - 88, - 51, - 71, - 61, - 79, - 45, - 65, - 62, - 73, - 49, - 69, - 59, - 77, - 47, - 67, - 57, - 75, - 48, - 68, - 58, - 76, - 46, - 66, - 56, - 74, - 52, - 72, - 63, - 80, - 794, - 795, - 796, - 797, - 785, - 786, - 787, - 788 - ] - }, - { - "name": "minecraft:inside_step_sound_blocks", - "entries": [ - 246, - 908, - 911, - 323, - 793, - 792, - 805, - 317, - 904, - 956, - 477, - 478, - 479, - 480, - 481, - 482, - 483, - 484, - 485, - 486, - 487, - 488, - 489, - 490, - 491, - 492 - ] - }, - { - "name": "minecraft:prevent_mob_spawning_inside", - "entries": [ - 196, - 118, - 119, - 422 - ] - }, - { - "name": "minecraft:terracotta", - "entries": [ - 493, 424, 425, 426, @@ -2556,142 +790,744 @@ ] }, { - "name": "minecraft:climbable", + "name": "minecraft:compasses", "entries": [ - 195, - 316, + 888, + 889 + ] + }, + { + "name": "c:lime_dyes", + "entries": [ + 909 + ] + }, + { + "name": "c:dyes", + "entries": [ + 919, + 915, + 916, + 917, + 918, + 904, + 908, + 912, + 907, + 909, + 906, + 905, + 910, + 913, + 911, + 914 + ] + }, + { + "name": "c:pickaxes", + "entries": [ + 799, + 789, + 779, + 784, + 794, + 804 + ] + }, + { + "name": "c:buds", + "entries": [ + 1207, + 1208, + 1209 + ] + }, + { + "name": "c:gems", + "entries": [ + 764, + 765, 768, - 801, + 766 + ] + }, + { + "name": "minecraft:bookshelf_books", + "entries": [ + 885, + 1047, + 1068, + 1046, + 1120 + ] + }, + { + "name": "c:white_dyes", + "entries": [ + 904 + ] + }, + { + "name": "c:brown_dyes", + "entries": [ + 916 + ] + }, + { + "name": "minecraft:decorated_pot_ingredients", + "entries": [ + 881, + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254 + ] + }, + { + "name": "minecraft:wooden_doors", + "entries": [ + 689, + 690, + 691, + 692, + 693, + 695, + 698, + 699, + 696, + 697, + 694 + ] + }, + { + "name": "c:wooden_barrels", + "entries": [ + 1154 + ] + }, + { + "name": "minecraft:warped_stems", + "entries": [ + 121, + 132, + 153, + 142 + ] + }, + { + "name": "minecraft:emerald_ores", + "entries": [ + 59, + 60 + ] + }, + { + "name": "minecraft:bamboo_blocks", + "entries": [ + 122, + 143 + ] + }, + { + "name": "minecraft:crimson_stems", + "entries": [ + 120, + 131, + 152, + 141 + ] + }, + { + "name": "c:gold_ingots", + "entries": [ + 774 + ] + }, + { + "name": "minecraft:ignored_by_piglin_babies", + "entries": [ + 873 + ] + }, + { + "name": "c:dusts", + "entries": [ + 894, + 635 + ] + }, + { + "name": "minecraft:swords", + "entries": [ + 797, + 782, + 787, 802, - 803, - 804, - 951, - 952 + 777, + 792 + ] + }, + { + "name": "minecraft:stone_tool_materials", + "entries": [ + 22, + 1177, + 9 ] }, { "name": "minecraft:wart_blocks", "entries": [ - 605, - 791 + 495, + 496 ] }, { - "name": "minecraft:parrots_spawnable_on", + "name": "minecraft:terracotta", "entries": [ - 8, - 0, - 84, - 81, - 82, - 87, - 85, - 83, - 89, - 90, - 88, - 51, - 71, - 61, - 79, - 45, - 65, - 62, - 73, - 49, - 69, - 59, - 77, - 47, - 67, - 57, - 75, - 48, - 68, - 58, - 76, - 46, - 66, - 56, - 74, - 52, - 72, - 63, - 80, - 794, - 795, - 796, - 797, - 785, - 786, - 787, - 788 + 440, + 405, + 406, + 407, + 408, + 409, + 410, + 411, + 412, + 413, + 414, + 415, + 416, + 417, + 418, + 419, + 420 + ] + }, + { + "name": "c:light_gray_dyes", + "entries": [ + 912 ] }, { "name": "minecraft:dark_oak_logs", "entries": [ - 51, - 71, - 61, - 79 + 116, + 150, + 129, + 139 ] }, { - "name": "minecraft:frog_prefer_jump_to", + "name": "minecraft:non_flammable_wood", "entries": [ - 323, - 959 - ] - }, - { - "name": "minecraft:coral_plants", - "entries": [ - 694, - 695, - 696, - 697, - 698 - ] - }, - { - "name": "minecraft:goats_spawnable_on", - "entries": [ - 8, - 1, - 246, - 248, - 495, - 37 + 121, + 132, + 153, + 142, + 120, + 131, + 152, + 141, + 32, + 33, + 240, + 241, + 686, + 687, + 298, + 299, + 710, + 711, + 721, + 722, + 371, + 372, + 671, + 672, + 698, + 699, + 855, + 856, + 867, + 866 ] }, { "name": "c:chests", "entries": [ - 176, - 343, - 410 + 277, + 359, + 656 ] }, { - "name": "minecraft:sculk_replaceable_world_gen", + "name": "minecraft:coals", "entries": [ - 1, - 2, - 4, - 6, - 905, - 965, - 9, - 8, - 11, - 10, - 322, - 963, - 958, - 964, - 54, - 493, + 762, + 763 + ] + }, + { + "name": "minecraft:piglin_food", + "entries": [ + 841, + 842 + ] + }, + { + "name": "c:quartz_ores", + "entries": [ + 66 + ] + }, + { + "name": "c:sandstone_blocks", + "entries": [ + 169, + 170, + 171, + 261, + 488, + 489, + 490, + 260 + ] + }, + { + "name": "c:ingots", + "entries": [ + 772, + 774, + 770, + 775 + ] + }, + { + "name": "minecraft:breaks_decorated_pots", + "entries": [ + 797, + 782, + 787, + 802, + 777, + 792, + 800, + 785, + 790, + 805, + 780, + 795, + 799, + 784, + 789, + 804, + 779, + 794, + 798, + 783, + 788, + 803, + 778, + 793, + 801, + 786, + 791, + 806, + 781, + 796, + 1139 + ] + }, + { + "name": "minecraft:anvil", + "entries": [ + 397, + 398, + 399 + ] + }, + { + "name": "minecraft:birch_logs", + "entries": [ + 112, + 146, + 125, + 135 + ] + }, + { + "name": "minecraft:axes", + "entries": [ + 800, + 785, + 790, + 805, + 780, + 795 + ] + }, + { + "name": "minecraft:lapis_ores", + "entries": [ + 61, + 62 + ] + }, + { + "name": "c:emeralds", + "entries": [ + 765 + ] + }, + { + "name": "minecraft:hoes", + "entries": [ + 801, + 786, + 791, + 806, + 781, + 796 + ] + }, + { + "name": "c:green_dyes", + "entries": [ + 917 + ] + }, + { + "name": "c:raw_gold_ores", + "entries": [ + 773 + ] + }, + { + "name": "c:glass_panes", + "entries": [ + 335, + 472, + 480, + 466, + 476, + 477, + 474, + 478, + 468, + 473, + 470, + 467, + 471, + 475, + 479, + 465, + 469 + ] + }, + { + "name": "minecraft:sniffer_food", + "entries": [ + 1106 + ] + }, + { + "name": "c:red_sandstone_slabs", + "entries": [ + 253, + 254, + 618 + ] + }, + { + "name": "minecraft:fences", + "entries": [ + 289, + 293, + 295, + 290, + 291, + 292, + 298, + 299, + 296, + 297, + 294, + 347 + ] + }, + { + "name": "minecraft:saplings", + "entries": [ + 35, + 36, + 37, + 38, + 39, + 41, + 175, + 176, + 42, + 40 + ] + }, + { + "name": "minecraft:beds", + "entries": [ + 938, + 939, + 935, + 936, + 933, + 931, + 937, + 927, + 932, + 929, + 926, + 925, + 930, + 934, + 924, + 928 + ] + }, + { + "name": "minecraft:iron_ores", + "entries": [ + 51, + 52 + ] + }, + { + "name": "minecraft:oak_logs", + "entries": [ + 110, + 144, + 123, + 133 + ] + }, + { + "name": "c:entity_water_buckets", + "entries": [ + 879, + 877, + 875, + 878, + 876, + 880 + ] + }, + { + "name": "minecraft:doors", + "entries": [ + 689, + 690, + 691, + 692, + 693, + 695, + 698, + 699, + 696, + 697, + 694, + 688 + ] + }, + { + "name": "c:raw_copper_ores", + "entries": [ + 771 + ] + }, + { + "name": "minecraft:banners", + "entries": [ + 1087, + 1088, + 1089, + 1090, + 1091, + 1092, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1099, + 1100, + 1101, + 1102 + ] + }, + { + "name": "minecraft:noteblock_top_instruments", + "entries": [ + 1060, + 1057, + 1061, + 1062, + 1058, + 1063, + 1059 + ] + }, + { + "name": "c:diamonds", + "entries": [ + 764 + ] + }, + { + "name": "c:orange_dyes", + "entries": [ + 905 + ] + }, + { + "name": "minecraft:stone_crafting_materials", + "entries": [ + 22, + 1177, + 9 + ] + }, + { + "name": "minecraft:smelts_to_glass", + "entries": [ + 44, + 47 + ] + }, + { + "name": "minecraft:piglin_repellents", + "entries": [ + 309, + 1164, + 1168 + ] + }, + { + "name": "minecraft:wooden_fences", + "entries": [ + 289, + 293, + 295, + 290, + 291, + 292, + 298, + 299, + 296, + 297, + 294 + ] + }, + { + "name": "c:redstone_dusts", + "entries": [ + 635 + ] + }, + { + "name": "c:raw_ores", + "entries": [ + 769, + 771, + 773 + ] + }, + { + "name": "minecraft:trim_templates", + "entries": [ + 1223, + 1229, + 1221, + 1224, + 1220, + 1222, + 1228, + 1226, + 1219, + 1225, + 1227, + 1230, + 1231, + 1232, + 1233, + 1234 + ] + }, + { + "name": "c:bookshelves", + "entries": [ + 264 + ] + }, + { + "name": "c:shears", + "entries": [ + 942 + ] + }, + { + "name": "c:potions", + "entries": [ + 1115, + 1112, + 957 + ] + }, + { + "name": "minecraft:villager_plantable_seeds", + "entries": [ + 813, + 1052, + 1051, + 1109, + 1106, + 1107 + ] + }, + { + "name": "minecraft:dampens_vibrations", + "entries": [ + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, 424, 425, 426, @@ -2707,94 +1543,2124 @@ 436, 437, 438, - 439, - 798, - 789, - 255, - 258, - 845, - 34, - 36, - 37, - 256, - 257, - 906, - 986, - 250, - 950, - 336, - 534, - 98, - 978, - 974, - 966, - 983, - 984, - 970 + 439 ] }, { - "name": "minecraft:beacon_base_blocks", + "name": "minecraft:mangrove_logs", + "entries": [ + 117, + 151, + 130, + 140 + ] + }, + { + "name": "minecraft:jungle_logs", + "entries": [ + 113, + 147, + 126, + 136 + ] + }, + { + "name": "minecraft:lectern_books", + "entries": [ + 1047, + 1046 + ] + }, + { + "name": "minecraft:spruce_logs", + "entries": [ + 111, + 145, + 124, + 134 + ] + }, + { + "name": "minecraft:wooden_stairs", + "entries": [ + 361, + 362, + 363, + 364, + 365, + 367, + 371, + 372, + 368, + 369, + 366 + ] + }, + { + "name": "minecraft:signs", + "entries": [ + 846, + 847, + 848, + 850, + 849, + 852, + 855, + 856, + 853, + 854, + 851 + ] + }, + { + "name": "c:uncolored_sandstone_blocks", + "entries": [ + 169, + 170, + 171, + 261 + ] + }, + { + "name": "minecraft:wooden_buttons", + "entries": [ + 662, + 663, + 664, + 665, + 666, + 668, + 671, + 672, + 669, + 670, + 667 + ] + }, + { + "name": "minecraft:fishes", + "entries": [ + 895, + 899, + 896, + 900, + 898, + 897 + ] + }, + { + "name": "c:milk_buckets", + "entries": [ + 874 + ] + }, + { + "name": "minecraft:stone_bricks", + "entries": [ + 318, + 319, + 320, + 321 + ] + }, + { + "name": "c:budding_blocks", + "entries": [ + 73 + ] + }, + { + "name": "c:light_blue_dyes", + "entries": [ + 907 + ] + }, + { + "name": "minecraft:shovels", + "entries": [ + 798, + 783, + 788, + 803, + 778, + 793 + ] + }, + { + "name": "c:iron_ingots", + "entries": [ + 770 + ] + }, + { + "name": "minecraft:chest_boats", + "entries": [ + 737, + 739, + 741, + 743, + 745, + 749, + 751, + 753, + 747 + ] + }, + { + "name": "minecraft:creeper_igniters", + "entries": [ + 758, + 1045 + ] + }, + { + "name": "c:gray_dyes", + "entries": [ + 911 + ] + }, + { + "name": "minecraft:slabs", + "entries": [ + 230, + 231, + 232, + 233, + 234, + 236, + 240, + 241, + 237, + 238, + 235, + 239, + 242, + 243, + 249, + 244, + 255, + 252, + 253, + 248, + 247, + 251, + 246, + 256, + 257, + 258, + 617, + 618, + 619, + 620, + 621, + 622, + 623, + 624, + 625, + 626, + 627, + 628, + 629, + 245, + 254, + 1178, + 1186, + 1182, + 630, + 631, + 633, + 632, + 108, + 107, + 106, + 93, + 92, + 91, + 90, + 109, + 250 + ] + }, + { + "name": "minecraft:hanging_signs", + "entries": [ + 857, + 858, + 859, + 861, + 862, + 860, + 863, + 866, + 867, + 864, + 865 + ] + }, + { + "name": "c:coal", + "entries": [ + 762, + 763 + ] + }, + { + "name": "c:raw_copper_blocks", + "entries": [ + 70 + ] + }, + { + "name": "c:raw_gold_blocks", + "entries": [ + 71 + ] + }, + { + "name": "minecraft:redstone_ores", + "entries": [ + 57, + 58 + ] + }, + { + "name": "minecraft:trapdoors", + "entries": [ + 705, + 703, + 707, + 704, + 701, + 702, + 710, + 711, + 708, + 709, + 706, + 700 + ] + }, + { + "name": "c:hoes", + "entries": [ + 801, + 791, + 781, + 786, + 796, + 806 + ] + }, + { + "name": "c:red_dyes", + "entries": [ + 918 + ] + }, + { + "name": "minecraft:cherry_logs", + "entries": [ + 115, + 149, + 128, + 138 + ] + }, + { + "name": "c:red_sandstone_blocks", + "entries": [ + 488, + 489, + 490, + 260 + ] + }, + { + "name": "minecraft:flowers", + "entries": [ + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 443, + 444, + 446, + 445, + 210, + 163, + 176, + 42, + 159, + 224 + ] + }, + { + "name": "minecraft:buttons", + "entries": [ + 662, + 663, + 664, + 665, + 666, + 668, + 671, + 672, + 669, + 670, + 667, + 660, + 661 + ] + }, + { + "name": "c:bows", + "entries": [ + 1143, + 760 + ] + }, + { + "name": "minecraft:planks", + "entries": [ + 23, + 24, + 25, + 26, + 27, + 29, + 32, + 33, + 30, + 31, + 28 + ] + }, + { + "name": "minecraft:boats", + "entries": [ + 736, + 738, + 740, + 742, + 744, + 748, + 750, + 752, + 746, + 737, + 739, + 741, + 743, + 745, + 749, + 751, + 753, + 747 + ] + }, + { + "name": "minecraft:stone_buttons", + "entries": [ + 660, + 661 + ] + }, + { + "name": "minecraft:fox_food", + "entries": [ + 1165, + 1166 + ] + }, + { + "name": "c:clusters", + "entries": [ + 1210 + ] + }, + { + "name": "minecraft:rails", + "entries": [ + 725, + 723, + 724, + 726 + ] + }, + { + "name": "minecraft:diamond_ores", + "entries": [ + 63, + 64 + ] + }, + { + "name": "c:water_buckets", + "entries": [ + 869 + ] + }, + { + "name": "c:yellow_dyes", + "entries": [ + 908 + ] + }, + { + "name": "c:empty_buckets", + "entries": [ + 868 + ] + }, + { + "name": "minecraft:leaves", + "entries": [ + 157, + 154, + 155, + 160, + 158, + 156, + 162, + 163, + 161, + 159 + ] + }, + { + "name": "c:shulker_boxes", + "entries": [ + 500, + 512, + 513, + 510, + 508, + 514, + 504, + 509, + 506, + 503, + 502, + 507, + 511, + 515, + 501, + 505, + 516 + ] + }, + { + "name": "minecraft:walls", + "entries": [ + 375, + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 392, + 391, + 393, + 394, + 396, + 395, + 383 + ] + }, + { + "name": "c:glass_blocks", + "entries": [ + 166, + 456, + 464, + 450, + 460, + 461, + 458, + 462, + 452, + 457, + 454, + 451, + 455, + 459, + 463, + 167, + 449, + 453 + ] + }, + { + "name": "c:uncolored_sandstone_slabs", + "entries": [ + 244, + 245, + 623 + ] + }, + { + "name": "c:cyan_dyes", + "entries": [ + 913 + ] + }, + { + "name": "minecraft:fence_gates", + "entries": [ + 716, + 714, + 718, + 715, + 712, + 713, + 721, + 722, + 719, + 720, + 717 + ] + }, + { + "name": "minecraft:wooden_pressure_plates", + "entries": [ + 677, + 678, + 679, + 680, + 681, + 683, + 686, + 687, + 684, + 685, + 682 + ] + }, + { + "name": "minecraft:acacia_logs", + "entries": [ + 114, + 148, + 127, + 137 + ] + }, + { + "name": "minecraft:music_discs", + "entries": [ + 1122, + 1123, + 1124, + 1125, + 1126, + 1127, + 1128, + 1129, + 1130, + 1131, + 1132, + 1133, + 1137, + 1134, + 1136, + 1135 + ] + }, + { + "name": "c:red_sandstone_stairs", + "entries": [ + 491, + 600 + ] + }, + { + "name": "minecraft:candles", + "entries": [ + 1190, + 1191, + 1192, + 1193, + 1194, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1201, + 1202, + 1203, + 1204, + 1205, + 1206 + ] + }, + { + "name": "minecraft:piglin_loved", + "entries": [ + 55, + 65, + 56, + 76, + 1180, + 675, + 774, + 1162, + 892, + 1056, + 966, + 844, + 845, + 832, + 833, + 834, + 835, + 1079, + 787, + 789, + 788, + 790, + 791, + 773, + 71 + ] + }, + { + "name": "minecraft:tall_flowers", + "entries": [ + 443, + 444, + 446, + 445, + 210 + ] + }, + { + "name": "c:quartz", + "entries": [ + 767 + ] + }, + { + "name": "c:blue_dyes", + "entries": [ + 915 + ] + }, + { + "name": "c:copper_ingots", + "entries": [ + 772 + ] + }, + { + "name": "c:swords", + "entries": [ + 797, + 787, + 777, + 782, + 792, + 802 + ] + }, + { + "name": "minecraft:copper_ores", + "entries": [ + 53, + 54 + ] + }, + { + "name": "minecraft:sand", + "entries": [ + 44, + 47, + 45 + ] + }, + { + "name": "minecraft:gold_ores", + "entries": [ + 55, + 65, + 56 + ] + }, + { + "name": "minecraft:freeze_immune_wearables", + "entries": [ + 819, + 818, + 817, + 816, + 1081 + ] + }, + { + "name": "minecraft:logs_that_burn", + "entries": [ + 116, + 150, + 129, + 139, + 110, + 144, + 123, + 133, + 114, + 148, + 127, + 137, + 112, + 146, + 125, + 135, + 113, + 147, + 126, + 136, + 111, + 145, + 124, + 134, + 117, + 151, + 130, + 140, + 115, + 149, + 128, + 138 + ] + }, + { + "name": "minecraft:completes_find_tree_tutorial", + "entries": [ + 116, + 150, + 129, + 139, + 110, + 144, + 123, + 133, + 114, + 148, + 127, + 137, + 112, + 146, + 125, + 135, + 113, + 147, + 126, + 136, + 111, + 145, + 124, + 134, + 117, + 151, + 130, + 140, + 115, + 149, + 128, + 138, + 120, + 131, + 152, + 141, + 121, + 132, + 153, + 142, + 157, + 154, + 155, + 160, + 158, + 156, + 162, + 163, + 161, + 159, + 495, + 496 + ] + }, + { + "name": "minecraft:dirt", + "entries": [ + 15, + 14, + 17, + 16, + 342, + 18, + 225, + 19, + 119 + ] + }, + { + "name": "c:ores", + "entries": [ + 57, + 58, + 53, + 54, + 55, + 65, + 56, + 51, + 52, + 49, + 50, + 59, + 60, + 61, + 62, + 63, + 64, + 66 + ] + }, + { + "name": "c:villager_job_sites", + "entries": [ + 1154, + 1156, + 963, + 1157, + 964, + 1153, + 1158, + 1159, + 648, + 1145, + 1160, + 1155, + 1161 + ] + }, + { + "name": "c:shields", + "entries": [ + 1116 + ] + }, + { + "name": "minecraft:decorated_pot_sherds", + "entries": [ + 1235, + 1236, + 1237, + 1238, + 1239, + 1240, + 1241, + 1242, + 1243, + 1244, + 1245, + 1246, + 1247, + 1248, + 1249, + 1250, + 1251, + 1252, + 1253, + 1254 + ] + }, + { + "name": "minecraft:pickaxes", + "entries": [ + 799, + 784, + 789, + 804, + 779, + 794 + ] + }, + { + "name": "minecraft:cluster_max_harvestables", + "entries": [ + 799, + 789, + 794, + 804, + 784, + 779 + ] + }, + { + "name": "c:uncolored_sandstone_stairs", + "entries": [ + 358, + 606 + ] + } + ] + }, + { + "registry": "minecraft:instrument", + "tags": [ + { + "name": "minecraft:screaming_goat_horns", + "entries": [ + 4, + 5, + 6, + 7 + ] + }, + { + "name": "minecraft:goat_horns", + "entries": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ] + }, + { + "name": "minecraft:regular_goat_horns", + "entries": [ + 0, + 1, + 2, + 3 + ] + } + ] + }, + { + "registry": "minecraft:block", + "tags": [ + { + "name": "minecraft:soul_fire_base_blocks", + "entries": [ + 257, + 258 + ] + }, + { + "name": "minecraft:campfires", + "entries": [ + 786, + 787 + ] + }, + { + "name": "c:sandstone_stairs", + "entries": [ + 341, + 739, + 538, + 733 + ] + }, + { + "name": "minecraft:infiniburn_nether", + "entries": [ + 256, + 607 + ] + }, + { + "name": "minecraft:wooden_slabs", + "entries": [ + 539, + 540, + 541, + 542, + 543, + 545, + 812, + 813, + 546, + 547, + 544 + ] + }, + { + "name": "minecraft:snaps_goat_horn", + "entries": [ + 50, + 48, + 46, + 49, + 47, + 52, + 53, + 51, + 1, + 496, + 41, + 43, + 923, + 342 + ] + }, + { + "name": "minecraft:coal_ores", + "entries": [ + 43, + 44 + ] + }, + { + "name": "minecraft:occludes_vibration_signals", + "entries": [ + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145 + ] + }, + { + "name": "minecraft:small_flowers", + "entries": [ + 147, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 160, + 159, + 148 + ] + }, + { + "name": "minecraft:azalea_root_replaceable", + "entries": [ + 1, + 2, + 4, + 6, + 909, + 970, + 9, + 8, + 11, + 10, + 323, + 968, + 963, + 969, + 55, + 494, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 36, + 251, + 37, + 34, + 249, + 912 + ] + }, + { + "name": "minecraft:wooden_trapdoors", + "entries": [ + 289, + 287, + 291, + 288, + 285, + 286, + 818, + 819, + 292, + 293, + 290 + ] + }, + { + "name": "minecraft:invalid_spawn_inside", + "entries": [ + 335, + 603 + ] + }, + { + "name": "minecraft:foxes_spawnable_on", + "entries": [ + 8, + 247, + 249, + 11, + 10 + ] + }, + { + "name": "minecraft:wolves_spawnable_on", + "entries": [ + 8, + 247, + 249 + ] + }, + { + "name": "minecraft:wool", + "entries": [ + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145 + ] + }, + { + "name": "minecraft:stairs", + "entries": [ + 176, + 348, + 349, + 350, + 457, + 459, + 822, + 823, + 460, + 461, + 458, + 462, + 198, + 341, + 327, + 321, + 320, + 596, + 422, + 538, + 471, + 470, + 472, + 732, + 733, + 734, + 735, + 736, + 737, + 738, + 739, + 740, + 741, + 742, + 743, + 744, + 745, + 850, + 858, + 861, + 972, + 976, + 980, + 984, + 929, + 930, + 931, + 932, + 946, + 947, + 948, + 945, + 322 + ] + }, + { + "name": "minecraft:logs", + "entries": [ + 52, + 72, + 62, + 80, + 46, + 66, + 63, + 74, + 50, + 70, + 60, + 78, + 48, + 68, + 58, + 76, + 49, + 69, + 59, + 77, + 47, + 67, + 57, + 75, + 53, + 73, + 64, + 81, + 51, + 71, + 61, + 79, + 798, + 799, + 800, + 801, + 789, + 790, + 791, + 792 + ] + }, + { + "name": "minecraft:all_signs", + "entries": [ + 186, + 187, + 188, + 189, + 191, + 192, + 828, + 829, + 193, + 194, + 190, + 199, + 200, + 201, + 202, + 204, + 205, + 830, + 831, + 206, + 207, + 203, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 227, + 228, + 226, + 229 + ] + }, + { + "name": "minecraft:beehives", "entries": [ 836, - 346, - 180, - 162, - 163 + 837 + ] + }, + { + "name": "minecraft:trail_ruins_replaceable", + "entries": [ + 37 + ] + }, + { + "name": "minecraft:ice", + "entries": [ + 248, + 496, + 724, + 606 + ] + }, + { + "name": "minecraft:enchantment_power_provider", + "entries": [ + 167 + ] + }, + { + "name": "minecraft:azalea_grows_on", + "entries": [ + 9, + 8, + 11, + 10, + 323, + 968, + 963, + 969, + 55, + 34, + 36, + 35, + 494, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 249, + 912 + ] + }, + { + "name": "c:sandstone_slabs", + "entries": [ + 551, + 552, + 752, + 560, + 561, + 747 + ] + }, + { + "name": "minecraft:wool_carpets", + "entries": [ + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493 + ] + }, + { + "name": "minecraft:dragon_immune", + "entries": [ + 464, + 31, + 335, + 336, + 603, + 351, + 604, + 605, + 832, + 833, + 146, + 170, + 842, + 337, + 309, + 843, + 1001 + ] + }, + { + "name": "minecraft:crops", + "entries": [ + 601, + 383, + 384, + 183, + 316, + 315, + 598, + 599 + ] + }, + { + "name": "c:buds", + "entries": [ + 908, + 907, + 906 + ] + }, + { + "name": "minecraft:mangrove_roots_can_grow_through", + "entries": [ + 969, + 55, + 54, + 961, + 317, + 30, + 247 + ] + }, + { + "name": "minecraft:features_cannot_replace", + "entries": [ + 31, + 175, + 177, + 336, + 1001 + ] + }, + { + "name": "minecraft:valid_spawn", + "entries": [ + 8, + 11 + ] + }, + { + "name": "minecraft:mushroom_grow_block", + "entries": [ + 323, + 11, + 802, + 793 + ] + }, + { + "name": "minecraft:wooden_doors", + "entries": [ + 195, + 583, + 584, + 585, + 586, + 588, + 826, + 827, + 589, + 590, + 587 + ] + }, + { + "name": "minecraft:sniffer_egg_hatch_boost", + "entries": [ + 963 + ] + }, + { + "name": "minecraft:crystal_sound_blocks", + "entries": [ + 903, + 904 + ] + }, + { + "name": "minecraft:warped_stems", + "entries": [ + 789, + 790, + 791, + 792 + ] + }, + { + "name": "minecraft:standing_signs", + "entries": [ + 186, + 187, + 188, + 189, + 191, + 192, + 828, + 829, + 193, + 194, + 190 + ] + }, + { + "name": "c:wooden_barrels", + "entries": [ + 774 + ] + }, + { + "name": "minecraft:infiniburn_end", + "entries": [ + 256, + 607, + 31 + ] + }, + { + "name": "minecraft:emerald_ores", + "entries": [ + 342, + 343 + ] + }, + { + "name": "minecraft:bamboo_blocks", + "entries": [ + 56, + 65 + ] + }, + { + "name": "minecraft:crimson_stems", + "entries": [ + 798, + 799, + 800, + 801 + ] + }, + { + "name": "minecraft:needs_stone_tool", + "entries": [ + 164, + 992, + 41, + 42, + 97, + 95, + 96, + 922, + 993, + 923, + 924, + 936, + 932, + 928, + 920, + 934, + 930, + 926, + 919, + 933, + 929, + 925, + 921, + 935, + 931, + 927, + 937, + 952, + 948, + 944, + 938, + 950, + 946, + 942, + 939, + 951, + 947, + 943, + 940, + 949, + 945, + 941, + 953 + ] + }, + { + "name": "minecraft:replaceable_by_trees", + "entries": [ + 85, + 82, + 83, + 88, + 86, + 84, + 90, + 91, + 89, + 87, + 123, + 124, + 125, + 317, + 318, + 497, + 498, + 499, + 500, + 501, + 502, + 967, + 600, + 32, + 126, + 127, + 796, + 797, + 809 + ] + }, + { + "name": "minecraft:lava_pool_stone_cannot_replace", + "entries": [ + 31, + 175, + 177, + 336, + 1001, + 85, + 82, + 83, + 88, + 86, + 84, + 90, + 91, + 89, + 87, + 52, + 72, + 62, + 80, + 46, + 66, + 63, + 74, + 50, + 70, + 60, + 78, + 48, + 68, + 58, + 76, + 49, + 69, + 59, + 77, + 47, + 67, + 57, + 75, + 53, + 73, + 64, + 81, + 51, + 71, + 61, + 79, + 798, + 799, + 800, + 801, + 789, + 790, + 791, + 792 + ] + }, + { + "name": "minecraft:inside_step_sound_blocks", + "entries": [ + 912, + 916, + 318, + 324, + 908, + 962 + ] + }, + { + "name": "minecraft:prevent_mob_spawning_inside", + "entries": [ + 197, + 119, + 120, + 423 + ] + }, + { + "name": "minecraft:terracotta", + "entries": [ + 494, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440 + ] + }, + { + "name": "minecraft:wart_blocks", + "entries": [ + 608, + 795 + ] + }, + { + "name": "minecraft:climbable", + "entries": [ + 196, + 317, + 772, + 805, + 806, + 807, + 808, + 956, + 957 + ] + }, + { + "name": "minecraft:parrots_spawnable_on", + "entries": [ + 8, + 0, + 85, + 82, + 83, + 88, + 86, + 84, + 90, + 91, + 89, + 87, + 52, + 72, + 62, + 80, + 46, + 66, + 63, + 74, + 50, + 70, + 60, + 78, + 48, + 68, + 58, + 76, + 49, + 69, + 59, + 77, + 47, + 67, + 57, + 75, + 53, + 73, + 64, + 81, + 51, + 71, + 61, + 79, + 798, + 799, + 800, + 801, + 789, + 790, + 791, + 792 + ] + }, + { + "name": "minecraft:dark_oak_logs", + "entries": [ + 52, + 72, + 62, + 80 + ] + }, + { + "name": "minecraft:frog_prefer_jump_to", + "entries": [ + 324, + 964 + ] + }, + { + "name": "minecraft:coral_plants", + "entries": [ + 698, + 699, + 700, + 701, + 702 + ] + }, + { + "name": "c:chests", + "entries": [ + 177, + 344, + 411 + ] + }, + { + "name": "minecraft:goats_spawnable_on", + "entries": [ + 8, + 1, + 247, + 249, + 496, + 37 + ] + }, + { + "name": "minecraft:sculk_replaceable_world_gen", + "entries": [ + 1, + 2, + 4, + 6, + 909, + 970, + 9, + 8, + 11, + 10, + 323, + 968, + 963, + 969, + 55, + 494, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 802, + 793, + 256, + 259, + 849, + 34, + 36, + 37, + 257, + 258, + 910, + 991, + 251, + 955, + 337, + 535, + 99, + 983, + 979, + 971, + 988, + 989, + 975 + ] + }, + { + "name": "minecraft:ceiling_hanging_signs", + "entries": [ + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218 ] }, { "name": "c:quartz_ores", "entries": [ - 416 + 417 + ] + }, + { + "name": "minecraft:beacon_base_blocks", + "entries": [ + 840, + 347, + 181, + 163, + 164 ] }, { "name": "minecraft:frogs_spawnable_on", "entries": [ 8, - 964, - 53, - 54 + 969, + 54, + 55 + ] + }, + { + "name": "c:sandstone_blocks", + "entries": [ + 99, + 100, + 101, + 564, + 535, + 536, + 537, + 566 ] }, { "name": "minecraft:shulker_boxes", "entries": [ - 610, + 613, + 629, + 625, 626, - 622, 623, - 620, - 618, - 624, - 614, + 621, + 627, + 617, + 622, 619, 616, - 613, - 612, - 617, - 621, - 625, - 611, - 615 + 615, + 620, + 624, + 628, + 614, + 618 ] }, { "name": "minecraft:anvil", "entries": [ - 407, 408, - 409 + 409, + 410 ] }, { "name": "minecraft:birch_logs", "entries": [ - 47, - 67, - 57, - 75 + 48, + 68, + 58, + 76 ] }, { @@ -2804,36 +3670,52 @@ 2, 4, 6, - 905, - 965, - 952, - 951, + 909, + 970, + 957, + 956, 9, 8, 11, 10, - 322, + 323, + 968, 963, - 958, - 964, - 54 + 969, + 55 ] }, { "name": "minecraft:lapis_ores", "entries": [ - 94, - 95 + 95, + 96 ] }, { "name": "minecraft:wall_corals", "entries": [ - 714, - 715, - 716, - 717, - 718 + 718, + 719, + 720, + 721, + 722 + ] + }, + { + "name": "minecraft:maintains_farmland", + "entries": [ + 315, + 313, + 316, + 314, + 601, + 383, + 384, + 598, + 148, + 599, + 183 ] }, { @@ -2841,7 +3723,20 @@ "entries": [ 9, 10, - 963 + 968 + ] + }, + { + "name": "minecraft:sniffer_diggable_block", + "entries": [ + 9, + 8, + 11, + 10, + 968, + 963, + 969, + 55 ] }, { @@ -2851,20 +3746,20 @@ 2, 4, 6, - 905, - 965, - 952, - 951, + 909, + 970, + 957, + 956, 9, 8, 11, 10, - 322, + 323, + 968, 963, - 958, - 964, - 54, - 250, + 969, + 55, + 251, 37, 34 ] @@ -2872,38 +3767,48 @@ { "name": "c:glass_panes", "entries": [ - 310, - 447, - 455, - 441, - 451, - 452, - 449, - 453, - 443, + 311, 448, - 445, + 456, 442, - 446, + 452, + 453, 450, 454, - 440, - 444 + 444, + 449, + 446, + 443, + 447, + 451, + 455, + 441, + 445 + ] + }, + { + "name": "c:red_sandstone_slabs", + "entries": [ + 560, + 561, + 747 ] }, { "name": "minecraft:fences", "entries": [ - 253, - 577, - 579, - 574, + 254, + 578, + 580, 575, 576, - 812, - 813, - 580, - 325 + 577, + 816, + 817, + 581, + 582, + 579, + 326 ] }, { @@ -2915,9 +3820,10 @@ 26, 27, 29, - 954, - 955, - 30 + 959, + 960, + 30, + 28 ] }, { @@ -2931,67 +3837,66 @@ 6, 7, 12, - 38, 39, 40, 41, 42, 43, 44, - 94, + 45, 95, 96, 97, 98, 99, 100, - 162, + 101, 163, 164, - 168, + 165, 169, - 174, - 178, + 170, + 175, 179, 180, - 184, - 197, - 230, + 181, + 185, + 198, 231, - 241, + 232, 242, - 255, - 258, + 243, + 256, 259, - 293, + 260, 294, 295, 296, - 308, + 297, 309, - 319, + 310, 320, - 324, + 321, 325, 326, - 328, + 327, 329, - 336, - 340, + 330, + 337, 341, 342, 343, - 346, - 411, + 344, + 347, 412, - 415, + 413, 416, 417, 418, 419, 420, 421, - 423, + 422, 424, 425, 426, @@ -3008,7 +3913,7 @@ 437, 438, 439, - 465, + 440, 466, 467, 468, @@ -3018,13 +3923,13 @@ 472, 473, 474, - 493, + 475, 494, - 534, + 495, 535, 536, 537, - 548, + 538, 549, 550, 551, @@ -3032,7 +3937,7 @@ 553, 554, 555, - 557, + 556, 558, 559, 560, @@ -3041,17 +3946,15 @@ 563, 564, 565, - 593, + 566, 594, 595, 596, - 604, - 606, + 597, 607, 609, - 627, - 628, - 629, + 610, + 612, 630, 631, 632, @@ -3081,10 +3984,9 @@ 656, 657, 658, - 679, - 680, - 681, - 682, + 659, + 660, + 661, 683, 684, 685, @@ -3096,20 +3998,20 @@ 691, 692, 693, - 699, - 700, - 701, - 702, + 694, + 695, + 696, + 697, 703, - 709, - 710, - 711, - 712, + 704, + 705, + 706, + 707, 713, - 728, - 729, - 730, - 731, + 714, + 715, + 716, + 717, 732, 733, 734, @@ -3133,43 +4035,42 @@ 752, 753, 754, - 771, - 772, + 755, + 756, + 757, + 758, 775, - 778, + 776, 779, - 780, - 781, - 789, - 798, - 836, - 837, - 838, - 839, - 844, - 845, - 846, + 782, + 783, + 784, + 785, + 793, + 802, + 840, + 841, + 842, + 843, 848, 849, 850, - 851, 852, 853, 854, + 855, 856, 857, 858, - 859, + 860, + 861, 862, 863, - 864, - 905, - 906, - 914, - 915, - 916, - 917, - 918, + 866, + 867, + 868, + 909, + 910, 919, 920, 921, @@ -3202,174 +4103,183 @@ 948, 949, 950, - 965, - 966, - 967, - 968, + 951, + 952, + 953, + 954, + 955, 970, 971, 972, - 974, + 973, 975, 976, - 978, + 977, 979, 980, - 982, + 981, 983, 984, - 986, + 985, 987, 988, 989, - 247, - 495, - 720, - 245, - 127, - 120, + 991, + 992, + 993, + 994, + 248, + 496, + 724, 128, - 901, - 904, + 121, + 129, + 905, + 908, + 907, + 906, 903, - 902, - 899, - 900, - 300, - 304, - 303, - 985, - 299, - 302, + 904, 301, - 352, + 305, + 304, + 990, + 300, + 303, + 302, + 246, + 864, 353, - 755, - 756, - 757, - 758, + 354, 759, 760, + 761, 762, 763, 764, - 765, 766, 767, - 847, - 855, - 861, - 969, - 973, - 977, - 981, - 761, - 610, + 768, + 769, + 770, + 771, + 851, + 859, + 865, + 974, + 978, + 982, + 986, + 765, + 613, + 629, + 625, 626, - 622, 623, - 620, - 618, - 624, - 614, + 621, + 627, + 617, + 622, 619, 616, - 613, - 612, - 617, - 621, - 625, - 611, 615, - 407, + 620, + 624, + 628, + 614, + 618, 408, 409, - 330, + 410, 331, 332, 333, - 196, - 118, + 334, + 197, 119, - 422, - 721, - 298, - 321, - 556, - 297 + 120, + 423, + 725, + 299, + 322, + 557, + 298 ] }, { "name": "minecraft:beds", "entries": [ - 116, 117, - 113, + 118, 114, - 111, - 109, 115, - 105, - 110, - 107, - 104, - 103, - 108, 112, - 102, - 106 + 110, + 116, + 106, + 111, + 108, + 105, + 104, + 109, + 113, + 103, + 107 ] }, { "name": "minecraft:iron_ores", "entries": [ - 40, - 41 + 41, + 42 ] }, { "name": "minecraft:oak_logs", "entries": [ - 45, - 65, - 62, - 73 + 46, + 66, + 63, + 74 ] }, { "name": "minecraft:unstable_bottom_center", "entries": [ - 569, - 567, - 571, + 570, 568, - 318, - 566, - 816, - 817, - 572 + 572, + 569, + 319, + 567, + 820, + 821, + 573, + 574, + 571 ] }, { "name": "minecraft:doors", "entries": [ - 194, - 582, + 195, 583, 584, 585, - 587, - 822, - 823, + 586, 588, - 231 + 826, + 827, + 589, + 590, + 587, + 232 ] }, { "name": "minecraft:enderman_holdable", "entries": [ - 146, - 148, + 147, 149, 150, 151, @@ -3379,181 +4289,41 @@ 155, 156, 157, - 159, 158, + 160, + 159, + 148, 9, 8, 11, 10, - 322, + 323, + 968, 963, - 958, - 964, - 54, + 969, + 55, 34, 36, 37, - 160, 161, - 165, - 249, + 162, + 166, 250, - 254, - 264, - 311, - 799, - 798, - 805, - 790, - 789, - 792 + 251, + 255, + 265, + 312, + 803, + 802, + 809, + 794, + 793, + 796 ] }, { "name": "minecraft:banners", "entries": [ - 502, - 503, - 504, - 505, - 506, - 507, - 508, - 509, - 510, - 511, - 512, - 513, - 514, - 515, - 516, - 517, - 518, - 519, - 520, - 521, - 522, - 523, - 524, - 525, - 526, - 527, - 528, - 529, - 530, - 531, - 532, - 533 - ] - }, - { - "name": "minecraft:infiniburn_overworld", - "entries": [ - 255, - 604 - ] - }, - { - "name": "minecraft:smelts_to_glass", - "entries": [ - 34, - 36 - ] - }, - { - "name": "minecraft:flower_pots", - "entries": [ - 354, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 365, - 356, - 357, - 358, - 359, - 360, - 362, - 378, - 379, - 380, - 364, - 381, - 375, - 376, - 377, - 724, - 840, - 841, - 842, - 843, - 990, - 991, - 363 - ] - }, - { - "name": "minecraft:wooden_fences", - "entries": [ - 253, - 577, - 579, - 574, - 575, - 576, - 812, - 813, - 580 - ] - }, - { - "name": "minecraft:piglin_repellents", - "entries": [ - 173, - 260, - 781, - 261, - 783 - ] - }, - { - "name": "minecraft:mooshrooms_spawnable_on", - "entries": [ - 322 - ] - }, - { - "name": "minecraft:wall_post_override", - "entries": [ - 170, - 260, - 243, - 345, - 185, - 186, - 187, - 188, - 190, - 191, - 824, - 825, - 192, - 198, - 199, - 200, - 201, - 203, - 204, - 826, - 827, - 205, - 502, 503, 504, 505, @@ -3585,33 +4355,214 @@ 531, 532, 533, - 411, - 412, - 232, - 233, - 234, - 235, - 236, - 238, - 810, - 811, - 239, - 230, - 859 + 534 + ] + }, + { + "name": "minecraft:smelts_to_glass", + "entries": [ + 34, + 36 + ] + }, + { + "name": "minecraft:infiniburn_overworld", + "entries": [ + 256, + 607 + ] + }, + { + "name": "minecraft:flower_pots", + "entries": [ + 355, + 367, + 368, + 369, + 370, + 371, + 372, + 373, + 374, + 375, + 366, + 357, + 358, + 359, + 360, + 361, + 363, + 379, + 380, + 381, + 365, + 382, + 376, + 377, + 378, + 728, + 844, + 845, + 846, + 847, + 995, + 996, + 364, + 362, + 356 + ] + }, + { + "name": "minecraft:wooden_fences", + "entries": [ + 254, + 578, + 580, + 575, + 576, + 577, + 816, + 817, + 581, + 582, + 579 + ] + }, + { + "name": "minecraft:piglin_repellents", + "entries": [ + 174, + 261, + 785, + 262, + 787 + ] + }, + { + "name": "minecraft:enchantment_power_transmitter", + "entries": [ + 0, + 32, + 33, + 123, + 124, + 125, + 126, + 127, + 173, + 174, + 247, + 317, + 318, + 465, + 501, + 502, + 611, + 729, + 730, + 731, + 796, + 797, + 809, + 967 ] }, { "name": "c:bookshelves", "entries": [ - 166 + 167 + ] + }, + { + "name": "minecraft:wall_post_override", + "entries": [ + 171, + 261, + 244, + 346, + 186, + 187, + 188, + 189, + 191, + 192, + 828, + 829, + 193, + 194, + 190, + 199, + 200, + 201, + 202, + 204, + 205, + 830, + 831, + 206, + 207, + 203, + 503, + 504, + 505, + 506, + 507, + 508, + 509, + 510, + 511, + 512, + 513, + 514, + 515, + 516, + 517, + 518, + 519, + 520, + 521, + 522, + 523, + 524, + 525, + 526, + 527, + 528, + 529, + 530, + 531, + 532, + 533, + 534, + 412, + 413, + 233, + 234, + 235, + 236, + 237, + 239, + 814, + 815, + 240, + 241, + 238, + 231, + 863 + ] + }, + { + "name": "minecraft:mooshrooms_spawnable_on", + "entries": [ + 323 ] }, { "name": "minecraft:portals", "entries": [ - 263, - 334, - 600 + 264, + 335, + 603 ] }, { @@ -3619,73 +4570,168 @@ "entries": [ 34, 36, + 35, 9, 8, 11, 10, - 322, + 323, + 968, 963, - 958, - 964, - 54, - 723, - 722, - 37 + 969, + 55, + 727, + 726, + 37, + 38 ] }, { "name": "minecraft:polar_bears_spawnable_on_alternate", "entries": [ - 247 + 248 ] }, { "name": "minecraft:cauldrons", "entries": [ - 330, 331, 332, - 333 + 333, + 334 ] }, { "name": "minecraft:big_dripleaf_placeable", "entries": [ - 250, - 958, + 251, + 963, 9, 8, 11, 10, - 322, - 963, + 323, + 968, + 969, + 55, + 184 + ] + }, + { + "name": "minecraft:sword_efficient", + "entries": [ + 85, + 82, + 83, + 88, + 86, + 84, + 90, + 91, + 89, + 87, + 23, + 24, + 25, + 26, + 27, + 29, + 959, + 960, + 30, + 28, + 147, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 160, + 159, + 148, + 601, + 383, + 384, + 183, + 316, + 315, + 598, + 599, + 123, + 124, + 125, + 317, + 318, + 497, + 498, + 499, + 500, + 501, + 502, + 967, + 600, + 161, + 162, + 252, + 255, + 265, + 266, + 312, + 313, + 314, + 324, + 340, + 788, + 956, + 957, + 958, + 961, + 962, 964, - 54, - 183 + 965, + 966, + 328, + 794, + 796, + 797, + 803, + 805, + 806, + 807, + 808, + 809, + 592, + 593 ] }, { "name": "minecraft:pressure_plates", "entries": [ - 411, 412, - 232, + 413, 233, 234, 235, 236, - 238, - 810, - 811, + 237, 239, - 230, - 859 + 814, + 815, + 240, + 241, + 238, + 231, + 863 ] }, { "name": "minecraft:dampens_vibrations", "entries": [ - 129, 130, 131, 132, @@ -3701,7 +4747,7 @@ 142, 143, 144, - 477, + 145, 478, 479, 480, @@ -3716,16 +4762,17 @@ 489, 490, 491, - 492 + 492, + 493 ] }, { "name": "minecraft:mangrove_logs", "entries": [ - 52, - 72, - 63, - 80 + 53, + 73, + 64, + 81 ] }, { @@ -3735,21 +4782,21 @@ 2, 4, 6, - 905, - 965, + 909, + 970, 9, 8, 11, 10, - 322, + 323, + 968, 963, - 958, - 964, - 54, + 969, + 55, 34, 36, - 493, - 424, + 35, + 494, 425, 426, 427, @@ -3765,36 +4812,44 @@ 437, 438, 439, - 40, + 440, 41, - 918, - 919, + 42, + 923, + 924, 32, 37, - 98, - 534, - 906, - 246, - 495, - 987, - 988 + 38, + 99, + 535, + 910, + 247, + 496, + 992, + 993 ] }, { "name": "minecraft:snow_layer_can_survive_on", "entries": [ - 834, - 256, - 964 + 838, + 257, + 969 ] }, { "name": "minecraft:jungle_logs", "entries": [ - 48, - 68, - 58, - 76 + 49, + 69, + 59, + 77 + ] + }, + { + "name": "minecraft:vibration_resonators", + "entries": [ + 903 ] }, { @@ -3802,8 +4857,8 @@ "entries": [ 34, 36, - 493, - 424, + 35, + 494, 425, 426, 427, @@ -3819,23 +4874,40 @@ 437, 438, 439, + 440, 9, 8, 11, 10, - 322, + 323, + 968, 963, - 958, - 964, - 54 + 969, + 55 + ] + }, + { + "name": "minecraft:wall_hanging_signs", + "entries": [ + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 227, + 228, + 226, + 229 ] }, { "name": "minecraft:snow_layer_cannot_survive_on", "entries": [ - 247, - 495, - 463 + 248, + 496, + 464 ] }, { @@ -3845,19 +4917,18 @@ 2, 4, 6, - 905, - 965, + 909, + 970, 9, 8, 11, 10, - 322, + 323, + 968, 963, - 958, - 964, - 54, - 493, - 424, + 969, + 55, + 494, 425, 426, 427, @@ -3873,99 +4944,115 @@ 437, 438, 439, - 798, - 789, - 255, - 258, - 845, + 440, + 802, + 793, + 256, + 259, + 849, 34, 36, 37, - 256, 257, - 906, - 986, - 250, - 950, - 336, - 534, - 98 + 258, + 910, + 991, + 251, + 955, + 337, + 535, + 99 ] }, { "name": "minecraft:wooden_stairs", "entries": [ - 175, - 347, + 176, 348, 349, - 456, - 458, - 818, - 819, - 459 - ] - }, - { - "name": "minecraft:signs", - "entries": [ - 185, - 186, - 187, - 188, - 190, - 191, - 824, - 825, - 192, - 198, - 199, - 200, - 201, - 203, - 204, - 826, - 827, - 205 + 350, + 457, + 459, + 822, + 823, + 460, + 461, + 458 ] }, { "name": "minecraft:spruce_logs", "entries": [ - 46, - 66, - 56, - 74 + 47, + 67, + 57, + 75 ] }, { "name": "minecraft:ancient_city_replaceable", "entries": [ - 965, - 978, - 974, - 980, - 976, - 979, - 977, - 981, - 966, + 970, 983, + 979, + 985, + 981, 984, - 136 + 982, + 986, + 971, + 988, + 989, + 137 + ] + }, + { + "name": "minecraft:signs", + "entries": [ + 186, + 187, + 188, + 189, + 191, + 192, + 828, + 829, + 193, + 194, + 190, + 199, + 200, + 201, + 202, + 204, + 205, + 830, + 831, + 206, + 207, + 203 + ] + }, + { + "name": "c:uncolored_sandstone_blocks", + "entries": [ + 99, + 100, + 101, + 564 ] }, { "name": "minecraft:mangrove_logs_can_grow_through", "entries": [ - 964, + 969, + 55, 54, + 89, 53, - 88, - 52, 30, - 956, - 316 + 961, + 317 ] }, { @@ -3975,35 +5062,37 @@ 2, 4, 6, - 905, - 965 + 909, + 970 ] }, { "name": "minecraft:wooden_buttons", "entries": [ - 384, 385, 386, 387, 388, - 390, - 820, - 821, - 391 + 389, + 391, + 824, + 825, + 392, + 393, + 390 ] }, { "name": "minecraft:axolotls_spawnable_on", "entries": [ - 250 + 251 ] }, { "name": "minecraft:wither_summon_base_blocks", "entries": [ - 256, - 257 + 257, + 258 ] }, { @@ -4013,105 +5102,110 @@ 2, 4, 6, - 905, - 965 + 909, + 970 ] }, { "name": "minecraft:hoglin_repellents", "entries": [ - 790, - 841, - 263, - 839 + 794, + 845, + 264, + 843 + ] + }, + { + "name": "c:budding_blocks", + "entries": [ + 904 ] }, { "name": "minecraft:stone_bricks", "entries": [ - 293, 294, 295, - 296 + 296, + 297 ] }, { "name": "minecraft:fire", "entries": [ - 172, - 173 + 173, + 174 ] }, { "name": "minecraft:mineable/axe", "entries": [ - 101, - 313, - 312, - 954, - 723, - 770, - 832, - 833, - 598, - 960, - 959, - 166, - 305, - 160, - 782, - 382, - 773, - 264, - 952, - 951, - 176, - 592, - 591, - 339, - 830, - 181, - 799, - 414, - 124, - 123, - 774, - 317, - 122, - 962, - 265, - 252, - 195, - 501, - 776, - 323, - 769, - 315, - 311, - 307, - 327, - 383, + 102, 314, - 254, + 313, + 959, + 727, + 774, + 836, + 837, + 601, + 965, + 964, + 167, 306, 161, - 768, - 961, + 786, + 383, 777, - 783, - 953, - 251, - 784, - 500, - 410, - 804, - 803, - 316, - 790, - 802, - 801, + 265, + 957, + 956, + 177, + 593, + 592, + 340, + 834, 182, + 803, + 415, + 125, + 124, + 778, + 318, + 123, + 967, + 266, + 253, + 196, 502, + 780, + 324, + 773, + 316, + 312, + 308, + 328, + 384, + 315, + 255, + 307, + 162, + 772, + 966, + 781, + 787, + 958, + 252, + 788, + 501, + 411, + 808, + 807, + 317, + 794, + 806, + 805, + 183, 503, 504, 505, @@ -4143,23 +5237,34 @@ 531, 532, 533, - 569, - 567, - 571, + 534, + 570, 568, - 318, - 566, - 816, - 817, 572, - 51, - 71, - 61, - 79, - 45, - 65, + 569, + 319, + 567, + 820, + 821, + 573, + 574, + 571, + 52, + 72, 62, - 73, + 80, + 46, + 66, + 63, + 74, + 50, + 70, + 60, + 78, + 48, + 68, + 58, + 76, 49, 69, 59, @@ -4168,189 +5273,235 @@ 67, 57, 75, - 48, - 68, - 58, - 76, - 46, - 66, - 56, - 74, - 52, - 72, - 63, - 80, - 794, - 795, - 796, - 797, - 785, - 786, - 787, - 788, + 53, + 73, + 64, + 81, + 51, + 71, + 61, + 79, + 798, + 799, + 800, + 801, + 789, + 790, + 791, + 792, 13, 14, 15, 16, 17, 19, - 806, - 807, + 810, + 811, 20, + 21, + 18, 23, 24, 25, 26, 27, 29, - 955, + 960, 30, - 185, + 28, 186, 187, 188, - 190, + 189, 191, - 824, - 825, 192, - 198, + 828, + 829, + 193, + 194, + 190, 199, 200, 201, - 203, + 202, 204, - 826, - 827, 205, - 384, + 830, + 831, + 206, + 207, + 203, 385, 386, 387, 388, - 390, - 820, - 821, + 389, 391, - 194, - 582, + 824, + 825, + 392, + 393, + 390, + 195, 583, 584, 585, - 587, - 822, - 823, + 586, 588, - 253, - 577, - 579, - 574, + 826, + 827, + 589, + 590, + 587, + 254, + 578, + 580, 575, 576, - 812, - 813, - 580, - 232, + 577, + 816, + 817, + 581, + 582, + 579, 233, 234, 235, 236, - 238, - 810, - 811, + 237, 239, - 538, + 814, + 815, + 240, + 241, + 238, 539, 540, 541, 542, - 544, - 808, - 809, + 543, 545, - 175, - 347, + 812, + 813, + 546, + 547, + 544, + 176, 348, 349, - 456, + 350, + 457, + 459, + 822, + 823, + 460, + 461, 458, + 289, + 287, + 291, + 288, + 285, + 286, 818, 819, - 459, - 288, - 286, + 292, + 293, 290, - 287, - 284, - 285, - 814, - 815, - 291, - 53 + 54, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 227, + 228, + 226, + 229, + 22, + 548, + 462, + 56, + 65, + 168 ] }, { "name": "minecraft:needs_diamond_tool", "entries": [ - 169, - 838, - 836, - 839, - 837 + 170, + 842, + 840, + 843, + 841 ] }, { "name": "minecraft:base_stone_nether", "entries": [ - 255, - 258, - 845 + 256, + 259, + 849 ] }, { "name": "minecraft:wall_signs", "entries": [ - 198, 199, 200, 201, - 203, + 202, 204, - 826, - 827, - 205 + 205, + 830, + 831, + 206, + 207, + 203 ] }, { "name": "minecraft:slabs", "entries": [ - 538, 539, 540, 541, 542, - 544, - 808, - 809, + 543, 545, + 812, + 813, + 546, + 547, + 544, 548, 549, - 555, 550, - 561, - 558, + 556, + 551, + 562, 559, + 560, + 555, 554, + 558, 553, - 557, - 552, - 472, 473, 474, - 742, - 743, - 744, - 745, + 475, 746, 747, 748, @@ -4360,24 +5511,28 @@ 752, 753, 754, - 551, - 560, - 848, - 853, - 858, - 968, - 972, - 976, - 980, - 945, - 946, - 947, - 928, - 929, - 930, - 931, - 944, - 556 + 755, + 756, + 757, + 758, + 552, + 561, + 852, + 857, + 862, + 973, + 977, + 981, + 985, + 950, + 951, + 952, + 933, + 934, + 935, + 936, + 949, + 557 ] }, { @@ -4389,55 +5544,52 @@ { "name": "minecraft:guarded_by_piglins", "entries": [ - 162, - 770, - 176, - 343, - 856, - 410, - 989, - 610, + 163, + 774, + 177, + 344, + 860, + 411, + 994, + 613, + 629, + 625, 626, - 622, 623, - 620, - 618, - 624, - 614, + 621, + 627, + 617, + 622, 619, 616, - 613, - 612, - 617, - 621, - 625, - 611, 615, - 38, - 44, - 39 + 620, + 624, + 628, + 614, + 618, + 39, + 45, + 40 ] }, { "name": "minecraft:mineable/shovel", "entries": [ - 250, + 251, 9, 10, 11, - 183, + 184, 8, 37, - 322, + 323, 34, 36, - 248, - 246, - 256, - 599, - 659, - 660, - 661, + 249, + 247, + 257, + 602, 662, 663, 664, @@ -4451,10 +5603,15 @@ 672, 673, 674, - 257, - 963, - 54, - 964 + 675, + 676, + 677, + 258, + 968, + 55, + 969, + 35, + 38 ] }, { @@ -4464,26 +5621,26 @@ 2, 4, 6, - 905, - 965, - 255, - 258, - 845, + 909, + 970, + 256, + 259, + 849, 9, 8, 11, 10, - 322, + 323, + 968, 963, - 958, - 964, - 54, - 798, - 789, - 605, - 791, - 256, - 257 + 969, + 55, + 802, + 793, + 608, + 795, + 257, + 258 ] }, { @@ -4496,48 +5653,67 @@ ] }, { - "name": "minecraft:redstone_ores", + "name": "minecraft:trapdoors", "entries": [ - 241, - 242 + 289, + 287, + 291, + 288, + 285, + 286, + 818, + 819, + 292, + 293, + 290, + 466 ] }, { - "name": "minecraft:trapdoors", + "name": "minecraft:redstone_ores", "entries": [ - 288, - 286, - 290, - 287, - 284, - 285, - 814, - 815, - 291, - 465 + 242, + 243 + ] + }, + { + "name": "minecraft:cherry_logs", + "entries": [ + 51, + 71, + 61, + 79 + ] + }, + { + "name": "c:red_sandstone_blocks", + "entries": [ + 535, + 536, + 537, + 566 ] }, { "name": "minecraft:fall_damage_resetting", "entries": [ - 195, - 316, - 768, - 801, - 802, - 803, - 804, - 951, - 952, - 784, - 121 + 196, + 317, + 772, + 805, + 806, + 807, + 808, + 956, + 957, + 788, + 122 ] }, { "name": "minecraft:flowers", "entries": [ - 146, - 148, + 147, 149, 150, 151, @@ -4547,54 +5723,87 @@ 155, 156, 157, - 159, 158, - 496, + 160, + 159, + 148, 497, - 499, 498, - 90, - 955, - 30 + 500, + 499, + 600, + 91, + 960, + 30, + 87, + 962 ] }, { "name": "minecraft:buttons", "entries": [ - 384, 385, 386, 387, 388, - 390, - 820, - 821, + 389, 391, - 245, - 860 + 824, + 825, + 392, + 393, + 390, + 246, + 864 ] }, { "name": "minecraft:corals", "entries": [ - 694, - 695, - 696, - 697, 698, - 704, - 705, - 706, - 707, - 708 + 699, + 700, + 701, + 702, + 708, + 709, + 710, + 711, + 712 + ] + }, + { + "name": "minecraft:combination_step_sound_blocks", + "entries": [ + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 961, + 247, + 797, + 796, + 809 ] }, { "name": "minecraft:rabbits_spawnable_on", "entries": [ 8, - 246, - 248, + 247, + 249, 34 ] }, @@ -4607,32 +5816,47 @@ 16, 17, 19, - 806, - 807, - 20 + 810, + 811, + 20, + 21, + 18 + ] + }, + { + "name": "minecraft:stone_buttons", + "entries": [ + 246, + 864 ] }, { "name": "minecraft:soul_speed_blocks", "entries": [ - 256, - 257 + 257, + 258 + ] + }, + { + "name": "c:clusters", + "entries": [ + 905 ] }, { "name": "minecraft:rails", "entries": [ - 196, - 118, + 197, 119, - 422 + 120, + 423 ] }, { "name": "minecraft:diamond_ores", "entries": [ - 178, - 179 + 179, + 180 ] }, { @@ -4641,131 +5865,168 @@ 31, 32, 33, - 247, - 495, - 720 + 248, + 496, + 724 ] }, { "name": "minecraft:overworld_natural_logs", "entries": [ - 49, - 47, - 45, + 50, 48, 46, - 51, - 52 + 49, + 47, + 52, + 53, + 51 ] }, { - "name": "minecraft:deepslate_ore_replaceables", + "name": "minecraft:all_hanging_signs", "entries": [ - 965, - 905 - ] - }, - { - "name": "c:shulker_boxes", - "entries": [ - 610, - 622, - 623, - 620, - 618, - 624, - 614, - 619, - 616, - 613, - 612, - 617, - 621, - 625, - 611, - 615, - 626 + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 227, + 228, + 226, + 229 ] }, { "name": "minecraft:leaves", "entries": [ - 84, - 81, - 82, - 87, 85, + 82, 83, - 89, + 88, + 86, + 84, 90, - 88 + 91, + 89, + 87 + ] + }, + { + "name": "c:shulker_boxes", + "entries": [ + 613, + 625, + 626, + 623, + 621, + 627, + 617, + 622, + 619, + 616, + 615, + 620, + 624, + 628, + 614, + 618, + 629 + ] + }, + { + "name": "minecraft:deepslate_ore_replaceables", + "entries": [ + 970, + 909 ] }, { "name": "minecraft:walls", "entries": [ - 352, 353, - 755, - 756, - 757, - 758, + 354, 759, 760, + 761, 762, 763, 764, - 765, 766, 767, - 847, - 855, - 861, - 969, - 973, - 977, - 981, - 761 - ] - }, - { - "name": "minecraft:cave_vines", - "entries": [ - 952, - 951 - ] - }, - { - "name": "c:glass_blocks", - "entries": [ - 93, - 275, - 283, - 269, - 279, - 280, - 277, - 281, - 271, - 276, - 273, - 270, - 274, - 278, - 282, - 907, - 268, - 272 + 768, + 769, + 770, + 771, + 851, + 859, + 865, + 974, + 978, + 982, + 986, + 765 ] }, { "name": "minecraft:coral_blocks", "entries": [ - 684, - 685, - 686, - 687, - 688 + 688, + 689, + 690, + 691, + 692 + ] + }, + { + "name": "minecraft:cave_vines", + "entries": [ + 957, + 956 + ] + }, + { + "name": "c:glass_blocks", + "entries": [ + 94, + 276, + 284, + 270, + 280, + 281, + 278, + 282, + 272, + 277, + 274, + 271, + 275, + 279, + 283, + 911, + 269, + 273 + ] + }, + { + "name": "c:uncolored_sandstone_slabs", + "entries": [ + 551, + 552, + 752 ] }, { @@ -4777,79 +6038,81 @@ { "name": "minecraft:fence_gates", "entries": [ - 569, - 567, - 571, + 570, 568, - 318, - 566, - 816, - 817, - 572 + 572, + 569, + 319, + 567, + 820, + 821, + 573, + 574, + 571 ] }, { "name": "minecraft:bee_growables", "entries": [ - 598, - 382, - 383, - 182, - 315, - 314, - 784, - 951, - 952 - ] - }, - { - "name": "minecraft:wither_immune", - "entries": [ - 463, - 31, - 334, - 335, - 600, - 350, 601, - 602, - 828, - 829, - 145, - 464, - 996 + 383, + 384, + 183, + 316, + 315, + 598, + 599, + 788, + 956, + 957 ] }, { "name": "minecraft:wooden_pressure_plates", "entries": [ - 232, 233, 234, 235, 236, - 238, - 810, - 811, - 239 + 237, + 239, + 814, + 815, + 240, + 241, + 238 + ] + }, + { + "name": "minecraft:wither_immune", + "entries": [ + 464, + 31, + 335, + 336, + 603, + 351, + 604, + 605, + 832, + 833, + 146, + 465, + 1001 ] }, { "name": "minecraft:acacia_logs", "entries": [ - 49, - 69, - 59, - 77 + 50, + 70, + 60, + 78 ] }, { "name": "minecraft:candles", "entries": [ - 865, - 866, - 867, - 868, 869, 870, 871, @@ -4862,59 +6125,70 @@ 878, 879, 880, - 881 + 881, + 882, + 883, + 884, + 885 + ] + }, + { + "name": "c:red_sandstone_stairs", + "entries": [ + 538, + 733 ] }, { "name": "minecraft:tall_flowers", "entries": [ - 496, 497, + 498, + 500, 499, - 498 + 600 ] }, { "name": "minecraft:dragon_transparent", "entries": [ - 464, - 172, - 173 + 465, + 173, + 174 ] }, { "name": "minecraft:underwater_bonemeals", "entries": [ - 125, - 694, - 695, - 696, - 697, + 126, 698, - 704, - 705, - 706, - 707, + 699, + 700, + 701, + 702, 708, - 714, - 715, - 716, - 717, - 718 + 709, + 710, + 711, + 712, + 718, + 719, + 720, + 721, + 722 ] }, { "name": "minecraft:stone_pressure_plates", "entries": [ - 230, - 859 + 231, + 863 ] }, { "name": "minecraft:impermeable", "entries": [ - 93, - 268, + 94, 269, 270, 271, @@ -4930,116 +6204,74 @@ 281, 282, 283, - 907 - ] - }, - { - "name": "minecraft:copper_ores", - "entries": [ - 918, - 919 - ] - }, - { - "name": "minecraft:snow", - "entries": [ - 246, - 248, - 908 - ] - }, - { - "name": "minecraft:nylium", - "entries": [ - 798, - 789 + 284, + 911 ] }, { "name": "minecraft:sand", "entries": [ 34, - 36 + 36, + 35 + ] + }, + { + "name": "minecraft:copper_ores", + "entries": [ + 923, + 924 + ] + }, + { + "name": "minecraft:nylium", + "entries": [ + 802, + 793 + ] + }, + { + "name": "minecraft:snow", + "entries": [ + 247, + 249, + 912 ] }, { "name": "minecraft:gold_ores", "entries": [ - 38, - 44, - 39 + 39, + 45, + 40 ] }, { "name": "minecraft:small_dripleaf_placeable", "entries": [ - 250, - 958 - ] - }, - { - "name": "minecraft:completes_find_tree_tutorial", - "entries": [ - 51, - 71, - 61, - 79, - 45, - 65, - 62, - 73, - 49, - 69, - 59, - 77, - 47, - 67, - 57, - 75, - 48, - 68, - 58, - 76, - 46, - 66, - 56, - 74, - 52, - 72, - 63, - 80, - 794, - 795, - 796, - 797, - 785, - 786, - 787, - 788, - 84, - 81, - 82, - 87, - 85, - 83, - 89, - 90, - 88, - 605, - 791 + 251, + 963 ] }, { "name": "minecraft:logs_that_burn", "entries": [ - 51, - 71, - 61, - 79, - 45, - 65, + 52, + 72, 62, - 73, + 80, + 46, + 66, + 63, + 74, + 50, + 70, + 60, + 78, + 48, + 68, + 58, + 76, 49, 69, 59, @@ -5048,47 +6280,103 @@ 67, 57, 75, + 53, + 73, + 64, + 81, + 51, + 71, + 61, + 79 + ] + }, + { + "name": "minecraft:completes_find_tree_tutorial", + "entries": [ + 52, + 72, + 62, + 80, + 46, + 66, + 63, + 74, + 50, + 70, + 60, + 78, 48, 68, 58, 76, - 46, - 66, - 56, - 74, - 52, - 72, - 63, - 80 + 49, + 69, + 59, + 77, + 47, + 67, + 57, + 75, + 53, + 73, + 64, + 81, + 51, + 71, + 61, + 79, + 798, + 799, + 800, + 801, + 789, + 790, + 791, + 792, + 85, + 82, + 83, + 88, + 86, + 84, + 90, + 91, + 89, + 87, + 608, + 795 ] }, { "name": "minecraft:mineable/hoe", "entries": [ - 605, - 791, - 476, - 677, - 831, - 800, - 91, + 608, + 795, + 477, + 680, + 835, + 804, 92, - 84, - 81, - 82, - 87, + 93, 85, + 82, 83, - 89, - 90, 88, - 909, - 958, - 956, - 910, - 912, - 911, - 913 + 86, + 84, + 90, + 91, + 89, + 913, + 914, + 963, + 961, + 915, + 917, + 916, + 918, + 962, + 87 ] }, { @@ -5098,43 +6386,68 @@ 8, 11, 10, - 322, + 323, + 968, 963, - 958, - 964, - 54 + 969, + 55 ] }, { "name": "c:ores", "entries": [ - 241, 242, - 918, - 919, - 38, - 44, + 243, + 923, + 924, 39, + 45, 40, 41, 42, 43, - 341, + 44, 342, - 94, + 343, 95, - 178, + 96, 179, - 416 + 180, + 417 + ] + }, + { + "name": "minecraft:replaceable", + "entries": [ + 0, + 32, + 33, + 123, + 124, + 125, + 126, + 127, + 173, + 174, + 247, + 317, + 318, + 465, + 501, + 502, + 611, + 729, + 730, + 731, + 796, + 797, + 809, + 967 ] }, { "name": "minecraft:candle_cakes", "entries": [ - 882, - 883, - 884, - 885, 886, 887, 888, @@ -5147,1771 +6460,56 @@ 895, 896, 897, - 898 + 898, + 899, + 900, + 901, + 902 + ] + }, + { + "name": "c:villager_job_sites", + "entries": [ + 774, + 776, + 330, + 777, + 331, + 333, + 332, + 334, + 834, + 778, + 779, + 780, + 773, + 781, + 775, + 782 ] }, { "name": "minecraft:needs_iron_tool", "entries": [ - 180, - 178, + 181, 179, - 341, + 180, 342, - 346, - 162, - 989, - 38, + 343, + 347, + 163, + 994, 39, - 241, - 242 - ] - } - ] - }, - { - "registry": "minecraft:item", - "tags": [ - { - "name": "minecraft:soul_fire_base_blocks", - "entries": [ - 302, - 303 - ] - }, - { - "name": "c:foods", - "entries": [ - 755, - 805, - 811, - 837, - 838, - 840, - 841, - 891, - 892, - 893, - 894, - 895, - 896, - 936, - 939, - 940, - 943, - 944, - 945, - 946, - 947, - 955, - 1047, - 1048, - 1049, - 1050, - 1052, - 1061, - 1068, - 1069, - 1070, - 1081, - 1082, - 1100, - 1103, - 1105, - 1138, - 1159, - 1160, - 1167 - ] - }, - { - "name": "minecraft:beacon_payment_items", - "entries": [ - 771, - 761, - 760, - 770, - 766 - ] - }, - { - "name": "c:lava_buckets", - "entries": [ - 866 - ] - }, - { - "name": "c:raw_iron_ores", - "entries": [ - 765 - ] - }, - { - "name": "minecraft:wooden_slabs", - "entries": [ - 228, - 229, - 230, - 231, - 232, - 234, - 238, - 239, - 235 - ] - }, - { - "name": "c:magenta_dyes", - "entries": [ - 902 - ] - }, - { - "name": "minecraft:coal_ores", - "entries": [ - 48, - 49 - ] - }, - { - "name": "minecraft:small_flowers", - "entries": [ - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207 - ] - }, - { - "name": "c:axes", - "entries": [ - 796, - 786, - 776, - 781, - 791, - 801 - ] - }, - { - "name": "c:raw_iron_blocks", - "entries": [ - 68 - ] - }, - { - "name": "minecraft:wooden_trapdoors", - "entries": [ - 701, - 699, - 703, - 700, - 697, - 698, - 706, - 707, - 704 - ] - }, - { - "name": "c:pink_dyes", - "entries": [ - 906 - ] - }, - { - "name": "c:shovels", - "entries": [ - 794, - 784, - 774, - 779, - 789, - 799 - ] - }, - { - "name": "c:black_dyes", - "entries": [ - 915 - ] - }, - { - "name": "c:lapis", - "entries": [ - 762 - ] - }, - { - "name": "c:netherite_ingots", - "entries": [ - 771 - ] - }, - { - "name": "minecraft:axolotl_tempt_items", - "entries": [ - 874 - ] - }, - { - "name": "c:spears", - "entries": [ - 1133 - ] - }, - { - "name": "minecraft:wool", - "entries": [ - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194 - ] - }, - { - "name": "minecraft:stairs", - "entries": [ - 359, - 360, - 361, - 362, - 363, - 365, - 369, - 370, - 366, - 280, - 356, - 346, - 338, - 337, - 273, - 402, - 489, - 483, - 482, - 484, - 596, - 597, - 598, - 599, - 600, - 601, - 602, - 603, - 604, - 605, - 606, - 607, - 608, - 609, - 1173, - 1181, - 1177, - 610, - 611, - 613, - 612, - 88, - 87, - 86, - 85, - 103, - 102, - 101, - 104, - 339 - ] - }, - { - "name": "c:purple_dyes", - "entries": [ - 910 - ] - }, - { - "name": "minecraft:logs", - "entries": [ - 115, - 149, - 128, - 138, - 109, - 143, - 122, - 132, - 113, - 147, - 126, - 136, - 111, - 145, - 124, - 134, - 112, - 146, - 125, - 135, - 110, - 144, - 123, - 133, - 116, - 150, - 129, - 139, - 119, - 130, - 151, - 140, - 120, - 131, - 152, - 141 - ] - }, - { - "name": "minecraft:tools", - "entries": [ - 793, - 778, - 783, - 798, - 773, - 788, - 796, - 781, - 786, - 801, - 776, - 791, - 795, - 780, - 785, - 800, - 775, - 790, - 794, - 779, - 784, - 799, - 774, - 789, - 797, - 782, - 787, - 802, - 777, - 792, - 1133 - ] - }, - { - "name": "minecraft:creeper_drop_music_discs", - "entries": [ - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128 - ] - }, - { - "name": "minecraft:compasses", - "entries": [ - 884, - 885 - ] - }, - { - "name": "c:lime_dyes", - "entries": [ - 905 - ] - }, - { - "name": "minecraft:arrows", - "entries": [ - 757, - 1109, - 1108 - ] - }, - { - "name": "minecraft:wool_carpets", - "entries": [ - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437 - ] - }, - { - "name": "c:dyes", - "entries": [ - 915, - 911, - 912, - 913, - 914, - 900, - 904, - 908, - 903, - 905, - 902, - 901, - 906, - 909, - 907, - 910 - ] - }, - { - "name": "c:pickaxes", - "entries": [ - 795, - 785, - 775, - 780, - 790, - 800 - ] - }, - { - "name": "c:white_dyes", - "entries": [ - 900 - ] - }, - { - "name": "c:brown_dyes", - "entries": [ - 912 - ] - }, - { - "name": "minecraft:wooden_doors", - "entries": [ - 685, - 686, - 687, - 688, - 689, - 691, - 694, - 695, - 692 - ] - }, - { - "name": "minecraft:warped_stems", - "entries": [ - 120, - 131, - 152, - 141 - ] - }, - { - "name": "minecraft:emerald_ores", - "entries": [ - 58, - 59 - ] - }, - { - "name": "minecraft:crimson_stems", - "entries": [ - 119, - 130, - 151, - 140 - ] - }, - { - "name": "c:gold_ingots", - "entries": [ - 770 - ] - }, - { - "name": "minecraft:ignored_by_piglin_babies", - "entries": [ - 869 - ] - }, - { - "name": "minecraft:swords", - "entries": [ - 793, - 778, - 783, - 798, - 773, - 788 - ] - }, - { - "name": "minecraft:stone_tool_materials", - "entries": [ - 22, - 1171, - 9 - ] - }, - { - "name": "minecraft:terracotta", - "entries": [ - 438, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418 - ] - }, - { - "name": "minecraft:wart_blocks", - "entries": [ - 493, - 494 - ] - }, - { - "name": "c:light_gray_dyes", - "entries": [ - 908 - ] - }, - { - "name": "minecraft:dark_oak_logs", - "entries": [ - 115, - 149, - 128, - 138 - ] - }, - { - "name": "minecraft:non_flammable_wood", - "entries": [ - 120, - 131, - 152, - 141, - 119, - 130, - 151, - 140, - 32, - 33, - 238, - 239, - 682, - 683, - 296, - 297, - 706, - 707, - 717, - 718, - 369, - 370, - 667, - 668, - 694, - 695, - 851, - 852 - ] - }, - { - "name": "minecraft:coals", - "entries": [ - 758, - 759 - ] - }, - { - "name": "minecraft:piglin_food", - "entries": [ - 837, - 838 - ] - }, - { - "name": "c:quartz_ores", - "entries": [ - 65 - ] - }, - { - "name": "minecraft:anvil", - "entries": [ - 395, - 396, - 397 - ] - }, - { - "name": "minecraft:birch_logs", - "entries": [ - 111, - 145, - 124, - 134 - ] - }, - { - "name": "minecraft:lapis_ores", - "entries": [ - 60, - 61 - ] - }, - { - "name": "c:emeralds", - "entries": [ - 761 - ] - }, - { - "name": "minecraft:axes", - "entries": [ - 796, - 781, - 786, - 801, - 776, - 791 - ] - }, - { - "name": "minecraft:hoes", - "entries": [ - 797, - 782, - 787, - 802, - 777, - 792 - ] - }, - { - "name": "c:green_dyes", - "entries": [ - 913 - ] - }, - { - "name": "c:raw_gold_ores", - "entries": [ - 769 - ] - }, - { - "name": "c:glass_panes", - "entries": [ - 333, - 470, - 478, - 464, - 474, - 475, - 472, - 476, - 466, - 471, - 468, - 465, - 469, - 473, - 477, - 463, - 467 - ] - }, - { - "name": "minecraft:fences", - "entries": [ - 287, - 291, - 293, - 288, - 289, - 290, - 296, - 297, - 294, - 345 - ] - }, - { - "name": "minecraft:saplings", - "entries": [ - 35, - 36, - 37, - 38, - 39, - 41, - 174, - 175, - 42 - ] - }, - { - "name": "minecraft:beds", - "entries": [ - 934, - 935, - 931, - 932, - 929, - 927, - 933, - 923, - 928, - 925, - 922, - 921, - 926, - 930, - 920, - 924 - ] - }, - { - "name": "minecraft:iron_ores", - "entries": [ - 50, - 51 - ] - }, - { - "name": "minecraft:oak_logs", - "entries": [ - 109, - 143, - 122, - 132 - ] - }, - { - "name": "minecraft:doors", - "entries": [ - 685, - 686, - 687, - 688, - 689, - 691, - 694, - 695, - 692, - 684 - ] - }, - { - "name": "c:raw_copper_ores", - "entries": [ - 767 - ] - }, - { - "name": "minecraft:banners", - "entries": [ - 1083, - 1084, - 1085, - 1086, - 1087, - 1088, - 1089, - 1090, - 1091, - 1092, - 1093, - 1094, - 1095, - 1096, - 1097, - 1098 - ] - }, - { - "name": "c:diamonds", - "entries": [ - 760 - ] - }, - { - "name": "c:orange_dyes", - "entries": [ - 901 - ] - }, - { - "name": "minecraft:smelts_to_glass", - "entries": [ - 44, - 46 - ] - }, - { - "name": "minecraft:stone_crafting_materials", - "entries": [ - 22, - 1171, - 9 - ] - }, - { - "name": "minecraft:wooden_fences", - "entries": [ - 287, - 291, - 293, - 288, - 289, - 290, - 296, - 297, - 294 - ] - }, - { - "name": "minecraft:piglin_repellents", - "entries": [ - 307, - 1158, - 1162 - ] - }, - { - "name": "c:redstone_dusts", - "entries": [ - 632 - ] - }, - { - "name": "c:shears", - "entries": [ - 938 - ] - }, - { - "name": "c:potions", - "entries": [ - 1110, - 1107, - 953 - ] - }, - { - "name": "minecraft:dampens_vibrations", - "entries": [ - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437 - ] - }, - { - "name": "minecraft:mangrove_logs", - "entries": [ - 116, - 150, - 129, - 139 - ] - }, - { - "name": "minecraft:jungle_logs", - "entries": [ - 112, - 146, - 125, - 135 - ] - }, - { - "name": "minecraft:lectern_books", - "entries": [ - 1043, - 1042 - ] - }, - { - "name": "minecraft:spruce_logs", - "entries": [ - 110, - 144, - 123, - 133 - ] - }, - { - "name": "minecraft:signs", - "entries": [ - 842, - 843, - 844, - 846, - 845, - 848, - 851, - 852, - 849 - ] - }, - { - "name": "minecraft:wooden_stairs", - "entries": [ - 359, - 360, - 361, - 362, - 363, - 365, - 369, - 370, - 366 - ] - }, - { - "name": "minecraft:wooden_buttons", - "entries": [ - 658, - 659, - 660, - 661, - 662, - 664, - 667, - 668, - 665 - ] - }, - { - "name": "minecraft:fishes", - "entries": [ - 891, - 895, - 892, - 896, - 894, - 893 - ] - }, - { - "name": "c:milk_buckets", - "entries": [ - 870 - ] - }, - { - "name": "minecraft:stone_bricks", - "entries": [ - 316, - 317, - 318, - 319 - ] - }, - { - "name": "c:light_blue_dyes", - "entries": [ - 903 - ] - }, - { - "name": "c:iron_ingots", - "entries": [ - 766 - ] - }, - { - "name": "minecraft:shovels", - "entries": [ - 794, - 779, - 784, - 799, - 774, - 789 - ] - }, - { - "name": "minecraft:chest_boats", - "entries": [ - 733, - 735, - 737, - 739, - 741, - 745, - 747 - ] - }, - { - "name": "minecraft:creeper_igniters", - "entries": [ - 754, - 1041 - ] - }, - { - "name": "c:gray_dyes", - "entries": [ - 907 - ] - }, - { - "name": "minecraft:slabs", - "entries": [ - 228, - 229, - 230, - 231, - 232, - 234, - 238, - 239, - 235, - 240, - 241, - 247, + 40, 242, - 253, - 250, - 251, - 246, - 245, - 249, - 244, - 254, - 255, - 256, - 614, - 615, - 616, - 617, - 618, - 619, - 620, - 621, - 622, - 623, - 624, - 625, - 626, - 243, - 252, - 1172, - 1180, - 1176, - 627, - 628, - 630, - 629, - 107, - 106, - 105, - 92, - 91, - 90, - 89, - 108, - 248 + 243 ] }, { - "name": "c:coal", + "name": "c:uncolored_sandstone_stairs", "entries": [ - 758, - 759 - ] - }, - { - "name": "c:raw_copper_blocks", - "entries": [ - 69 - ] - }, - { - "name": "c:raw_gold_blocks", - "entries": [ - 70 - ] - }, - { - "name": "minecraft:trapdoors", - "entries": [ - 701, - 699, - 703, - 700, - 697, - 698, - 706, - 707, - 704, - 696 - ] - }, - { - "name": "minecraft:redstone_ores", - "entries": [ - 56, - 57 - ] - }, - { - "name": "c:hoes", - "entries": [ - 797, - 787, - 777, - 782, - 792, - 802 - ] - }, - { - "name": "c:red_dyes", - "entries": [ - 914 - ] - }, - { - "name": "minecraft:buttons", - "entries": [ - 658, - 659, - 660, - 661, - 662, - 664, - 667, - 668, - 665, - 656, - 657 - ] - }, - { - "name": "minecraft:flowers", - "entries": [ - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 441, - 442, - 444, - 443, - 162, - 175, - 42 - ] - }, - { - "name": "c:bows", - "entries": [ - 1137, - 756 - ] - }, - { - "name": "minecraft:planks", - "entries": [ - 23, - 24, - 25, - 26, - 27, - 29, - 32, - 33, - 30 - ] - }, - { - "name": "minecraft:boats", - "entries": [ - 732, - 734, - 736, - 738, - 740, - 744, - 746, - 733, - 735, - 737, - 739, - 741, - 745, - 747 - ] - }, - { - "name": "minecraft:fox_food", - "entries": [ - 1159, - 1160 - ] - }, - { - "name": "minecraft:rails", - "entries": [ - 721, - 719, - 720, - 722 - ] - }, - { - "name": "minecraft:diamond_ores", - "entries": [ - 62, - 63 - ] - }, - { - "name": "c:water_buckets", - "entries": [ - 875, - 873, - 871, - 874, - 872, - 876, - 865 - ] - }, - { - "name": "c:yellow_dyes", - "entries": [ - 904 - ] - }, - { - "name": "c:empty_buckets", - "entries": [ - 864 - ] - }, - { - "name": "c:shulker_boxes", - "entries": [ - 498, - 510, - 511, - 508, - 506, - 512, - 502, - 507, - 504, - 501, - 500, - 505, - 509, - 513, - 499, - 503, - 514 - ] - }, - { - "name": "minecraft:leaves", - "entries": [ - 156, - 153, - 154, - 159, - 157, - 155, - 161, - 162, - 160 - ] - }, - { - "name": "minecraft:walls", - "entries": [ - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 390, - 389, - 391, - 392, - 394, - 393, - 381 - ] - }, - { - "name": "c:glass_blocks", - "entries": [ - 165, - 454, - 462, - 448, - 458, - 459, - 456, - 460, - 450, - 455, - 452, - 449, - 453, - 457, - 461, - 166, - 447, - 451 - ] - }, - { - "name": "minecraft:fence_gates", - "entries": [ - 712, - 710, - 714, - 711, - 708, - 709, - 717, - 718, - 715 - ] - }, - { - "name": "c:cyan_dyes", - "entries": [ - 909 - ] - }, - { - "name": "minecraft:wooden_pressure_plates", - "entries": [ - 673, - 674, - 675, - 676, - 677, - 679, - 682, - 683, - 680 - ] - }, - { - "name": "minecraft:acacia_logs", - "entries": [ - 113, - 147, - 126, - 136 - ] - }, - { - "name": "minecraft:candles", - "entries": [ - 1184, - 1185, - 1186, - 1187, - 1188, - 1189, - 1190, - 1191, - 1192, - 1193, - 1194, - 1195, - 1196, - 1197, - 1198, - 1199, - 1200 - ] - }, - { - "name": "minecraft:piglin_loved", - "entries": [ - 54, - 64, - 55, - 75, - 1174, - 671, - 770, - 1156, - 888, - 1052, - 962, - 840, - 841, - 828, - 829, - 830, - 831, - 1075, - 783, - 785, - 784, - 786, - 787, - 769, - 70 - ] - }, - { - "name": "minecraft:music_discs", - "entries": [ - 1117, - 1118, - 1119, - 1120, - 1121, - 1122, - 1123, - 1124, - 1125, - 1126, - 1127, - 1128, - 1131, - 1129, - 1130 - ] - }, - { - "name": "minecraft:tall_flowers", - "entries": [ - 441, - 442, - 444, - 443 - ] - }, - { - "name": "c:quartz", - "entries": [ - 763 - ] - }, - { - "name": "c:blue_dyes", - "entries": [ - 911 - ] - }, - { - "name": "c:copper_ingots", - "entries": [ - 768 - ] - }, - { - "name": "c:swords", - "entries": [ - 793, - 783, - 773, - 778, - 788, - 798 - ] - }, - { - "name": "minecraft:sand", - "entries": [ - 44, - 46 - ] - }, - { - "name": "minecraft:copper_ores", - "entries": [ - 52, - 53 - ] - }, - { - "name": "minecraft:gold_ores", - "entries": [ - 54, - 64, - 55 - ] - }, - { - "name": "minecraft:freeze_immune_wearables", - "entries": [ - 815, - 814, - 813, - 812, - 1077 - ] - }, - { - "name": "minecraft:logs_that_burn", - "entries": [ - 115, - 149, - 128, - 138, - 109, - 143, - 122, - 132, - 113, - 147, - 126, - 136, - 111, - 145, - 124, - 134, - 112, - 146, - 125, - 135, - 110, - 144, - 123, - 133, - 116, - 150, - 129, - 139 - ] - }, - { - "name": "minecraft:completes_find_tree_tutorial", - "entries": [ - 115, - 149, - 128, - 138, - 109, - 143, - 122, - 132, - 113, - 147, - 126, - 136, - 111, - 145, - 124, - 134, - 112, - 146, - 125, - 135, - 110, - 144, - 123, - 133, - 116, - 150, - 129, - 139, - 119, - 130, - 151, - 140, - 120, - 131, - 152, - 141, - 156, - 153, - 154, - 159, - 157, - 155, - 161, - 162, - 160, - 493, - 494 - ] - }, - { - "name": "minecraft:dirt", - "entries": [ - 15, - 14, - 17, - 16, - 340, - 18, - 223, - 19, - 118 - ] - }, - { - "name": "c:ores", - "entries": [ - 50, - 51, - 52, - 53, - 56, - 57, - 54, - 64, - 55, - 48, - 49, - 62, - 63, - 60, - 61, - 65, - 58, - 59 - ] - }, - { - "name": "c:shields", - "entries": [ - 1111 - ] - }, - { - "name": "minecraft:pickaxes", - "entries": [ - 795, - 780, - 785, - 800, - 775, - 790 - ] - }, - { - "name": "minecraft:cluster_max_harvestables", - "entries": [ - 795, - 785, - 790, - 800, - 780, - 775 + 341, + 739 ] } ] @@ -6996,17 +6594,17 @@ ] }, { - "name": "minecraft:freeze_hurts_extra_types", + "name": "minecraft:frog_food", "entries": [ - 98, - 7, + 88, 62 ] }, { - "name": "minecraft:frog_food", + "name": "minecraft:freeze_hurts_extra_types", "entries": [ - 88, + 98, + 7, 62 ] }, @@ -7037,6 +6635,17 @@ 113 ] }, + { + "name": "minecraft:raiders", + "entries": [ + 31, + 75, + 80, + 109, + 51, + 112 + ] + }, { "name": "c:minecarts", "entries": [ @@ -7049,17 +6658,6 @@ 93 ] }, - { - "name": "minecraft:raiders", - "entries": [ - 31, - 75, - 80, - 109, - 51, - 112 - ] - }, { "name": "minecraft:powder_snow_walkable_mobs", "entries": [ @@ -7083,6 +6681,1478 @@ } ] }, + { + "registry": "minecraft:worldgen/biome", + "tags": [ + { + "name": "c:climate_wet", + "entries": [ + 11, + 12, + 9, + 13, + 35, + 29, + 22, + 6, + 57, + 40, + 24, + 31, + 53, + 30, + 1, + 28, + 49 + ] + }, + { + "name": "minecraft:has_structure/nether_fortress", + "entries": [ + 34, + 48, + 7, + 58, + 2 + ] + }, + { + "name": "minecraft:is_river", + "entries": [ + 40, + 24 + ] + }, + { + "name": "minecraft:water_on_map_outlines", + "entries": [ + 11, + 9, + 13, + 12, + 22, + 35, + 6, + 29, + 57, + 40, + 24, + 53, + 31 + ] + }, + { + "name": "c:nether_forests", + "entries": [ + 58, + 7 + ] + }, + { + "name": "minecraft:has_structure/mineshaft", + "entries": [ + 11, + 9, + 13, + 12, + 22, + 35, + 6, + 29, + 57, + 40, + 24, + 3, + 44, + 32, + 23, + 27, + 50, + 46, + 5, + 61, + 59, + 60, + 54, + 47, + 37, + 38, + 1, + 28, + 49, + 21, + 20, + 4, + 36, + 8, + 25, + 51, + 33, + 26, + 62, + 14, + 41, + 45, + 39, + 52, + 53, + 31, + 42, + 15, + 30 + ] + }, + { + "name": "minecraft:has_structure/jungle_temple", + "entries": [ + 1, + 28 + ] + }, + { + "name": "c:mushroom", + "entries": [ + 33 + ] + }, + { + "name": "c:in_nether", + "entries": [ + 34, + 48, + 7, + 58, + 2 + ] + }, + { + "name": "c:tree_coniferous", + "entries": [ + 25, + 54, + 47, + 37, + 38 + ] + }, + { + "name": "c:mountain", + "entries": [ + 32, + 23, + 27, + 50, + 46, + 5 + ] + }, + { + "name": "c:savanna", + "entries": [ + 41, + 42, + 62 + ] + }, + { + "name": "minecraft:is_jungle", + "entries": [ + 1, + 28, + 49 + ] + }, + { + "name": "minecraft:is_ocean", + "entries": [ + 11, + 9, + 13, + 12, + 22, + 35, + 6, + 29, + 57 + ] + }, + { + "name": "c:caves", + "entries": [ + 10, + 15, + 30 + ] + }, + { + "name": "c:floral", + "entries": [ + 52, + 32, + 20 + ] + }, + { + "name": "minecraft:has_structure/buried_treasure", + "entries": [ + 3, + 44 + ] + }, + { + "name": "minecraft:has_structure/ocean_ruin_cold", + "entries": [ + 22, + 6, + 35, + 11, + 9, + 13 + ] + }, + { + "name": "minecraft:produces_corals_from_bonemeal", + "entries": [ + 57 + ] + }, + { + "name": "c:badlands", + "entries": [ + 63, + 19, + 0 + ] + }, + { + "name": "minecraft:has_structure/stronghold", + "entries": [ + 33, + 11, + 22, + 9, + 6, + 13, + 35, + 12, + 29, + 57, + 51, + 53, + 31, + 46, + 45, + 44, + 60, + 25, + 61, + 47, + 59, + 54, + 39, + 32, + 3, + 21, + 38, + 20, + 4, + 8, + 42, + 41, + 28, + 0, + 14, + 63, + 27, + 50, + 24, + 40, + 26, + 37, + 52, + 36, + 49, + 1, + 19, + 62, + 5, + 23, + 15, + 30, + 10 + ] + }, + { + "name": "minecraft:has_structure/mineshaft_mesa", + "entries": [ + 0, + 19, + 63 + ] + }, + { + "name": "minecraft:has_structure/ancient_city", + "entries": [ + 10 + ] + }, + { + "name": "c:underground", + "entries": [ + 10, + 15, + 30 + ] + }, + { + "name": "minecraft:has_structure/shipwreck", + "entries": [ + 11, + 9, + 13, + 12, + 22, + 35, + 6, + 29, + 57 + ] + }, + { + "name": "c:snowy_plains", + "entries": [ + 45 + ] + }, + { + "name": "minecraft:is_savanna", + "entries": [ + 41, + 42, + 62 + ] + }, + { + "name": "c:jungle", + "entries": [ + 1, + 28, + 49 + ] + }, + { + "name": "c:vegetation_dense", + "entries": [ + 1, + 28, + 49, + 52 + ] + }, + { + "name": "minecraft:has_structure/igloo", + "entries": [ + 47, + 45, + 46 + ] + }, + { + "name": "minecraft:has_structure/trail_ruins", + "entries": [ + 54, + 47, + 37, + 38, + 36, + 28 + ] + }, + { + "name": "c:wasteland", + "entries": [] + }, + { + "name": "minecraft:has_structure/shipwreck_beached", + "entries": [ + 3, + 44 + ] + }, + { + "name": "minecraft:is_hill", + "entries": [ + 61, + 59, + 60 + ] + }, + { + "name": "c:forest", + "entries": [ + 21, + 20, + 4, + 36, + 8, + 25 + ] + }, + { + "name": "c:end_islands", + "entries": [] + }, + { + "name": "minecraft:allows_surface_slime_spawns", + "entries": [ + 53, + 31 + ] + }, + { + "name": "c:dead", + "entries": [] + }, + { + "name": "c:deep_ocean", + "entries": [ + 11, + 12, + 9, + 13 + ] + }, + { + "name": "c:swamp", + "entries": [ + 31, + 53 + ] + }, + { + "name": "minecraft:required_ocean_monument_surrounding", + "entries": [ + 11, + 9, + 13, + 12, + 22, + 35, + 6, + 29, + 57, + 40, + 24 + ] + }, + { + "name": "c:in_overworld", + "entries": [ + 33, + 11, + 22, + 9, + 6, + 13, + 35, + 12, + 29, + 57, + 51, + 53, + 31, + 46, + 45, + 44, + 60, + 25, + 61, + 47, + 59, + 54, + 39, + 32, + 3, + 21, + 38, + 20, + 4, + 8, + 42, + 41, + 28, + 0, + 14, + 63, + 27, + 50, + 24, + 40, + 26, + 37, + 52, + 36, + 49, + 1, + 19, + 62, + 5, + 23, + 15, + 30, + 10 + ] + }, + { + "name": "c:tree_jungle", + "entries": [ + 1, + 28, + 49 + ] + }, + { + "name": "minecraft:has_structure/ocean_monument", + "entries": [ + 11, + 9, + 13, + 12 + ] + }, + { + "name": "minecraft:spawns_white_rabbits", + "entries": [ + 45, + 26, + 22, + 47, + 24, + 44, + 23, + 27, + 46, + 25 + ] + }, + { + "name": "minecraft:has_structure/ruined_portal_jungle", + "entries": [ + 1, + 28, + 49 + ] + }, + { + "name": "c:climate_cold", + "entries": [ + 45, + 25, + 27, + 54, + 47, + 38, + 37, + 23, + 26 + ] + }, + { + "name": "minecraft:plays_underwater_music", + "entries": [ + 11, + 9, + 13, + 12, + 22, + 35, + 6, + 29, + 57, + 40, + 24 + ] + }, + { + "name": "minecraft:has_structure/desert_pyramid", + "entries": [ + 14 + ] + }, + { + "name": "minecraft:has_structure/ruined_portal_ocean", + "entries": [ + 11, + 9, + 13, + 12, + 22, + 35, + 6, + 29, + 57 + ] + }, + { + "name": "c:in_the_end", + "entries": [ + 55, + 17, + 18, + 43, + 16 + ] + }, + { + "name": "c:river", + "entries": [ + 40, + 24 + ] + }, + { + "name": "minecraft:is_deep_ocean", + "entries": [ + 11, + 9, + 13, + 12 + ] + }, + { + "name": "c:windswept", + "entries": [ + 61, + 60, + 59, + 62 + ] + }, + { + "name": "minecraft:is_nether", + "entries": [ + 34, + 48, + 7, + 58, + 2 + ] + }, + { + "name": "c:climate_hot", + "entries": [ + 1, + 28, + 49, + 41, + 42, + 62, + 14, + 63, + 19, + 0, + 50, + 33, + 34, + 48, + 7, + 58, + 2 + ] + }, + { + "name": "c:desert", + "entries": [ + 14 + ] + }, + { + "name": "minecraft:increased_fire_burnout", + "entries": [ + 1, + 33, + 31, + 46, + 23, + 27, + 53, + 28 + ] + }, + { + "name": "minecraft:has_structure/woodland_mansion", + "entries": [ + 8 + ] + }, + { + "name": "c:mountain_peak", + "entries": [ + 23, + 27, + 50 + ] + }, + { + "name": "minecraft:has_structure/ocean_ruin_warm", + "entries": [ + 29, + 57, + 12 + ] + }, + { + "name": "c:shallow_ocean", + "entries": [ + 35, + 29, + 22, + 6, + 57 + ] + }, + { + "name": "c:flower_forests", + "entries": [ + 20 + ] + }, + { + "name": "c:tree_deciduous", + "entries": [ + 21, + 59, + 20, + 4, + 8, + 36 + ] + }, + { + "name": "minecraft:has_structure/village_desert", + "entries": [ + 14 + ] + }, + { + "name": "minecraft:more_frequent_drowned_spawns", + "entries": [ + 40, + 24 + ] + }, + { + "name": "c:tree_savanna", + "entries": [ + 41, + 42, + 62 + ] + }, + { + "name": "minecraft:spawns_snow_foxes", + "entries": [ + 45, + 26, + 22, + 47, + 24, + 44, + 23, + 27, + 46, + 25 + ] + }, + { + "name": "minecraft:is_forest", + "entries": [ + 21, + 20, + 4, + 36, + 8, + 25 + ] + }, + { + "name": "minecraft:has_structure/village_savanna", + "entries": [ + 41 + ] + }, + { + "name": "c:icy", + "entries": [ + 23, + 26 + ] + }, + { + "name": "minecraft:is_overworld", + "entries": [ + 33, + 11, + 22, + 9, + 6, + 13, + 35, + 12, + 29, + 57, + 51, + 53, + 31, + 46, + 45, + 44, + 60, + 25, + 61, + 47, + 59, + 54, + 39, + 32, + 3, + 21, + 38, + 20, + 4, + 8, + 42, + 41, + 28, + 0, + 14, + 63, + 27, + 50, + 24, + 40, + 26, + 37, + 52, + 36, + 49, + 1, + 19, + 62, + 5, + 23, + 15, + 30, + 10 + ] + }, + { + "name": "c:stony_shores", + "entries": [ + 51 + ] + }, + { + "name": "minecraft:without_patrol_spawns", + "entries": [ + 33 + ] + }, + { + "name": "c:mountain_slope", + "entries": [ + 46 + ] + }, + { + "name": "minecraft:has_structure/village_taiga", + "entries": [ + 54 + ] + }, + { + "name": "minecraft:allows_tropical_fish_spawns_at_any_height", + "entries": [ + 30 + ] + }, + { + "name": "c:void", + "entries": [ + 56 + ] + }, + { + "name": "minecraft:polar_bears_spawn_on_alternate_blocks", + "entries": [ + 22, + 11 + ] + }, + { + "name": "minecraft:has_closer_water_fog", + "entries": [ + 53, + 31 + ] + }, + { + "name": "minecraft:has_structure/village_plains", + "entries": [ + 39, + 32 + ] + }, + { + "name": "c:ocean", + "entries": [ + 11, + 12, + 9, + 13, + 35, + 29, + 22, + 6, + 57 + ] + }, + { + "name": "minecraft:snow_golem_melts", + "entries": [ + 0, + 2, + 7, + 14, + 19, + 34, + 41, + 42, + 48, + 58, + 62, + 63 + ] + }, + { + "name": "minecraft:without_wandering_trader_spawns", + "entries": [ + 56 + ] + }, + { + "name": "minecraft:has_structure/ruined_portal_desert", + "entries": [ + 14 + ] + }, + { + "name": "minecraft:has_structure/ruined_portal_swamp", + "entries": [ + 53, + 31 + ] + }, + { + "name": "minecraft:has_structure/swamp_hut", + "entries": [ + 53 + ] + }, + { + "name": "minecraft:spawns_cold_variant_frogs", + "entries": [ + 45, + 26, + 23, + 27, + 46, + 22, + 11, + 25, + 10, + 24, + 47, + 44, + 55, + 17, + 18, + 43, + 16 + ] + }, + { + "name": "minecraft:has_structure/ruined_portal_nether", + "entries": [ + 34, + 48, + 7, + 58, + 2 + ] + }, + { + "name": "minecraft:is_end", + "entries": [ + 55, + 17, + 18, + 43, + 16 + ] + }, + { + "name": "c:climate_dry", + "entries": [ + 34, + 48, + 7, + 58, + 2, + 63, + 19, + 0, + 14, + 41, + 42, + 62 + ] + }, + { + "name": "minecraft:stronghold_biased_to", + "entries": [ + 39, + 52, + 45, + 26, + 14, + 21, + 20, + 4, + 8, + 36, + 37, + 38, + 54, + 47, + 41, + 42, + 61, + 60, + 59, + 62, + 28, + 49, + 1, + 0, + 19, + 63, + 32, + 25, + 46, + 23, + 27, + 50, + 33, + 15, + 30 + ] + }, + { + "name": "minecraft:without_zombie_sieges", + "entries": [ + 33 + ] + }, + { + "name": "minecraft:is_beach", + "entries": [ + 3, + 44 + ] + }, + { + "name": "minecraft:has_structure/ruined_portal_standard", + "entries": [ + 3, + 44, + 40, + 24, + 54, + 47, + 37, + 38, + 21, + 20, + 4, + 36, + 8, + 25, + 33, + 26, + 15, + 30, + 41, + 45, + 39, + 52 + ] + }, + { + "name": "c:birch_forest", + "entries": [ + 4, + 36 + ] + }, + { + "name": "minecraft:has_structure/pillager_outpost", + "entries": [ + 14, + 39, + 41, + 45, + 54, + 32, + 23, + 27, + 50, + 46, + 5, + 25 + ] + }, + { + "name": "c:mesa", + "entries": [ + 63, + 19, + 0 + ] + }, + { + "name": "minecraft:is_taiga", + "entries": [ + 54, + 47, + 37, + 38 + ] + }, + { + "name": "minecraft:spawns_warm_variant_frogs", + "entries": [ + 14, + 57, + 1, + 28, + 49, + 41, + 42, + 62, + 34, + 48, + 7, + 58, + 2, + 0, + 19, + 63, + 31 + ] + }, + { + "name": "minecraft:mineshaft_blocking", + "entries": [ + 10 + ] + }, + { + "name": "minecraft:is_mountain", + "entries": [ + 32, + 23, + 27, + 50, + 46, + 5 + ] + }, + { + "name": "c:plains", + "entries": [ + 52, + 39 + ] + }, + { + "name": "minecraft:has_structure/village_snowy", + "entries": [ + 45 + ] + }, + { + "name": "c:snowy", + "entries": [ + 44, + 45, + 46, + 47 + ] + }, + { + "name": "minecraft:is_badlands", + "entries": [ + 0, + 19, + 63 + ] + }, + { + "name": "c:climate_temperate", + "entries": [ + 21, + 52, + 53, + 51, + 8, + 59, + 4, + 36, + 32, + 39 + ] + }, + { + "name": "minecraft:spawns_gold_rabbits", + "entries": [ + 14 + ] + }, + { + "name": "c:aquatic", + "entries": [ + 11, + 12, + 9, + 13, + 35, + 29, + 22, + 6, + 57, + 40, + 24 + ] + }, + { + "name": "c:taiga", + "entries": [ + 54, + 47, + 37, + 38 + ] + }, + { + "name": "c:aquatic_icy", + "entries": [ + 24, + 11, + 22 + ] + }, + { + "name": "minecraft:has_structure/nether_fossil", + "entries": [ + 48 + ] + }, + { + "name": "c:vegetation_sparse", + "entries": [ + 41, + 42, + 62, + 14, + 30 + ] + }, + { + "name": "minecraft:has_structure/end_city", + "entries": [ + 17, + 18 + ] + }, + { + "name": "c:beach", + "entries": [ + 3, + 44, + 51 + ] + }, + { + "name": "c:extreme_hills", + "entries": [ + 60, + 61 + ] + }, + { + "name": "minecraft:reduce_water_ambient_spawns", + "entries": [ + 40, + 24 + ] + }, + { + "name": "minecraft:has_structure/bastion_remnant", + "entries": [ + 7, + 34, + 48, + 58 + ] + }, + { + "name": "minecraft:has_structure/ruined_portal_mountain", + "entries": [ + 0, + 19, + 63, + 61, + 59, + 60, + 42, + 62, + 51, + 32, + 23, + 27, + 50, + 46, + 5 + ] + } + ] + }, + { + "registry": "minecraft:enchantment", + "tags": [ + { + "name": "c:weapon_damage_enhancement", + "entries": [ + 15, + 31, + 14, + 24, + 13 + ] + }, + { + "name": "c:entity_movement_enhancement", + "entries": [ + 12, + 8, + 11 + ] + }, + { + "name": "c:looting", + "entries": [ + 18 + ] + }, + { + "name": "c:entity_defense_enhancement", + "entries": [ + 2, + 0, + 3, + 4, + 1, + 5 + ] + }, + { + "name": "c:fortune", + "entries": [ + 23 + ] + } + ] + }, + { + "registry": "minecraft:painting_variant", + "tags": [ + { + "name": "minecraft:placeable", + "entries": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 29 + ] + } + ] + }, + { + "registry": "minecraft:fluid", + "tags": [ + { + "name": "minecraft:lava", + "entries": [ + 4, + 3 + ] + }, + { + "name": "minecraft:water", + "entries": [ + 2, + 1 + ] + }, + { + "name": "c:water", + "entries": [ + 2, + 1 + ] + }, + { + "name": "c:lava", + "entries": [ + 4, + 3 + ] + } + ] + }, { "registry": "minecraft:banner_pattern", "tags": [ @@ -7164,70 +8234,150 @@ ] }, { - "registry": "minecraft:fluid", + "registry": "minecraft:game_event", "tags": [ { - "name": "minecraft:lava", + "name": "minecraft:vibrations", "entries": [ - 4, - 3 - ] - }, - { - "name": "minecraft:water", - "entries": [ - 2, - 1 - ] - }, - { - "name": "c:water", - "entries": [ - 2, - 1 - ] - }, - { - "name": "c:lava", - "entries": [ - 4, - 3 - ] - } - ] - }, - { - "registry": "minecraft:instrument", - "tags": [ - { - "name": "minecraft:screaming_goat_horns", - "entries": [ - 4, - 5, - 6, - 7 - ] - }, - { - "name": "minecraft:goat_horns", - "entries": [ - 0, 1, 2, 3, - 4, 5, 6, - 7 + 7, + 8, + 0, + 4, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 25, + 26, + 27, + 28, + 29, + 33, + 34, + 35, + 36, + 37, + 39, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 24 ] }, { - "name": "minecraft:regular_goat_horns", + "name": "minecraft:ignore_vibrations_sneaking", + "entries": [ + 27, + 37, + 42, + 43, + 30, + 29 + ] + }, + { + "name": "minecraft:warden_can_listen", "entries": [ - 0, 1, 2, - 3 + 3, + 5, + 6, + 7, + 8, + 0, + 4, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 25, + 26, + 27, + 28, + 29, + 33, + 34, + 35, + 36, + 37, + 39, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 40, + 38 + ] + }, + { + "name": "minecraft:allay_can_listen", + "entries": [ + 34 + ] + }, + { + "name": "minecraft:shrieker_can_listen", + "entries": [ + 38 ] } ] diff --git a/extracted/translation_keys.json b/extracted/translation_keys.json index b16e79b..0608e36 100644 --- a/extracted/translation_keys.json +++ b/extracted/translation_keys.json @@ -1,10776 +1,4368 @@ [ { - "key": "accessibility.onboarding.screen.narrator", - "english_translation": "Press enter to enable the narrator" - }, - { - "key": "accessibility.onboarding.screen.title", - "english_translation": "Welcome to Minecraft!\n\nWould you like to enable the Narrator or visit the Accessibility Settings?" - }, - { - "key": "addServer.add", - "english_translation": "Done" - }, - { - "key": "addServer.enterIp", - "english_translation": "Server Address" - }, - { - "key": "addServer.enterName", - "english_translation": "Server Name" - }, - { - "key": "addServer.hideAddress", - "english_translation": "Hide Address" - }, - { - "key": "addServer.resourcePack", - "english_translation": "Server Resource Packs" - }, - { - "key": "addServer.resourcePack.disabled", - "english_translation": "Disabled" - }, - { - "key": "addServer.resourcePack.enabled", - "english_translation": "Enabled" - }, - { - "key": "addServer.resourcePack.prompt", - "english_translation": "Prompt" - }, - { - "key": "addServer.title", - "english_translation": "Edit Server Info" - }, - { - "key": "advancement.advancementNotFound", - "english_translation": "Unknown advancement: %s" - }, - { - "key": "advancements.adventure.adventuring_time.description", - "english_translation": "Discover every biome" - }, - { - "key": "advancements.adventure.adventuring_time.title", - "english_translation": "Adventuring Time" - }, - { - "key": "advancements.adventure.arbalistic.description", - "english_translation": "Kill five unique mobs with one crossbow shot" - }, - { - "key": "advancements.adventure.arbalistic.title", - "english_translation": "Arbalistic" - }, - { - "key": "advancements.adventure.avoid_vibration.description", - "english_translation": "Sneak near a Sculk Sensor or Warden to prevent it from detecting you" - }, - { - "key": "advancements.adventure.avoid_vibration.title", - "english_translation": "Sneak 100" - }, - { - "key": "advancements.adventure.bullseye.description", - "english_translation": "Hit the bullseye of a Target block from at least 30 meters away" - }, - { - "key": "advancements.adventure.bullseye.title", - "english_translation": "Bullseye" - }, - { - "key": "advancements.adventure.fall_from_world_height.description", - "english_translation": "Free fall from the top of the world (build limit) to the bottom of the world and survive" - }, - { - "key": "advancements.adventure.fall_from_world_height.title", - "english_translation": "Caves & Cliffs" - }, - { - "key": "advancements.adventure.hero_of_the_village.description", - "english_translation": "Successfully defend a village from a raid" - }, - { - "key": "advancements.adventure.hero_of_the_village.title", - "english_translation": "Hero of the Village" - }, - { - "key": "advancements.adventure.honey_block_slide.description", - "english_translation": "Jump into a Honey Block to break your fall" - }, - { - "key": "advancements.adventure.honey_block_slide.title", - "english_translation": "Sticky Situation" - }, - { - "key": "advancements.adventure.kill_a_mob.description", - "english_translation": "Kill any hostile monster" - }, - { - "key": "advancements.adventure.kill_a_mob.title", - "english_translation": "Monster Hunter" - }, - { - "key": "advancements.adventure.kill_all_mobs.description", - "english_translation": "Kill one of every hostile monster" - }, - { - "key": "advancements.adventure.kill_all_mobs.title", - "english_translation": "Monsters Hunted" - }, - { - "key": "advancements.adventure.kill_mob_near_sculk_catalyst.description", - "english_translation": "Kill a mob near a Sculk Catalyst" - }, - { - "key": "advancements.adventure.kill_mob_near_sculk_catalyst.title", - "english_translation": "It Spreads" - }, - { - "key": "advancements.adventure.lightning_rod_with_villager_no_fire.description", - "english_translation": "Protect a Villager from an undesired shock without starting a fire" - }, - { - "key": "advancements.adventure.lightning_rod_with_villager_no_fire.title", - "english_translation": "Surge Protector" - }, - { - "key": "advancements.adventure.ol_betsy.description", - "english_translation": "Shoot a Crossbow" - }, - { - "key": "advancements.adventure.ol_betsy.title", - "english_translation": "Ol' Betsy" - }, - { - "key": "advancements.adventure.play_jukebox_in_meadows.description", - "english_translation": "Make the Meadows come alive with the sound of music from a Jukebox" - }, - { - "key": "advancements.adventure.play_jukebox_in_meadows.title", - "english_translation": "Sound of Music" - }, - { - "key": "advancements.adventure.root.description", - "english_translation": "Adventure, exploration and combat" - }, - { - "key": "advancements.adventure.root.title", - "english_translation": "Adventure" - }, - { - "key": "advancements.adventure.shoot_arrow.description", - "english_translation": "Shoot something with an Arrow" - }, - { - "key": "advancements.adventure.shoot_arrow.title", - "english_translation": "Take Aim" - }, - { - "key": "advancements.adventure.sleep_in_bed.description", - "english_translation": "Sleep in a Bed to change your respawn point" - }, - { - "key": "advancements.adventure.sleep_in_bed.title", - "english_translation": "Sweet Dreams" - }, - { - "key": "advancements.adventure.sniper_duel.description", - "english_translation": "Kill a Skeleton from at least 50 meters away" - }, - { - "key": "advancements.adventure.sniper_duel.title", - "english_translation": "Sniper Duel" - }, - { - "key": "advancements.adventure.spyglass_at_dragon.description", - "english_translation": "Look at the Ender Dragon through a Spyglass" - }, - { - "key": "advancements.adventure.spyglass_at_dragon.title", - "english_translation": "Is It a Plane?" - }, - { - "key": "advancements.adventure.spyglass_at_ghast.description", - "english_translation": "Look at a Ghast through a Spyglass" - }, - { - "key": "advancements.adventure.spyglass_at_ghast.title", - "english_translation": "Is It a Balloon?" - }, - { - "key": "advancements.adventure.spyglass_at_parrot.description", - "english_translation": "Look at a Parrot through a Spyglass" - }, - { - "key": "advancements.adventure.spyglass_at_parrot.title", - "english_translation": "Is It a Bird?" - }, - { - "key": "advancements.adventure.summon_iron_golem.description", - "english_translation": "Summon an Iron Golem to help defend a village" - }, - { - "key": "advancements.adventure.summon_iron_golem.title", - "english_translation": "Hired Help" - }, - { - "key": "advancements.adventure.throw_trident.description", - "english_translation": "Throw a Trident at something.\nNote: Throwing away your only weapon is not a good idea." - }, - { - "key": "advancements.adventure.throw_trident.title", - "english_translation": "A Throwaway Joke" - }, - { - "key": "advancements.adventure.totem_of_undying.description", - "english_translation": "Use a Totem of Undying to cheat death" - }, - { - "key": "advancements.adventure.totem_of_undying.title", - "english_translation": "Postmortal" - }, - { - "key": "advancements.adventure.trade_at_world_height.description", - "english_translation": "Trade with a Villager at the build height limit" - }, - { - "key": "advancements.adventure.trade_at_world_height.title", - "english_translation": "Star Trader" - }, - { - "key": "advancements.adventure.trade.description", - "english_translation": "Successfully trade with a Villager" - }, - { - "key": "advancements.adventure.trade.title", - "english_translation": "What a Deal!" - }, - { - "key": "advancements.adventure.two_birds_one_arrow.description", - "english_translation": "Kill two Phantoms with a piercing Arrow" - }, - { - "key": "advancements.adventure.two_birds_one_arrow.title", - "english_translation": "Two Birds, One Arrow" - }, - { - "key": "advancements.adventure.very_very_frightening.description", - "english_translation": "Strike a Villager with lightning" - }, - { - "key": "advancements.adventure.very_very_frightening.title", - "english_translation": "Very Very Frightening" - }, - { - "key": "advancements.adventure.voluntary_exile.description", - "english_translation": "Kill a raid captain.\nMaybe consider staying away from villages for the time being..." - }, - { - "key": "advancements.adventure.voluntary_exile.title", - "english_translation": "Voluntary Exile" - }, - { - "key": "advancements.adventure.walk_on_powder_snow_with_leather_boots.description", - "english_translation": "Walk on Powder Snow...without sinking in it" - }, - { - "key": "advancements.adventure.walk_on_powder_snow_with_leather_boots.title", - "english_translation": "Light as a Rabbit" - }, - { - "key": "advancements.adventure.whos_the_pillager_now.description", - "english_translation": "Give a Pillager a taste of their own medicine" - }, - { - "key": "advancements.adventure.whos_the_pillager_now.title", - "english_translation": "Who's the Pillager Now?" - }, - { - "key": "advancements.empty", - "english_translation": "There doesn't seem to be anything here..." - }, - { - "key": "advancements.end.dragon_breath.description", - "english_translation": "Collect Dragon's Breath in a Glass Bottle" - }, - { - "key": "advancements.end.dragon_breath.title", - "english_translation": "You Need a Mint" - }, - { - "key": "advancements.end.dragon_egg.description", - "english_translation": "Hold the Dragon Egg" - }, - { - "key": "advancements.end.dragon_egg.title", - "english_translation": "The Next Generation" - }, - { - "key": "advancements.end.elytra.description", - "english_translation": "Find Elytra" - }, - { - "key": "advancements.end.elytra.title", - "english_translation": "Sky's the Limit" - }, - { - "key": "advancements.end.enter_end_gateway.description", - "english_translation": "Escape the island" - }, - { - "key": "advancements.end.enter_end_gateway.title", - "english_translation": "Remote Getaway" - }, - { - "key": "advancements.end.find_end_city.description", - "english_translation": "Go on in, what could happen?" - }, - { - "key": "advancements.end.find_end_city.title", - "english_translation": "The City at the End of the Game" - }, - { - "key": "advancements.end.kill_dragon.description", - "english_translation": "Good luck" - }, - { - "key": "advancements.end.kill_dragon.title", - "english_translation": "Free the End" - }, - { - "key": "advancements.end.levitate.description", - "english_translation": "Levitate up 50 blocks from the attacks of a Shulker" - }, - { - "key": "advancements.end.levitate.title", - "english_translation": "Great View From Up Here" - }, - { - "key": "advancements.end.respawn_dragon.description", - "english_translation": "Respawn the Ender Dragon" - }, - { - "key": "advancements.end.respawn_dragon.title", - "english_translation": "The End... Again..." - }, - { - "key": "advancements.end.root.description", - "english_translation": "Or the beginning?" - }, - { - "key": "advancements.end.root.title", - "english_translation": "The End" - }, - { - "key": "advancements.husbandry.allay_deliver_cake_to_note_block.description", - "english_translation": "Have an Allay drop a Cake at a Note Block" - }, - { - "key": "advancements.husbandry.allay_deliver_cake_to_note_block.title", - "english_translation": "Birthday Song" - }, - { - "key": "advancements.husbandry.allay_deliver_item_to_player.description", - "english_translation": "Have an Allay deliver items to you" - }, - { - "key": "advancements.husbandry.allay_deliver_item_to_player.title", - "english_translation": "You've Got a Friend in Me" - }, - { - "key": "advancements.husbandry.axolotl_in_a_bucket.description", - "english_translation": "Catch an Axolotl in a Bucket" - }, - { - "key": "advancements.husbandry.axolotl_in_a_bucket.title", - "english_translation": "The Cutest Predator" - }, - { - "key": "advancements.husbandry.balanced_diet.description", - "english_translation": "Eat everything that is edible, even if it's not good for you" - }, - { - "key": "advancements.husbandry.balanced_diet.title", - "english_translation": "A Balanced Diet" - }, - { - "key": "advancements.husbandry.breed_all_animals.description", - "english_translation": "Breed all the animals!" - }, - { - "key": "advancements.husbandry.breed_all_animals.title", - "english_translation": "Two by Two" - }, - { - "key": "advancements.husbandry.breed_an_animal.description", - "english_translation": "Breed two animals together" - }, - { - "key": "advancements.husbandry.breed_an_animal.title", - "english_translation": "The Parrots and the Bats" - }, - { - "key": "advancements.husbandry.complete_catalogue.description", - "english_translation": "Tame all Cat variants!" - }, - { - "key": "advancements.husbandry.complete_catalogue.title", - "english_translation": "A Complete Catalogue" - }, - { - "key": "advancements.husbandry.fishy_business.description", - "english_translation": "Catch a fish" - }, - { - "key": "advancements.husbandry.fishy_business.title", - "english_translation": "Fishy Business" - }, - { - "key": "advancements.husbandry.froglights.description", - "english_translation": "Have all Froglights in your inventory" - }, - { - "key": "advancements.husbandry.froglights.title", - "english_translation": "With Our Powers Combined!" - }, - { - "key": "advancements.husbandry.kill_axolotl_target.description", - "english_translation": "Team up with an Axolotl and win a fight" - }, - { - "key": "advancements.husbandry.kill_axolotl_target.title", - "english_translation": "The Healing Power of Friendship!" - }, - { - "key": "advancements.husbandry.leash_all_frog_variants.description", - "english_translation": "Get each Frog variant on a Lead" - }, - { - "key": "advancements.husbandry.leash_all_frog_variants.title", - "english_translation": "When the Squad Hops into Town" - }, - { - "key": "advancements.husbandry.make_a_sign_glow.description", - "english_translation": "Make the text of any kind of sign glow" - }, - { - "key": "advancements.husbandry.make_a_sign_glow.title", - "english_translation": "Glow and Behold!" - }, - { - "key": "advancements.husbandry.netherite_hoe.description", - "english_translation": "Use a Netherite Ingot to upgrade a Hoe, and then reevaluate your life choices" - }, - { - "key": "advancements.husbandry.netherite_hoe.title", - "english_translation": "Serious Dedication" - }, - { - "key": "advancements.husbandry.plant_seed.description", - "english_translation": "Plant a seed and watch it grow" - }, - { - "key": "advancements.husbandry.plant_seed.title", - "english_translation": "A Seedy Place" - }, - { - "key": "advancements.husbandry.ride_a_boat_with_a_goat.description", - "english_translation": "Get in a Boat and float with a Goat" - }, - { - "key": "advancements.husbandry.ride_a_boat_with_a_goat.title", - "english_translation": "Whatever Floats Your Goat!" - }, - { - "key": "advancements.husbandry.root.description", - "english_translation": "The world is full of friends and food" - }, - { - "key": "advancements.husbandry.root.title", - "english_translation": "Husbandry" - }, - { - "key": "advancements.husbandry.safely_harvest_honey.description", - "english_translation": "Use a Campfire to collect Honey from a Beehive using a Bottle without aggravating the Bees" - }, - { - "key": "advancements.husbandry.safely_harvest_honey.title", - "english_translation": "Bee Our Guest" - }, - { - "key": "advancements.husbandry.silk_touch_nest.description", - "english_translation": "Move a Bee Nest, with 3 Bees inside, using Silk Touch" - }, - { - "key": "advancements.husbandry.silk_touch_nest.title", - "english_translation": "Total Beelocation" - }, - { - "key": "advancements.husbandry.tactical_fishing.description", - "english_translation": "Catch a Fish... without a Fishing Rod!" - }, - { - "key": "advancements.husbandry.tactical_fishing.title", - "english_translation": "Tactical Fishing" - }, - { - "key": "advancements.husbandry.tadpole_in_a_bucket.description", - "english_translation": "Catch a Tadpole in a Bucket" - }, - { - "key": "advancements.husbandry.tadpole_in_a_bucket.title", - "english_translation": "Bukkit Bukkit" - }, - { - "key": "advancements.husbandry.tame_an_animal.description", - "english_translation": "Tame an animal" - }, - { - "key": "advancements.husbandry.tame_an_animal.title", - "english_translation": "Best Friends Forever" - }, - { - "key": "advancements.husbandry.wax_off.description", - "english_translation": "Scrape Wax off of a Copper block!" - }, - { - "key": "advancements.husbandry.wax_off.title", - "english_translation": "Wax Off" - }, - { - "key": "advancements.husbandry.wax_on.description", - "english_translation": "Apply Honeycomb to a Copper block!" - }, - { - "key": "advancements.husbandry.wax_on.title", - "english_translation": "Wax On" - }, - { - "key": "advancements.nether.all_effects.description", - "english_translation": "Have every effect applied at the same time" - }, - { - "key": "advancements.nether.all_effects.title", - "english_translation": "How Did We Get Here?" - }, - { - "key": "advancements.nether.all_potions.description", - "english_translation": "Have every potion effect applied at the same time" - }, - { - "key": "advancements.nether.all_potions.title", - "english_translation": "A Furious Cocktail" - }, - { - "key": "advancements.nether.brew_potion.description", - "english_translation": "Brew a Potion" - }, - { - "key": "advancements.nether.brew_potion.title", - "english_translation": "Local Brewery" - }, - { - "key": "advancements.nether.charge_respawn_anchor.description", - "english_translation": "Charge a Respawn Anchor to the maximum" - }, - { - "key": "advancements.nether.charge_respawn_anchor.title", - "english_translation": "Not Quite \"Nine\" Lives" - }, - { - "key": "advancements.nether.create_beacon.description", - "english_translation": "Construct and place a Beacon" - }, - { - "key": "advancements.nether.create_beacon.title", - "english_translation": "Bring Home the Beacon" - }, - { - "key": "advancements.nether.create_full_beacon.description", - "english_translation": "Bring a Beacon to full power" - }, - { - "key": "advancements.nether.create_full_beacon.title", - "english_translation": "Beaconator" - }, - { - "key": "advancements.nether.distract_piglin.description", - "english_translation": "Distract Piglins with gold" - }, - { - "key": "advancements.nether.distract_piglin.title", - "english_translation": "Oh Shiny" - }, - { - "key": "advancements.nether.explore_nether.description", - "english_translation": "Explore all Nether biomes" - }, - { - "key": "advancements.nether.explore_nether.title", - "english_translation": "Hot Tourist Destinations" - }, - { - "key": "advancements.nether.fast_travel.description", - "english_translation": "Use the Nether to travel 7 km in the Overworld" - }, - { - "key": "advancements.nether.fast_travel.title", - "english_translation": "Subspace Bubble" - }, - { - "key": "advancements.nether.find_bastion.description", - "english_translation": "Enter a Bastion Remnant" - }, - { - "key": "advancements.nether.find_bastion.title", - "english_translation": "Those Were the Days" - }, - { - "key": "advancements.nether.find_fortress.description", - "english_translation": "Break your way into a Nether Fortress" - }, - { - "key": "advancements.nether.find_fortress.title", - "english_translation": "A Terrible Fortress" - }, - { - "key": "advancements.nether.get_wither_skull.description", - "english_translation": "Obtain a Wither Skeleton's skull" - }, - { - "key": "advancements.nether.get_wither_skull.title", - "english_translation": "Spooky Scary Skeleton" - }, - { - "key": "advancements.nether.loot_bastion.description", - "english_translation": "Loot a Chest in a Bastion Remnant" - }, - { - "key": "advancements.nether.loot_bastion.title", - "english_translation": "War Pigs" - }, - { - "key": "advancements.nether.netherite_armor.description", - "english_translation": "Get a full suit of Netherite armor" - }, - { - "key": "advancements.nether.netherite_armor.title", - "english_translation": "Cover Me in Debris" - }, - { - "key": "advancements.nether.obtain_ancient_debris.description", - "english_translation": "Obtain Ancient Debris" - }, - { - "key": "advancements.nether.obtain_ancient_debris.title", - "english_translation": "Hidden in the Depths" - }, - { - "key": "advancements.nether.obtain_blaze_rod.description", - "english_translation": "Relieve a Blaze of its rod" - }, - { - "key": "advancements.nether.obtain_blaze_rod.title", - "english_translation": "Into Fire" - }, - { - "key": "advancements.nether.obtain_crying_obsidian.description", - "english_translation": "Obtain Crying Obsidian" - }, - { - "key": "advancements.nether.obtain_crying_obsidian.title", - "english_translation": "Who is Cutting Onions?" - }, - { - "key": "advancements.nether.return_to_sender.description", - "english_translation": "Destroy a Ghast with a fireball" - }, - { - "key": "advancements.nether.return_to_sender.title", - "english_translation": "Return to Sender" - }, - { - "key": "advancements.nether.ride_strider_in_overworld_lava.description", - "english_translation": "Take a Strider for a loooong ride on a lava lake in the Overworld" - }, - { - "key": "advancements.nether.ride_strider_in_overworld_lava.title", - "english_translation": "Feels Like Home" - }, - { - "key": "advancements.nether.ride_strider.description", - "english_translation": "Ride a Strider with a Warped Fungus on a Stick" - }, - { - "key": "advancements.nether.ride_strider.title", - "english_translation": "This Boat Has Legs" - }, - { - "key": "advancements.nether.root.description", - "english_translation": "Bring summer clothes" - }, - { - "key": "advancements.nether.root.title", - "english_translation": "Nether" - }, - { - "key": "advancements.nether.summon_wither.description", - "english_translation": "Summon the Wither" - }, - { - "key": "advancements.nether.summon_wither.title", - "english_translation": "Withering Heights" - }, - { - "key": "advancements.nether.uneasy_alliance.description", - "english_translation": "Rescue a Ghast from the Nether, bring it safely home to the Overworld... and then kill it" - }, - { - "key": "advancements.nether.uneasy_alliance.title", - "english_translation": "Uneasy Alliance" - }, - { - "key": "advancements.nether.use_lodestone.description", - "english_translation": "Use a Compass on a Lodestone" - }, - { - "key": "advancements.nether.use_lodestone.title", - "english_translation": "Country Lode, Take Me Home" - }, - { - "key": "advancements.sad_label", - "english_translation": ":(" - }, - { - "key": "advancements.story.cure_zombie_villager.description", - "english_translation": "Weaken and then cure a Zombie Villager" - }, - { - "key": "advancements.story.cure_zombie_villager.title", - "english_translation": "Zombie Doctor" - }, - { - "key": "advancements.story.deflect_arrow.description", - "english_translation": "Deflect a projectile with a Shield" - }, - { - "key": "advancements.story.deflect_arrow.title", - "english_translation": "Not Today, Thank You" - }, - { - "key": "advancements.story.enchant_item.description", - "english_translation": "Enchant an item at an Enchanting Table" - }, - { - "key": "advancements.story.enchant_item.title", - "english_translation": "Enchanter" - }, - { - "key": "advancements.story.enter_the_end.description", - "english_translation": "Enter the End Portal" - }, - { - "key": "advancements.story.enter_the_end.title", - "english_translation": "The End?" - }, - { - "key": "advancements.story.enter_the_nether.description", - "english_translation": "Build, light and enter a Nether Portal" - }, - { - "key": "advancements.story.enter_the_nether.title", - "english_translation": "We Need to Go Deeper" - }, - { - "key": "advancements.story.follow_ender_eye.description", - "english_translation": "Follow an Eye of Ender" - }, - { - "key": "advancements.story.follow_ender_eye.title", - "english_translation": "Eye Spy" - }, - { - "key": "advancements.story.form_obsidian.description", - "english_translation": "Obtain a block of Obsidian" - }, - { - "key": "advancements.story.form_obsidian.title", - "english_translation": "Ice Bucket Challenge" - }, - { - "key": "advancements.story.iron_tools.description", - "english_translation": "Upgrade your Pickaxe" - }, - { - "key": "advancements.story.iron_tools.title", - "english_translation": "Isn't It Iron Pick" - }, - { - "key": "advancements.story.lava_bucket.description", - "english_translation": "Fill a Bucket with lava" - }, - { - "key": "advancements.story.lava_bucket.title", - "english_translation": "Hot Stuff" - }, - { - "key": "advancements.story.mine_diamond.description", - "english_translation": "Acquire diamonds" - }, - { - "key": "advancements.story.mine_diamond.title", - "english_translation": "Diamonds!" - }, - { - "key": "advancements.story.mine_stone.description", - "english_translation": "Mine Stone with your new Pickaxe" - }, - { - "key": "advancements.story.mine_stone.title", - "english_translation": "Stone Age" - }, - { - "key": "advancements.story.obtain_armor.description", - "english_translation": "Protect yourself with a piece of iron armor" - }, - { - "key": "advancements.story.obtain_armor.title", - "english_translation": "Suit Up" - }, - { - "key": "advancements.story.root.description", - "english_translation": "The heart and story of the game" - }, - { - "key": "advancements.story.root.title", - "english_translation": "Minecraft" - }, - { - "key": "advancements.story.shiny_gear.description", - "english_translation": "Diamond armor saves lives" - }, - { - "key": "advancements.story.shiny_gear.title", - "english_translation": "Cover Me with Diamonds" - }, - { - "key": "advancements.story.smelt_iron.description", - "english_translation": "Smelt an Iron Ingot" - }, - { - "key": "advancements.story.smelt_iron.title", - "english_translation": "Acquire Hardware" - }, - { - "key": "advancements.story.upgrade_tools.description", - "english_translation": "Construct a better Pickaxe" - }, - { - "key": "advancements.story.upgrade_tools.title", - "english_translation": "Getting an Upgrade" - }, - { - "key": "advancements.toast.challenge", - "english_translation": "Challenge Complete!" - }, - { - "key": "advancements.toast.goal", - "english_translation": "Goal Reached!" - }, - { - "key": "advancements.toast.task", - "english_translation": "Advancement Made!" - }, - { - "key": "advMode.allEntities", - "english_translation": "Use \"@e\" to target all entities" - }, - { - "key": "advMode.allPlayers", - "english_translation": "Use \"@a\" to target all players" - }, - { - "key": "advMode.command", - "english_translation": "Console Command" - }, - { - "key": "advMode.mode", - "english_translation": "Mode" - }, - { - "key": "advMode.mode.auto", - "english_translation": "Repeat" - }, - { - "key": "advMode.mode.autoexec.bat", - "english_translation": "Always Active" - }, - { - "key": "advMode.mode.conditional", - "english_translation": "Conditional" - }, - { - "key": "advMode.mode.redstone", - "english_translation": "Impulse" - }, - { - "key": "advMode.mode.redstoneTriggered", - "english_translation": "Needs Redstone" - }, - { - "key": "advMode.mode.sequence", - "english_translation": "Chain" - }, - { - "key": "advMode.mode.unconditional", - "english_translation": "Unconditional" - }, - { - "key": "advMode.nearestPlayer", - "english_translation": "Use \"@p\" to target nearest player" - }, - { - "key": "advMode.notAllowed", - "english_translation": "Must be an opped player in creative mode" - }, - { - "key": "advMode.notEnabled", - "english_translation": "Command blocks are not enabled on this server" - }, - { - "key": "advMode.previousOutput", - "english_translation": "Previous Output" - }, - { - "key": "advMode.randomPlayer", - "english_translation": "Use \"@r\" to target random player" - }, - { - "key": "advMode.self", - "english_translation": "Use \"@s\" to target the executing entity" - }, - { - "key": "advMode.setCommand", - "english_translation": "Set Console Command for Block" - }, - { - "key": "advMode.setCommand.success", - "english_translation": "Command set: %s" - }, - { - "key": "advMode.trackOutput", - "english_translation": "Track output" - }, - { - "key": "advMode.triggering", - "english_translation": "Triggering" - }, - { - "key": "advMode.type", - "english_translation": "Type" - }, - { - "key": "argument.anchor.invalid", - "english_translation": "Invalid entity anchor position %s" - }, - { - "key": "argument.angle.incomplete", - "english_translation": "Incomplete (expected 1 angle)" - }, - { - "key": "argument.angle.invalid", - "english_translation": "Invalid angle" - }, - { - "key": "argument.block.id.invalid", - "english_translation": "Unknown block type '%s'" - }, - { - "key": "argument.block.property.duplicate", - "english_translation": "Property '%s' can only be set once for block %s" - }, - { - "key": "argument.block.property.invalid", - "english_translation": "Block %s does not accept '%s' for %s property" - }, - { - "key": "argument.block.property.novalue", - "english_translation": "Expected value for property '%s' on block %s" - }, - { - "key": "argument.block.property.unclosed", - "english_translation": "Expected closing ] for block state properties" - }, - { - "key": "argument.block.property.unknown", - "english_translation": "Block %s does not have property '%s'" - }, - { - "key": "argument.block.tag.disallowed", - "english_translation": "Tags aren't allowed here, only actual blocks" - }, - { - "key": "argument.color.invalid", - "english_translation": "Unknown color '%s'" - }, - { - "key": "argument.component.invalid", - "english_translation": "Invalid chat component: %s" - }, - { - "key": "argument.criteria.invalid", - "english_translation": "Unknown criterion '%s'" - }, - { - "key": "argument.dimension.invalid", - "english_translation": "Unknown dimension '%s'" - }, - { - "key": "argument.double.big", - "english_translation": "Double must not be more than %s, found %s" - }, - { - "key": "argument.double.low", - "english_translation": "Double must not be less than %s, found %s" - }, - { - "key": "argument.entity.invalid", - "english_translation": "Invalid name or UUID" - }, - { - "key": "argument.entity.notfound.entity", - "english_translation": "No entity was found" - }, - { - "key": "argument.entity.notfound.player", - "english_translation": "No player was found" - }, - { - "key": "argument.entity.options.advancements.description", - "english_translation": "Players with advancements" - }, - { - "key": "argument.entity.options.distance.description", - "english_translation": "Distance to entity" - }, - { - "key": "argument.entity.options.distance.negative", - "english_translation": "Distance cannot be negative" - }, - { - "key": "argument.entity.options.dx.description", - "english_translation": "Entities between x and x + dx" - }, - { - "key": "argument.entity.options.dy.description", - "english_translation": "Entities between y and y + dy" - }, - { - "key": "argument.entity.options.dz.description", - "english_translation": "Entities between z and z + dz" - }, - { - "key": "argument.entity.options.gamemode.description", - "english_translation": "Players with gamemode" - }, - { - "key": "argument.entity.options.inapplicable", - "english_translation": "Option '%s' isn't applicable here" - }, - { - "key": "argument.entity.options.level.description", - "english_translation": "Experience level" - }, - { - "key": "argument.entity.options.level.negative", - "english_translation": "Level shouldn't be negative" - }, - { - "key": "argument.entity.options.limit.description", - "english_translation": "Maximum number of entities to return" - }, - { - "key": "argument.entity.options.limit.toosmall", - "english_translation": "Limit must be at least 1" - }, - { - "key": "argument.entity.options.mode.invalid", - "english_translation": "Invalid or unknown game mode '%s'" - }, - { - "key": "argument.entity.options.name.description", - "english_translation": "Entity name" - }, - { - "key": "argument.entity.options.nbt.description", - "english_translation": "Entities with NBT" - }, - { - "key": "argument.entity.options.predicate.description", - "english_translation": "Custom predicate" - }, - { - "key": "argument.entity.options.scores.description", - "english_translation": "Entities with scores" - }, - { - "key": "argument.entity.options.sort.description", - "english_translation": "Sort the entities" - }, - { - "key": "argument.entity.options.sort.irreversible", - "english_translation": "Invalid or unknown sort type '%s'" - }, - { - "key": "argument.entity.options.tag.description", - "english_translation": "Entities with tag" - }, - { - "key": "argument.entity.options.team.description", - "english_translation": "Entities on team" - }, - { - "key": "argument.entity.options.type.description", - "english_translation": "Entities of type" - }, - { - "key": "argument.entity.options.type.invalid", - "english_translation": "Invalid or unknown entity type '%s'" - }, - { - "key": "argument.entity.options.unknown", - "english_translation": "Unknown option '%s'" - }, - { - "key": "argument.entity.options.unterminated", - "english_translation": "Expected end of options" - }, - { - "key": "argument.entity.options.valueless", - "english_translation": "Expected value for option '%s'" - }, - { - "key": "argument.entity.options.x_rotation.description", - "english_translation": "Entity's x rotation" - }, - { - "key": "argument.entity.options.x.description", - "english_translation": "x position" - }, - { - "key": "argument.entity.options.y_rotation.description", - "english_translation": "Entity's y rotation" - }, - { - "key": "argument.entity.options.y.description", - "english_translation": "y position" - }, - { - "key": "argument.entity.options.z.description", - "english_translation": "z position" - }, - { - "key": "argument.entity.selector.allEntities", - "english_translation": "All entities" - }, - { - "key": "argument.entity.selector.allPlayers", - "english_translation": "All players" - }, - { - "key": "argument.entity.selector.missing", - "english_translation": "Missing selector type" - }, - { - "key": "argument.entity.selector.nearestPlayer", - "english_translation": "Nearest player" - }, - { - "key": "argument.entity.selector.not_allowed", - "english_translation": "Selector not allowed" - }, - { - "key": "argument.entity.selector.randomPlayer", - "english_translation": "Random player" - }, - { - "key": "argument.entity.selector.self", - "english_translation": "Current entity" - }, - { - "key": "argument.entity.selector.unknown", - "english_translation": "Unknown selector type '%s'" - }, - { - "key": "argument.entity.toomany", - "english_translation": "Only one entity is allowed, but the provided selector allows more than one" - }, - { - "key": "argument.enum.invalid", - "english_translation": "Invalid value \"%s\"" - }, - { - "key": "argument.float.big", - "english_translation": "Float must not be more than %s, found %s" - }, - { - "key": "argument.float.low", - "english_translation": "Float must not be less than %s, found %s" - }, - { - "key": "argument.gamemode.invalid", - "english_translation": "Unknown gamemode: %s" - }, - { - "key": "argument.id.invalid", - "english_translation": "Invalid ID" - }, - { - "key": "argument.id.unknown", - "english_translation": "Unknown ID: %s" - }, - { - "key": "argument.integer.big", - "english_translation": "Integer must not be more than %s, found %s" - }, - { - "key": "argument.integer.low", - "english_translation": "Integer must not be less than %s, found %s" - }, - { - "key": "argument.item.id.invalid", - "english_translation": "Unknown item '%s'" - }, - { - "key": "argument.item.tag.disallowed", - "english_translation": "Tags aren't allowed here, only actual items" - }, - { - "key": "argument.literal.incorrect", - "english_translation": "Expected literal %s" - }, - { - "key": "argument.long.big", - "english_translation": "Long must not be more than %s, found %s" - }, - { - "key": "argument.long.low", - "english_translation": "Long must not be less than %s, found %s" - }, - { - "key": "argument.nbt.array.invalid", - "english_translation": "Invalid array type '%s'" - }, - { - "key": "argument.nbt.array.mixed", - "english_translation": "Can't insert %s into %s" - }, - { - "key": "argument.nbt.expected.key", - "english_translation": "Expected key" - }, - { - "key": "argument.nbt.expected.value", - "english_translation": "Expected value" - }, - { - "key": "argument.nbt.list.mixed", - "english_translation": "Can't insert %s into list of %s" - }, - { - "key": "argument.nbt.trailing", - "english_translation": "Unexpected trailing data" - }, - { - "key": "argument.player.entities", - "english_translation": "Only players may be affected by this command, but the provided selector includes entities" - }, - { - "key": "argument.player.toomany", - "english_translation": "Only one player is allowed, but the provided selector allows more than one" - }, - { - "key": "argument.player.unknown", - "english_translation": "That player does not exist" - }, - { - "key": "argument.pos.missing.double", - "english_translation": "Expected a coordinate" - }, - { - "key": "argument.pos.missing.int", - "english_translation": "Expected a block position" - }, - { - "key": "argument.pos.mixed", - "english_translation": "Cannot mix world & local coordinates (everything must either use ^ or not)" - }, - { - "key": "argument.pos.outofbounds", - "english_translation": "That position is outside the allowed boundaries." - }, - { - "key": "argument.pos.outofworld", - "english_translation": "That position is out of this world!" - }, - { - "key": "argument.pos.unloaded", - "english_translation": "That position is not loaded" - }, - { - "key": "argument.pos2d.incomplete", - "english_translation": "Incomplete (expected 2 coordinates)" - }, - { - "key": "argument.pos3d.incomplete", - "english_translation": "Incomplete (expected 3 coordinates)" - }, - { - "key": "argument.range.empty", - "english_translation": "Expected value or range of values" - }, - { - "key": "argument.range.ints", - "english_translation": "Only whole numbers allowed, not decimals" - }, - { - "key": "argument.range.swapped", - "english_translation": "Min cannot be bigger than max" - }, - { - "key": "argument.resource_tag.invalid_type", - "english_translation": "Tag '%s' has wrong type '%s' (expected '%s')" - }, - { - "key": "argument.resource_tag.not_found", - "english_translation": "Can't find tag '%s' of type '%s'" - }, - { - "key": "argument.resource.invalid_type", - "english_translation": "Element '%s' has wrong type '%s' (expected '%s')" - }, - { - "key": "argument.resource.not_found", - "english_translation": "Can't find element '%s' of type '%s'" - }, - { - "key": "argument.rotation.incomplete", - "english_translation": "Incomplete (expected 2 coordinates)" - }, - { - "key": "argument.scoreboardDisplaySlot.invalid", - "english_translation": "Unknown display slot '%s'" - }, - { - "key": "argument.scoreHolder.empty", - "english_translation": "No relevant score holders could be found" - }, - { - "key": "argument.time.invalid_tick_count", - "english_translation": "Tick count must be non-negative" - }, - { - "key": "argument.time.invalid_unit", - "english_translation": "Invalid unit" - }, - { - "key": "argument.time.tick_count_too_low", - "english_translation": "Tick count must not be less than %s, found %s" - }, - { - "key": "argument.uuid.invalid", - "english_translation": "Invalid UUID" - }, - { - "key": "arguments.block.tag.unknown", - "english_translation": "Unknown block tag '%s'" - }, - { - "key": "arguments.function.tag.unknown", - "english_translation": "Unknown function tag '%s'" - }, - { - "key": "arguments.function.unknown", - "english_translation": "Unknown function %s" - }, - { - "key": "arguments.item.overstacked", - "english_translation": "%s can only stack up to %s" - }, - { - "key": "arguments.item.tag.unknown", - "english_translation": "Unknown item tag '%s'" - }, - { - "key": "arguments.nbtpath.node.invalid", - "english_translation": "Invalid NBT path element" - }, - { - "key": "arguments.nbtpath.nothing_found", - "english_translation": "Found no elements matching %s" - }, - { - "key": "arguments.nbtpath.too_deep", - "english_translation": "Resulting NBT too deeply nested" - }, - { - "key": "arguments.nbtpath.too_large", - "english_translation": "Resulting NBT too large" - }, - { - "key": "arguments.objective.notFound", - "english_translation": "Unknown scoreboard objective '%s'" - }, - { - "key": "arguments.objective.readonly", - "english_translation": "Scoreboard objective '%s' is read-only" - }, - { - "key": "arguments.operation.div0", - "english_translation": "Cannot divide by zero" - }, - { - "key": "arguments.operation.invalid", - "english_translation": "Invalid operation" - }, - { - "key": "arguments.swizzle.invalid", - "english_translation": "Invalid swizzle, expected combination of 'x', 'y' and 'z'" - }, - { - "key": "attribute.modifier.equals.0", - "english_translation": "%s %s" - }, - { - "key": "attribute.modifier.equals.1", - "english_translation": "%s%% %s" - }, - { - "key": "attribute.modifier.equals.2", - "english_translation": "%s%% %s" - }, - { - "key": "attribute.modifier.plus.0", - "english_translation": "+%s %s" - }, - { - "key": "attribute.modifier.plus.1", - "english_translation": "+%s%% %s" - }, - { - "key": "attribute.modifier.plus.2", - "english_translation": "+%s%% %s" - }, - { - "key": "attribute.modifier.take.0", - "english_translation": "-%s %s" - }, - { - "key": "attribute.modifier.take.1", - "english_translation": "-%s%% %s" - }, - { - "key": "attribute.modifier.take.2", - "english_translation": "-%s%% %s" - }, - { - "key": "attribute.name.generic.armor", - "english_translation": "Armor" - }, - { - "key": "attribute.name.generic.armor_toughness", - "english_translation": "Armor Toughness" - }, - { - "key": "attribute.name.generic.attack_damage", - "english_translation": "Attack Damage" - }, - { - "key": "attribute.name.generic.attack_knockback", - "english_translation": "Attack Knockback" - }, - { - "key": "attribute.name.generic.attack_speed", - "english_translation": "Attack Speed" - }, - { - "key": "attribute.name.generic.flying_speed", - "english_translation": "Flying Speed" - }, - { - "key": "attribute.name.generic.follow_range", - "english_translation": "Mob Follow Range" - }, - { - "key": "attribute.name.generic.knockback_resistance", - "english_translation": "Knockback Resistance" - }, - { - "key": "attribute.name.generic.luck", - "english_translation": "Luck" - }, - { - "key": "attribute.name.generic.max_health", - "english_translation": "Max Health" - }, - { - "key": "attribute.name.generic.movement_speed", - "english_translation": "Speed" - }, - { - "key": "attribute.name.horse.jump_strength", - "english_translation": "Horse Jump Strength" - }, - { - "key": "attribute.name.zombie.spawn_reinforcements", - "english_translation": "Zombie Reinforcements" - }, - { - "key": "biome.minecraft.badlands", - "english_translation": "Badlands" - }, - { - "key": "biome.minecraft.bamboo_jungle", - "english_translation": "Bamboo Jungle" - }, - { - "key": "biome.minecraft.basalt_deltas", - "english_translation": "Basalt Deltas" - }, - { - "key": "biome.minecraft.beach", - "english_translation": "Beach" - }, - { - "key": "biome.minecraft.birch_forest", - "english_translation": "Birch Forest" - }, - { - "key": "biome.minecraft.cherry_grove", - "english_translation": "Cherry Grove" - }, - { - "key": "biome.minecraft.cold_ocean", - "english_translation": "Cold Ocean" - }, - { - "key": "biome.minecraft.crimson_forest", - "english_translation": "Crimson Forest" - }, - { - "key": "biome.minecraft.dark_forest", - "english_translation": "Dark Forest" - }, - { - "key": "biome.minecraft.deep_cold_ocean", - "english_translation": "Deep Cold Ocean" - }, - { - "key": "biome.minecraft.deep_dark", - "english_translation": "Deep Dark" - }, - { - "key": "biome.minecraft.deep_frozen_ocean", - "english_translation": "Deep Frozen Ocean" - }, - { - "key": "biome.minecraft.deep_lukewarm_ocean", - "english_translation": "Deep Lukewarm Ocean" - }, - { - "key": "biome.minecraft.deep_ocean", - "english_translation": "Deep Ocean" - }, - { - "key": "biome.minecraft.desert", - "english_translation": "Desert" - }, - { - "key": "biome.minecraft.dripstone_caves", - "english_translation": "Dripstone Caves" - }, - { - "key": "biome.minecraft.end_barrens", - "english_translation": "End Barrens" - }, - { - "key": "biome.minecraft.end_highlands", - "english_translation": "End Highlands" - }, - { - "key": "biome.minecraft.end_midlands", - "english_translation": "End Midlands" - }, - { - "key": "biome.minecraft.eroded_badlands", - "english_translation": "Eroded Badlands" - }, - { - "key": "biome.minecraft.flower_forest", - "english_translation": "Flower Forest" - }, - { - "key": "biome.minecraft.forest", - "english_translation": "Forest" - }, - { - "key": "biome.minecraft.frozen_ocean", - "english_translation": "Frozen Ocean" - }, - { - "key": "biome.minecraft.frozen_peaks", - "english_translation": "Frozen Peaks" - }, - { - "key": "biome.minecraft.frozen_river", - "english_translation": "Frozen River" - }, - { - "key": "biome.minecraft.grove", - "english_translation": "Grove" - }, - { - "key": "biome.minecraft.ice_spikes", - "english_translation": "Ice Spikes" - }, - { - "key": "biome.minecraft.jagged_peaks", - "english_translation": "Jagged Peaks" - }, - { - "key": "biome.minecraft.jungle", - "english_translation": "Jungle" - }, - { - "key": "biome.minecraft.lukewarm_ocean", - "english_translation": "Lukewarm Ocean" - }, - { - "key": "biome.minecraft.lush_caves", - "english_translation": "Lush Caves" - }, - { - "key": "biome.minecraft.mangrove_swamp", - "english_translation": "Mangrove Swamp" - }, - { - "key": "biome.minecraft.meadow", - "english_translation": "Meadow" - }, - { - "key": "biome.minecraft.mushroom_fields", - "english_translation": "Mushroom Fields" - }, - { - "key": "biome.minecraft.nether_wastes", - "english_translation": "Nether Wastes" - }, - { - "key": "biome.minecraft.ocean", - "english_translation": "Ocean" - }, - { - "key": "biome.minecraft.old_growth_birch_forest", - "english_translation": "Old Growth Birch Forest" - }, - { - "key": "biome.minecraft.old_growth_pine_taiga", - "english_translation": "Old Growth Pine Taiga" - }, - { - "key": "biome.minecraft.old_growth_spruce_taiga", - "english_translation": "Old Growth Spruce Taiga" - }, - { - "key": "biome.minecraft.plains", - "english_translation": "Plains" - }, - { - "key": "biome.minecraft.river", - "english_translation": "River" - }, - { - "key": "biome.minecraft.savanna", - "english_translation": "Savanna" - }, - { - "key": "biome.minecraft.savanna_plateau", - "english_translation": "Savanna Plateau" - }, - { - "key": "biome.minecraft.small_end_islands", - "english_translation": "Small End Islands" - }, - { - "key": "biome.minecraft.snowy_beach", - "english_translation": "Snowy Beach" - }, - { - "key": "biome.minecraft.snowy_plains", - "english_translation": "Snowy Plains" - }, - { - "key": "biome.minecraft.snowy_slopes", - "english_translation": "Snowy Slopes" - }, - { - "key": "biome.minecraft.snowy_taiga", - "english_translation": "Snowy Taiga" - }, - { - "key": "biome.minecraft.soul_sand_valley", - "english_translation": "Soul Sand Valley" - }, - { - "key": "biome.minecraft.sparse_jungle", - "english_translation": "Sparse Jungle" - }, - { - "key": "biome.minecraft.stony_peaks", - "english_translation": "Stony Peaks" - }, - { - "key": "biome.minecraft.stony_shore", - "english_translation": "Stony Shore" - }, - { - "key": "biome.minecraft.sunflower_plains", - "english_translation": "Sunflower Plains" - }, - { - "key": "biome.minecraft.swamp", - "english_translation": "Swamp" - }, - { - "key": "biome.minecraft.taiga", - "english_translation": "Taiga" - }, - { - "key": "biome.minecraft.the_end", - "english_translation": "The End" - }, - { - "key": "biome.minecraft.the_void", - "english_translation": "The Void" - }, - { - "key": "biome.minecraft.warm_ocean", - "english_translation": "Warm Ocean" - }, - { - "key": "biome.minecraft.warped_forest", - "english_translation": "Warped Forest" - }, - { - "key": "biome.minecraft.windswept_forest", - "english_translation": "Windswept Forest" - }, - { - "key": "biome.minecraft.windswept_gravelly_hills", - "english_translation": "Windswept Gravelly Hills" - }, - { - "key": "biome.minecraft.windswept_hills", - "english_translation": "Windswept Hills" - }, - { - "key": "biome.minecraft.windswept_savanna", - "english_translation": "Windswept Savanna" - }, - { - "key": "biome.minecraft.wooded_badlands", - "english_translation": "Wooded Badlands" - }, - { - "key": "block.minecraft.acacia_button", - "english_translation": "Acacia Button" - }, - { - "key": "block.minecraft.acacia_door", - "english_translation": "Acacia Door" - }, - { - "key": "block.minecraft.acacia_fence", - "english_translation": "Acacia Fence" - }, - { - "key": "block.minecraft.acacia_fence_gate", - "english_translation": "Acacia Fence Gate" - }, - { - "key": "block.minecraft.acacia_hanging_sign", - "english_translation": "Acacia Hanging Sign" - }, - { - "key": "block.minecraft.acacia_leaves", - "english_translation": "Acacia Leaves" - }, - { - "key": "block.minecraft.acacia_log", - "english_translation": "Acacia Log" - }, - { - "key": "block.minecraft.acacia_planks", - "english_translation": "Acacia Planks" - }, - { - "key": "block.minecraft.acacia_pressure_plate", - "english_translation": "Acacia Pressure Plate" - }, - { - "key": "block.minecraft.acacia_sapling", - "english_translation": "Acacia Sapling" - }, - { - "key": "block.minecraft.acacia_sign", - "english_translation": "Acacia Sign" - }, - { - "key": "block.minecraft.acacia_slab", - "english_translation": "Acacia Slab" - }, - { - "key": "block.minecraft.acacia_stairs", - "english_translation": "Acacia Stairs" - }, - { - "key": "block.minecraft.acacia_trapdoor", - "english_translation": "Acacia Trapdoor" - }, - { - "key": "block.minecraft.acacia_wall_hanging_sign", - "english_translation": "Acacia Wall Hanging Sign" - }, - { - "key": "block.minecraft.acacia_wall_sign", - "english_translation": "Acacia Wall Sign" - }, - { - "key": "block.minecraft.acacia_wood", - "english_translation": "Acacia Wood" - }, - { - "key": "block.minecraft.activator_rail", - "english_translation": "Activator Rail" - }, - { - "key": "block.minecraft.air", - "english_translation": "Air" - }, - { - "key": "block.minecraft.allium", - "english_translation": "Allium" - }, - { - "key": "block.minecraft.amethyst_block", - "english_translation": "Block of Amethyst" - }, - { - "key": "block.minecraft.amethyst_cluster", - "english_translation": "Amethyst Cluster" - }, - { - "key": "block.minecraft.ancient_debris", - "english_translation": "Ancient Debris" - }, - { - "key": "block.minecraft.andesite", - "english_translation": "Andesite" - }, - { - "key": "block.minecraft.andesite_slab", - "english_translation": "Andesite Slab" - }, - { - "key": "block.minecraft.andesite_stairs", - "english_translation": "Andesite Stairs" - }, - { - "key": "block.minecraft.andesite_wall", - "english_translation": "Andesite Wall" - }, - { - "key": "block.minecraft.anvil", - "english_translation": "Anvil" - }, - { - "key": "block.minecraft.attached_melon_stem", - "english_translation": "Attached Melon Stem" - }, - { - "key": "block.minecraft.attached_pumpkin_stem", - "english_translation": "Attached Pumpkin Stem" - }, - { - "key": "block.minecraft.azalea", - "english_translation": "Azalea" - }, - { - "key": "block.minecraft.azalea_leaves", - "english_translation": "Azalea Leaves" - }, - { - "key": "block.minecraft.azure_bluet", - "english_translation": "Azure Bluet" - }, - { - "key": "block.minecraft.bamboo", - "english_translation": "Bamboo" - }, - { - "key": "block.minecraft.bamboo_block", - "english_translation": "Block of Bamboo" - }, - { - "key": "block.minecraft.bamboo_button", - "english_translation": "Bamboo Button" - }, - { - "key": "block.minecraft.bamboo_door", - "english_translation": "Bamboo Door" - }, - { - "key": "block.minecraft.bamboo_fence", - "english_translation": "Bamboo Fence" - }, - { - "key": "block.minecraft.bamboo_fence_gate", - "english_translation": "Bamboo Fence Gate" - }, - { - "key": "block.minecraft.bamboo_hanging_sign", - "english_translation": "Bamboo Hanging Sign" - }, - { - "key": "block.minecraft.bamboo_mosaic", - "english_translation": "Bamboo Mosaic" - }, - { - "key": "block.minecraft.bamboo_mosaic_slab", - "english_translation": "Bamboo Mosaic Slab" - }, - { - "key": "block.minecraft.bamboo_mosaic_stairs", - "english_translation": "Bamboo Mosaic Stairs" - }, - { - "key": "block.minecraft.bamboo_planks", - "english_translation": "Bamboo Planks" - }, - { - "key": "block.minecraft.bamboo_pressure_plate", - "english_translation": "Bamboo Pressure Plate" - }, - { - "key": "block.minecraft.bamboo_sapling", - "english_translation": "Bamboo Shoot" - }, - { - "key": "block.minecraft.bamboo_sign", - "english_translation": "Bamboo Sign" - }, - { - "key": "block.minecraft.bamboo_slab", - "english_translation": "Bamboo Slab" - }, - { - "key": "block.minecraft.bamboo_stairs", - "english_translation": "Bamboo Stairs" - }, - { - "key": "block.minecraft.bamboo_trapdoor", - "english_translation": "Bamboo Trapdoor" - }, - { - "key": "block.minecraft.bamboo_wall_hanging_sign", - "english_translation": "Bamboo Wall Hanging Sign" - }, - { - "key": "block.minecraft.bamboo_wall_sign", - "english_translation": "Bamboo Wall Sign" - }, - { - "key": "block.minecraft.banner.base.black", - "english_translation": "Fully Black Field" - }, - { - "key": "block.minecraft.banner.base.blue", - "english_translation": "Fully Blue Field" - }, - { - "key": "block.minecraft.banner.base.brown", - "english_translation": "Fully Brown Field" - }, - { - "key": "block.minecraft.banner.base.cyan", - "english_translation": "Fully Cyan Field" - }, - { - "key": "block.minecraft.banner.base.gray", - "english_translation": "Fully Gray Field" - }, - { - "key": "block.minecraft.banner.base.green", - "english_translation": "Fully Green Field" - }, - { - "key": "block.minecraft.banner.base.light_blue", - "english_translation": "Fully Light Blue Field" - }, - { - "key": "block.minecraft.banner.base.light_gray", - "english_translation": "Fully Light Gray Field" - }, - { - "key": "block.minecraft.banner.base.lime", - "english_translation": "Fully Lime Field" - }, - { - "key": "block.minecraft.banner.base.magenta", - "english_translation": "Fully Magenta Field" - }, - { - "key": "block.minecraft.banner.base.orange", - "english_translation": "Fully Orange Field" - }, - { - "key": "block.minecraft.banner.base.pink", - "english_translation": "Fully Pink Field" - }, - { - "key": "block.minecraft.banner.base.purple", - "english_translation": "Fully Purple Field" - }, - { - "key": "block.minecraft.banner.base.red", - "english_translation": "Fully Red Field" - }, - { - "key": "block.minecraft.banner.base.white", - "english_translation": "Fully White Field" - }, - { - "key": "block.minecraft.banner.base.yellow", - "english_translation": "Fully Yellow Field" - }, - { - "key": "block.minecraft.banner.border.black", - "english_translation": "Black Bordure" - }, - { - "key": "block.minecraft.banner.border.blue", - "english_translation": "Blue Bordure" - }, - { - "key": "block.minecraft.banner.border.brown", - "english_translation": "Brown Bordure" - }, - { - "key": "block.minecraft.banner.border.cyan", - "english_translation": "Cyan Bordure" - }, - { - "key": "block.minecraft.banner.border.gray", - "english_translation": "Gray Bordure" - }, - { - "key": "block.minecraft.banner.border.green", - "english_translation": "Green Bordure" - }, - { - "key": "block.minecraft.banner.border.light_blue", - "english_translation": "Light Blue Bordure" - }, - { - "key": "block.minecraft.banner.border.light_gray", - "english_translation": "Light Gray Bordure" - }, - { - "key": "block.minecraft.banner.border.lime", - "english_translation": "Lime Bordure" - }, - { - "key": "block.minecraft.banner.border.magenta", - "english_translation": "Magenta Bordure" - }, - { - "key": "block.minecraft.banner.border.orange", - "english_translation": "Orange Bordure" - }, - { - "key": "block.minecraft.banner.border.pink", - "english_translation": "Pink Bordure" - }, - { - "key": "block.minecraft.banner.border.purple", - "english_translation": "Purple Bordure" - }, - { - "key": "block.minecraft.banner.border.red", - "english_translation": "Red Bordure" - }, - { - "key": "block.minecraft.banner.border.white", - "english_translation": "White Bordure" - }, - { - "key": "block.minecraft.banner.border.yellow", - "english_translation": "Yellow Bordure" - }, - { - "key": "block.minecraft.banner.bricks.black", - "english_translation": "Black Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.blue", - "english_translation": "Blue Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.brown", - "english_translation": "Brown Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.cyan", - "english_translation": "Cyan Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.gray", - "english_translation": "Gray Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.green", - "english_translation": "Green Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.light_blue", - "english_translation": "Light Blue Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.light_gray", - "english_translation": "Light Gray Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.lime", - "english_translation": "Lime Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.magenta", - "english_translation": "Magenta Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.orange", - "english_translation": "Orange Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.pink", - "english_translation": "Pink Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.purple", - "english_translation": "Purple Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.red", - "english_translation": "Red Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.white", - "english_translation": "White Field Masoned" - }, - { - "key": "block.minecraft.banner.bricks.yellow", - "english_translation": "Yellow Field Masoned" - }, - { - "key": "block.minecraft.banner.circle.black", - "english_translation": "Black Roundel" - }, - { - "key": "block.minecraft.banner.circle.blue", - "english_translation": "Blue Roundel" - }, - { - "key": "block.minecraft.banner.circle.brown", - "english_translation": "Brown Roundel" - }, - { - "key": "block.minecraft.banner.circle.cyan", - "english_translation": "Cyan Roundel" - }, - { - "key": "block.minecraft.banner.circle.gray", - "english_translation": "Gray Roundel" - }, - { - "key": "block.minecraft.banner.circle.green", - "english_translation": "Green Roundel" - }, - { - "key": "block.minecraft.banner.circle.light_blue", - "english_translation": "Light Blue Roundel" - }, - { - "key": "block.minecraft.banner.circle.light_gray", - "english_translation": "Light Gray Roundel" - }, - { - "key": "block.minecraft.banner.circle.lime", - "english_translation": "Lime Roundel" - }, - { - "key": "block.minecraft.banner.circle.magenta", - "english_translation": "Magenta Roundel" - }, - { - "key": "block.minecraft.banner.circle.orange", - "english_translation": "Orange Roundel" - }, - { - "key": "block.minecraft.banner.circle.pink", - "english_translation": "Pink Roundel" - }, - { - "key": "block.minecraft.banner.circle.purple", - "english_translation": "Purple Roundel" - }, - { - "key": "block.minecraft.banner.circle.red", - "english_translation": "Red Roundel" - }, - { - "key": "block.minecraft.banner.circle.white", - "english_translation": "White Roundel" - }, - { - "key": "block.minecraft.banner.circle.yellow", - "english_translation": "Yellow Roundel" - }, - { - "key": "block.minecraft.banner.creeper.black", - "english_translation": "Black Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.blue", - "english_translation": "Blue Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.brown", - "english_translation": "Brown Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.cyan", - "english_translation": "Cyan Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.gray", - "english_translation": "Gray Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.green", - "english_translation": "Green Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.light_blue", - "english_translation": "Light Blue Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.light_gray", - "english_translation": "Light Gray Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.lime", - "english_translation": "Lime Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.magenta", - "english_translation": "Magenta Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.orange", - "english_translation": "Orange Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.pink", - "english_translation": "Pink Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.purple", - "english_translation": "Purple Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.red", - "english_translation": "Red Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.white", - "english_translation": "White Creeper Charge" - }, - { - "key": "block.minecraft.banner.creeper.yellow", - "english_translation": "Yellow Creeper Charge" - }, - { - "key": "block.minecraft.banner.cross.black", - "english_translation": "Black Saltire" - }, - { - "key": "block.minecraft.banner.cross.blue", - "english_translation": "Blue Saltire" - }, - { - "key": "block.minecraft.banner.cross.brown", - "english_translation": "Brown Saltire" - }, - { - "key": "block.minecraft.banner.cross.cyan", - "english_translation": "Cyan Saltire" - }, - { - "key": "block.minecraft.banner.cross.gray", - "english_translation": "Gray Saltire" - }, - { - "key": "block.minecraft.banner.cross.green", - "english_translation": "Green Saltire" - }, - { - "key": "block.minecraft.banner.cross.light_blue", - "english_translation": "Light Blue Saltire" - }, - { - "key": "block.minecraft.banner.cross.light_gray", - "english_translation": "Light Gray Saltire" - }, - { - "key": "block.minecraft.banner.cross.lime", - "english_translation": "Lime Saltire" - }, - { - "key": "block.minecraft.banner.cross.magenta", - "english_translation": "Magenta Saltire" - }, - { - "key": "block.minecraft.banner.cross.orange", - "english_translation": "Orange Saltire" - }, - { - "key": "block.minecraft.banner.cross.pink", - "english_translation": "Pink Saltire" - }, - { - "key": "block.minecraft.banner.cross.purple", - "english_translation": "Purple Saltire" - }, - { - "key": "block.minecraft.banner.cross.red", - "english_translation": "Red Saltire" - }, - { - "key": "block.minecraft.banner.cross.white", - "english_translation": "White Saltire" - }, - { - "key": "block.minecraft.banner.cross.yellow", - "english_translation": "Yellow Saltire" - }, - { - "key": "block.minecraft.banner.curly_border.black", - "english_translation": "Black Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.blue", - "english_translation": "Blue Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.brown", - "english_translation": "Brown Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.cyan", - "english_translation": "Cyan Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.gray", - "english_translation": "Gray Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.green", - "english_translation": "Green Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.light_blue", - "english_translation": "Light Blue Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.light_gray", - "english_translation": "Light Gray Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.lime", - "english_translation": "Lime Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.magenta", - "english_translation": "Magenta Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.orange", - "english_translation": "Orange Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.pink", - "english_translation": "Pink Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.purple", - "english_translation": "Purple Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.red", - "english_translation": "Red Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.white", - "english_translation": "White Bordure Indented" - }, - { - "key": "block.minecraft.banner.curly_border.yellow", - "english_translation": "Yellow Bordure Indented" - }, - { - "key": "block.minecraft.banner.diagonal_left.black", - "english_translation": "Black Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.blue", - "english_translation": "Blue Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.brown", - "english_translation": "Brown Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.cyan", - "english_translation": "Cyan Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.gray", - "english_translation": "Gray Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.green", - "english_translation": "Green Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.light_blue", - "english_translation": "Light Blue Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.light_gray", - "english_translation": "Light Gray Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.lime", - "english_translation": "Lime Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.magenta", - "english_translation": "Magenta Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.orange", - "english_translation": "Orange Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.pink", - "english_translation": "Pink Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.purple", - "english_translation": "Purple Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.red", - "english_translation": "Red Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.white", - "english_translation": "White Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_left.yellow", - "english_translation": "Yellow Per Bend Sinister" - }, - { - "key": "block.minecraft.banner.diagonal_right.black", - "english_translation": "Black Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.blue", - "english_translation": "Blue Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.brown", - "english_translation": "Brown Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.cyan", - "english_translation": "Cyan Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.gray", - "english_translation": "Gray Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.green", - "english_translation": "Green Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.light_blue", - "english_translation": "Light Blue Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.light_gray", - "english_translation": "Light Gray Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.lime", - "english_translation": "Lime Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.magenta", - "english_translation": "Magenta Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.orange", - "english_translation": "Orange Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.pink", - "english_translation": "Pink Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.purple", - "english_translation": "Purple Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.red", - "english_translation": "Red Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.white", - "english_translation": "White Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_right.yellow", - "english_translation": "Yellow Per Bend" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.black", - "english_translation": "Black Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.blue", - "english_translation": "Blue Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.brown", - "english_translation": "Brown Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.cyan", - "english_translation": "Cyan Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.gray", - "english_translation": "Gray Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.green", - "english_translation": "Green Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.light_blue", - "english_translation": "Light Blue Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.light_gray", - "english_translation": "Light Gray Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.lime", - "english_translation": "Lime Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.magenta", - "english_translation": "Magenta Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.orange", - "english_translation": "Orange Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.pink", - "english_translation": "Pink Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.purple", - "english_translation": "Purple Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.red", - "english_translation": "Red Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.white", - "english_translation": "White Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_left.yellow", - "english_translation": "Yellow Per Bend Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.black", - "english_translation": "Black Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.blue", - "english_translation": "Blue Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.brown", - "english_translation": "Brown Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.cyan", - "english_translation": "Cyan Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.gray", - "english_translation": "Gray Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.green", - "english_translation": "Green Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.light_blue", - "english_translation": "Light Blue Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.light_gray", - "english_translation": "Light Gray Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.lime", - "english_translation": "Lime Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.magenta", - "english_translation": "Magenta Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.orange", - "english_translation": "Orange Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.pink", - "english_translation": "Pink Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.purple", - "english_translation": "Purple Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.red", - "english_translation": "Red Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.white", - "english_translation": "White Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.diagonal_up_right.yellow", - "english_translation": "Yellow Per Bend Sinister Inverted" - }, - { - "key": "block.minecraft.banner.flower.black", - "english_translation": "Black Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.blue", - "english_translation": "Blue Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.brown", - "english_translation": "Brown Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.cyan", - "english_translation": "Cyan Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.gray", - "english_translation": "Gray Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.green", - "english_translation": "Green Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.light_blue", - "english_translation": "Light Blue Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.light_gray", - "english_translation": "Light Gray Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.lime", - "english_translation": "Lime Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.magenta", - "english_translation": "Magenta Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.orange", - "english_translation": "Orange Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.pink", - "english_translation": "Pink Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.purple", - "english_translation": "Purple Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.red", - "english_translation": "Red Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.white", - "english_translation": "White Flower Charge" - }, - { - "key": "block.minecraft.banner.flower.yellow", - "english_translation": "Yellow Flower Charge" - }, - { - "key": "block.minecraft.banner.globe.black", - "english_translation": "Black Globe" - }, - { - "key": "block.minecraft.banner.globe.blue", - "english_translation": "Blue Globe" - }, - { - "key": "block.minecraft.banner.globe.brown", - "english_translation": "Brown Globe" - }, - { - "key": "block.minecraft.banner.globe.cyan", - "english_translation": "Cyan Globe" - }, - { - "key": "block.minecraft.banner.globe.gray", - "english_translation": "Gray Globe" - }, - { - "key": "block.minecraft.banner.globe.green", - "english_translation": "Green Globe" - }, - { - "key": "block.minecraft.banner.globe.light_blue", - "english_translation": "Light Blue Globe" - }, - { - "key": "block.minecraft.banner.globe.light_gray", - "english_translation": "Light Gray Globe" - }, - { - "key": "block.minecraft.banner.globe.lime", - "english_translation": "Lime Globe" - }, - { - "key": "block.minecraft.banner.globe.magenta", - "english_translation": "Magenta Globe" - }, - { - "key": "block.minecraft.banner.globe.orange", - "english_translation": "Orange Globe" - }, - { - "key": "block.minecraft.banner.globe.pink", - "english_translation": "Pink Globe" - }, - { - "key": "block.minecraft.banner.globe.purple", - "english_translation": "Purple Globe" - }, - { - "key": "block.minecraft.banner.globe.red", - "english_translation": "Red Globe" - }, - { - "key": "block.minecraft.banner.globe.white", - "english_translation": "White Globe" - }, - { - "key": "block.minecraft.banner.globe.yellow", - "english_translation": "Yellow Globe" - }, - { - "key": "block.minecraft.banner.gradient_up.black", - "english_translation": "Black Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.blue", - "english_translation": "Blue Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.brown", - "english_translation": "Brown Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.cyan", - "english_translation": "Cyan Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.gray", - "english_translation": "Gray Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.green", - "english_translation": "Green Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.light_blue", - "english_translation": "Light Blue Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.light_gray", - "english_translation": "Light Gray Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.lime", - "english_translation": "Lime Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.magenta", - "english_translation": "Magenta Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.orange", - "english_translation": "Orange Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.pink", - "english_translation": "Pink Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.purple", - "english_translation": "Purple Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.red", - "english_translation": "Red Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.white", - "english_translation": "White Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient_up.yellow", - "english_translation": "Yellow Base Gradient" - }, - { - "key": "block.minecraft.banner.gradient.black", - "english_translation": "Black Gradient" - }, - { - "key": "block.minecraft.banner.gradient.blue", - "english_translation": "Blue Gradient" - }, - { - "key": "block.minecraft.banner.gradient.brown", - "english_translation": "Brown Gradient" - }, - { - "key": "block.minecraft.banner.gradient.cyan", - "english_translation": "Cyan Gradient" - }, - { - "key": "block.minecraft.banner.gradient.gray", - "english_translation": "Gray Gradient" - }, - { - "key": "block.minecraft.banner.gradient.green", - "english_translation": "Green Gradient" - }, - { - "key": "block.minecraft.banner.gradient.light_blue", - "english_translation": "Light Blue Gradient" - }, - { - "key": "block.minecraft.banner.gradient.light_gray", - "english_translation": "Light Gray Gradient" - }, - { - "key": "block.minecraft.banner.gradient.lime", - "english_translation": "Lime Gradient" - }, - { - "key": "block.minecraft.banner.gradient.magenta", - "english_translation": "Magenta Gradient" - }, - { - "key": "block.minecraft.banner.gradient.orange", - "english_translation": "Orange Gradient" - }, - { - "key": "block.minecraft.banner.gradient.pink", - "english_translation": "Pink Gradient" - }, - { - "key": "block.minecraft.banner.gradient.purple", - "english_translation": "Purple Gradient" - }, - { - "key": "block.minecraft.banner.gradient.red", - "english_translation": "Red Gradient" - }, - { - "key": "block.minecraft.banner.gradient.white", - "english_translation": "White Gradient" - }, - { - "key": "block.minecraft.banner.gradient.yellow", - "english_translation": "Yellow Gradient" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.black", - "english_translation": "Black Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.blue", - "english_translation": "Blue Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.brown", - "english_translation": "Brown Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.cyan", - "english_translation": "Cyan Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.gray", - "english_translation": "Gray Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.green", - "english_translation": "Green Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.light_blue", - "english_translation": "Light Blue Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.light_gray", - "english_translation": "Light Gray Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.lime", - "english_translation": "Lime Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.magenta", - "english_translation": "Magenta Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.orange", - "english_translation": "Orange Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.pink", - "english_translation": "Pink Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.purple", - "english_translation": "Purple Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.red", - "english_translation": "Red Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.white", - "english_translation": "White Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal_bottom.yellow", - "english_translation": "Yellow Per Fess Inverted" - }, - { - "key": "block.minecraft.banner.half_horizontal.black", - "english_translation": "Black Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.blue", - "english_translation": "Blue Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.brown", - "english_translation": "Brown Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.cyan", - "english_translation": "Cyan Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.gray", - "english_translation": "Gray Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.green", - "english_translation": "Green Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.light_blue", - "english_translation": "Light Blue Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.light_gray", - "english_translation": "Light Gray Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.lime", - "english_translation": "Lime Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.magenta", - "english_translation": "Magenta Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.orange", - "english_translation": "Orange Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.pink", - "english_translation": "Pink Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.purple", - "english_translation": "Purple Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.red", - "english_translation": "Red Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.white", - "english_translation": "White Per Fess" - }, - { - "key": "block.minecraft.banner.half_horizontal.yellow", - "english_translation": "Yellow Per Fess" - }, - { - "key": "block.minecraft.banner.half_vertical_right.black", - "english_translation": "Black Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.blue", - "english_translation": "Blue Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.brown", - "english_translation": "Brown Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.cyan", - "english_translation": "Cyan Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.gray", - "english_translation": "Gray Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.green", - "english_translation": "Green Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.light_blue", - "english_translation": "Light Blue Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.light_gray", - "english_translation": "Light Gray Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.lime", - "english_translation": "Lime Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.magenta", - "english_translation": "Magenta Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.orange", - "english_translation": "Orange Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.pink", - "english_translation": "Pink Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.purple", - "english_translation": "Purple Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.red", - "english_translation": "Red Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.white", - "english_translation": "White Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical_right.yellow", - "english_translation": "Yellow Per Pale Inverted" - }, - { - "key": "block.minecraft.banner.half_vertical.black", - "english_translation": "Black Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.blue", - "english_translation": "Blue Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.brown", - "english_translation": "Brown Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.cyan", - "english_translation": "Cyan Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.gray", - "english_translation": "Gray Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.green", - "english_translation": "Green Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.light_blue", - "english_translation": "Light Blue Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.light_gray", - "english_translation": "Light Gray Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.lime", - "english_translation": "Lime Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.magenta", - "english_translation": "Magenta Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.orange", - "english_translation": "Orange Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.pink", - "english_translation": "Pink Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.purple", - "english_translation": "Purple Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.red", - "english_translation": "Red Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.white", - "english_translation": "White Per Pale" - }, - { - "key": "block.minecraft.banner.half_vertical.yellow", - "english_translation": "Yellow Per Pale" - }, - { - "key": "block.minecraft.banner.mojang.black", - "english_translation": "Black Thing" - }, - { - "key": "block.minecraft.banner.mojang.blue", - "english_translation": "Blue Thing" - }, - { - "key": "block.minecraft.banner.mojang.brown", - "english_translation": "Brown Thing" - }, - { - "key": "block.minecraft.banner.mojang.cyan", - "english_translation": "Cyan Thing" - }, - { - "key": "block.minecraft.banner.mojang.gray", - "english_translation": "Gray Thing" - }, - { - "key": "block.minecraft.banner.mojang.green", - "english_translation": "Green Thing" - }, - { - "key": "block.minecraft.banner.mojang.light_blue", - "english_translation": "Light Blue Thing" - }, - { - "key": "block.minecraft.banner.mojang.light_gray", - "english_translation": "Light Gray Thing" - }, - { - "key": "block.minecraft.banner.mojang.lime", - "english_translation": "Lime Thing" - }, - { - "key": "block.minecraft.banner.mojang.magenta", - "english_translation": "Magenta Thing" - }, - { - "key": "block.minecraft.banner.mojang.orange", - "english_translation": "Orange Thing" - }, - { - "key": "block.minecraft.banner.mojang.pink", - "english_translation": "Pink Thing" - }, - { - "key": "block.minecraft.banner.mojang.purple", - "english_translation": "Purple Thing" - }, - { - "key": "block.minecraft.banner.mojang.red", - "english_translation": "Red Thing" - }, - { - "key": "block.minecraft.banner.mojang.white", - "english_translation": "White Thing" - }, - { - "key": "block.minecraft.banner.mojang.yellow", - "english_translation": "Yellow Thing" - }, - { - "key": "block.minecraft.banner.piglin.black", - "english_translation": "Black Snout" - }, - { - "key": "block.minecraft.banner.piglin.blue", - "english_translation": "Blue Snout" - }, - { - "key": "block.minecraft.banner.piglin.brown", - "english_translation": "Brown Snout" - }, - { - "key": "block.minecraft.banner.piglin.cyan", - "english_translation": "Cyan Snout" - }, - { - "key": "block.minecraft.banner.piglin.gray", - "english_translation": "Gray Snout" - }, - { - "key": "block.minecraft.banner.piglin.green", - "english_translation": "Green Snout" - }, - { - "key": "block.minecraft.banner.piglin.light_blue", - "english_translation": "Light Blue Snout" - }, - { - "key": "block.minecraft.banner.piglin.light_gray", - "english_translation": "Light Gray Snout" - }, - { - "key": "block.minecraft.banner.piglin.lime", - "english_translation": "Lime Snout" - }, - { - "key": "block.minecraft.banner.piglin.magenta", - "english_translation": "Magenta Snout" - }, - { - "key": "block.minecraft.banner.piglin.orange", - "english_translation": "Orange Snout" - }, - { - "key": "block.minecraft.banner.piglin.pink", - "english_translation": "Pink Snout" - }, - { - "key": "block.minecraft.banner.piglin.purple", - "english_translation": "Purple Snout" - }, - { - "key": "block.minecraft.banner.piglin.red", - "english_translation": "Red Snout" - }, - { - "key": "block.minecraft.banner.piglin.white", - "english_translation": "White Snout" - }, - { - "key": "block.minecraft.banner.piglin.yellow", - "english_translation": "Yellow Snout" - }, - { - "key": "block.minecraft.banner.rhombus.black", - "english_translation": "Black Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.blue", - "english_translation": "Blue Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.brown", - "english_translation": "Brown Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.cyan", - "english_translation": "Cyan Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.gray", - "english_translation": "Gray Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.green", - "english_translation": "Green Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.light_blue", - "english_translation": "Light Blue Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.light_gray", - "english_translation": "Light Gray Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.lime", - "english_translation": "Lime Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.magenta", - "english_translation": "Magenta Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.orange", - "english_translation": "Orange Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.pink", - "english_translation": "Pink Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.purple", - "english_translation": "Purple Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.red", - "english_translation": "Red Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.white", - "english_translation": "White Lozenge" - }, - { - "key": "block.minecraft.banner.rhombus.yellow", - "english_translation": "Yellow Lozenge" - }, - { - "key": "block.minecraft.banner.skull.black", - "english_translation": "Black Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.blue", - "english_translation": "Blue Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.brown", - "english_translation": "Brown Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.cyan", - "english_translation": "Cyan Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.gray", - "english_translation": "Gray Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.green", - "english_translation": "Green Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.light_blue", - "english_translation": "Light Blue Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.light_gray", - "english_translation": "Light Gray Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.lime", - "english_translation": "Lime Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.magenta", - "english_translation": "Magenta Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.orange", - "english_translation": "Orange Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.pink", - "english_translation": "Pink Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.purple", - "english_translation": "Purple Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.red", - "english_translation": "Red Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.white", - "english_translation": "White Skull Charge" - }, - { - "key": "block.minecraft.banner.skull.yellow", - "english_translation": "Yellow Skull Charge" - }, - { - "key": "block.minecraft.banner.small_stripes.black", - "english_translation": "Black Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.blue", - "english_translation": "Blue Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.brown", - "english_translation": "Brown Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.cyan", - "english_translation": "Cyan Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.gray", - "english_translation": "Gray Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.green", - "english_translation": "Green Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.light_blue", - "english_translation": "Light Blue Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.light_gray", - "english_translation": "Light Gray Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.lime", - "english_translation": "Lime Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.magenta", - "english_translation": "Magenta Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.orange", - "english_translation": "Orange Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.pink", - "english_translation": "Pink Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.purple", - "english_translation": "Purple Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.red", - "english_translation": "Red Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.white", - "english_translation": "White Paly" - }, - { - "key": "block.minecraft.banner.small_stripes.yellow", - "english_translation": "Yellow Paly" - }, - { - "key": "block.minecraft.banner.square_bottom_left.black", - "english_translation": "Black Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.blue", - "english_translation": "Blue Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.brown", - "english_translation": "Brown Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.cyan", - "english_translation": "Cyan Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.gray", - "english_translation": "Gray Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.green", - "english_translation": "Green Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.light_blue", - "english_translation": "Light Blue Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.light_gray", - "english_translation": "Light Gray Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.lime", - "english_translation": "Lime Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.magenta", - "english_translation": "Magenta Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.orange", - "english_translation": "Orange Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.pink", - "english_translation": "Pink Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.purple", - "english_translation": "Purple Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.red", - "english_translation": "Red Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.white", - "english_translation": "White Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_left.yellow", - "english_translation": "Yellow Base Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.black", - "english_translation": "Black Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.blue", - "english_translation": "Blue Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.brown", - "english_translation": "Brown Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.cyan", - "english_translation": "Cyan Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.gray", - "english_translation": "Gray Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.green", - "english_translation": "Green Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.light_blue", - "english_translation": "Light Blue Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.light_gray", - "english_translation": "Light Gray Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.lime", - "english_translation": "Lime Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.magenta", - "english_translation": "Magenta Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.orange", - "english_translation": "Orange Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.pink", - "english_translation": "Pink Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.purple", - "english_translation": "Purple Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.red", - "english_translation": "Red Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.white", - "english_translation": "White Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_bottom_right.yellow", - "english_translation": "Yellow Base Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.black", - "english_translation": "Black Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.blue", - "english_translation": "Blue Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.brown", - "english_translation": "Brown Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.cyan", - "english_translation": "Cyan Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.gray", - "english_translation": "Gray Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.green", - "english_translation": "Green Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.light_blue", - "english_translation": "Light Blue Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.light_gray", - "english_translation": "Light Gray Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.lime", - "english_translation": "Lime Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.magenta", - "english_translation": "Magenta Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.orange", - "english_translation": "Orange Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.pink", - "english_translation": "Pink Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.purple", - "english_translation": "Purple Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.red", - "english_translation": "Red Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.white", - "english_translation": "White Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_left.yellow", - "english_translation": "Yellow Chief Dexter Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.black", - "english_translation": "Black Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.blue", - "english_translation": "Blue Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.brown", - "english_translation": "Brown Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.cyan", - "english_translation": "Cyan Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.gray", - "english_translation": "Gray Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.green", - "english_translation": "Green Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.light_blue", - "english_translation": "Light Blue Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.light_gray", - "english_translation": "Light Gray Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.lime", - "english_translation": "Lime Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.magenta", - "english_translation": "Magenta Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.orange", - "english_translation": "Orange Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.pink", - "english_translation": "Pink Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.purple", - "english_translation": "Purple Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.red", - "english_translation": "Red Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.white", - "english_translation": "White Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.square_top_right.yellow", - "english_translation": "Yellow Chief Sinister Canton" - }, - { - "key": "block.minecraft.banner.straight_cross.black", - "english_translation": "Black Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.blue", - "english_translation": "Blue Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.brown", - "english_translation": "Brown Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.cyan", - "english_translation": "Cyan Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.gray", - "english_translation": "Gray Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.green", - "english_translation": "Green Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.light_blue", - "english_translation": "Light Blue Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.light_gray", - "english_translation": "Light Gray Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.lime", - "english_translation": "Lime Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.magenta", - "english_translation": "Magenta Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.orange", - "english_translation": "Orange Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.pink", - "english_translation": "Pink Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.purple", - "english_translation": "Purple Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.red", - "english_translation": "Red Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.white", - "english_translation": "White Cross" - }, - { - "key": "block.minecraft.banner.straight_cross.yellow", - "english_translation": "Yellow Cross" - }, - { - "key": "block.minecraft.banner.stripe_bottom.black", - "english_translation": "Black Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.blue", - "english_translation": "Blue Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.brown", - "english_translation": "Brown Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.cyan", - "english_translation": "Cyan Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.gray", - "english_translation": "Gray Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.green", - "english_translation": "Green Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.light_blue", - "english_translation": "Light Blue Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.light_gray", - "english_translation": "Light Gray Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.lime", - "english_translation": "Lime Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.magenta", - "english_translation": "Magenta Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.orange", - "english_translation": "Orange Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.pink", - "english_translation": "Pink Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.purple", - "english_translation": "Purple Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.red", - "english_translation": "Red Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.white", - "english_translation": "White Base" - }, - { - "key": "block.minecraft.banner.stripe_bottom.yellow", - "english_translation": "Yellow Base" - }, - { - "key": "block.minecraft.banner.stripe_center.black", - "english_translation": "Black Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.blue", - "english_translation": "Blue Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.brown", - "english_translation": "Brown Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.cyan", - "english_translation": "Cyan Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.gray", - "english_translation": "Gray Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.green", - "english_translation": "Green Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.light_blue", - "english_translation": "Light Blue Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.light_gray", - "english_translation": "Light Gray Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.lime", - "english_translation": "Lime Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.magenta", - "english_translation": "Magenta Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.orange", - "english_translation": "Orange Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.pink", - "english_translation": "Pink Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.purple", - "english_translation": "Purple Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.red", - "english_translation": "Red Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.white", - "english_translation": "White Pale" - }, - { - "key": "block.minecraft.banner.stripe_center.yellow", - "english_translation": "Yellow Pale" - }, - { - "key": "block.minecraft.banner.stripe_downleft.black", - "english_translation": "Black Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.blue", - "english_translation": "Blue Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.brown", - "english_translation": "Brown Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.cyan", - "english_translation": "Cyan Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.gray", - "english_translation": "Gray Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.green", - "english_translation": "Green Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.light_blue", - "english_translation": "Light Blue Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.light_gray", - "english_translation": "Light Gray Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.lime", - "english_translation": "Lime Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.magenta", - "english_translation": "Magenta Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.orange", - "english_translation": "Orange Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.pink", - "english_translation": "Pink Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.purple", - "english_translation": "Purple Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.red", - "english_translation": "Red Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.white", - "english_translation": "White Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downleft.yellow", - "english_translation": "Yellow Bend Sinister" - }, - { - "key": "block.minecraft.banner.stripe_downright.black", - "english_translation": "Black Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.blue", - "english_translation": "Blue Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.brown", - "english_translation": "Brown Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.cyan", - "english_translation": "Cyan Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.gray", - "english_translation": "Gray Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.green", - "english_translation": "Green Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.light_blue", - "english_translation": "Light Blue Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.light_gray", - "english_translation": "Light Gray Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.lime", - "english_translation": "Lime Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.magenta", - "english_translation": "Magenta Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.orange", - "english_translation": "Orange Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.pink", - "english_translation": "Pink Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.purple", - "english_translation": "Purple Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.red", - "english_translation": "Red Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.white", - "english_translation": "White Bend" - }, - { - "key": "block.minecraft.banner.stripe_downright.yellow", - "english_translation": "Yellow Bend" - }, - { - "key": "block.minecraft.banner.stripe_left.black", - "english_translation": "Black Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.blue", - "english_translation": "Blue Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.brown", - "english_translation": "Brown Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.cyan", - "english_translation": "Cyan Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.gray", - "english_translation": "Gray Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.green", - "english_translation": "Green Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.light_blue", - "english_translation": "Light Blue Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.light_gray", - "english_translation": "Light Gray Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.lime", - "english_translation": "Lime Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.magenta", - "english_translation": "Magenta Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.orange", - "english_translation": "Orange Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.pink", - "english_translation": "Pink Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.purple", - "english_translation": "Purple Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.red", - "english_translation": "Red Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.white", - "english_translation": "White Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_left.yellow", - "english_translation": "Yellow Pale Dexter" - }, - { - "key": "block.minecraft.banner.stripe_middle.black", - "english_translation": "Black Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.blue", - "english_translation": "Blue Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.brown", - "english_translation": "Brown Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.cyan", - "english_translation": "Cyan Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.gray", - "english_translation": "Gray Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.green", - "english_translation": "Green Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.light_blue", - "english_translation": "Light Blue Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.light_gray", - "english_translation": "Light Gray Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.lime", - "english_translation": "Lime Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.magenta", - "english_translation": "Magenta Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.orange", - "english_translation": "Orange Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.pink", - "english_translation": "Pink Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.purple", - "english_translation": "Purple Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.red", - "english_translation": "Red Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.white", - "english_translation": "White Fess" - }, - { - "key": "block.minecraft.banner.stripe_middle.yellow", - "english_translation": "Yellow Fess" - }, - { - "key": "block.minecraft.banner.stripe_right.black", - "english_translation": "Black Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.blue", - "english_translation": "Blue Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.brown", - "english_translation": "Brown Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.cyan", - "english_translation": "Cyan Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.gray", - "english_translation": "Gray Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.green", - "english_translation": "Green Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.light_blue", - "english_translation": "Light Blue Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.light_gray", - "english_translation": "Light Gray Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.lime", - "english_translation": "Lime Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.magenta", - "english_translation": "Magenta Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.orange", - "english_translation": "Orange Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.pink", - "english_translation": "Pink Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.purple", - "english_translation": "Purple Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.red", - "english_translation": "Red Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.white", - "english_translation": "White Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_right.yellow", - "english_translation": "Yellow Pale Sinister" - }, - { - "key": "block.minecraft.banner.stripe_top.black", - "english_translation": "Black Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.blue", - "english_translation": "Blue Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.brown", - "english_translation": "Brown Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.cyan", - "english_translation": "Cyan Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.gray", - "english_translation": "Gray Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.green", - "english_translation": "Green Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.light_blue", - "english_translation": "Light Blue Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.light_gray", - "english_translation": "Light Gray Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.lime", - "english_translation": "Lime Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.magenta", - "english_translation": "Magenta Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.orange", - "english_translation": "Orange Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.pink", - "english_translation": "Pink Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.purple", - "english_translation": "Purple Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.red", - "english_translation": "Red Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.white", - "english_translation": "White Chief" - }, - { - "key": "block.minecraft.banner.stripe_top.yellow", - "english_translation": "Yellow Chief" - }, - { - "key": "block.minecraft.banner.triangle_bottom.black", - "english_translation": "Black Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.blue", - "english_translation": "Blue Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.brown", - "english_translation": "Brown Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.cyan", - "english_translation": "Cyan Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.gray", - "english_translation": "Gray Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.green", - "english_translation": "Green Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.light_blue", - "english_translation": "Light Blue Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.light_gray", - "english_translation": "Light Gray Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.lime", - "english_translation": "Lime Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.magenta", - "english_translation": "Magenta Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.orange", - "english_translation": "Orange Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.pink", - "english_translation": "Pink Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.purple", - "english_translation": "Purple Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.red", - "english_translation": "Red Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.white", - "english_translation": "White Chevron" - }, - { - "key": "block.minecraft.banner.triangle_bottom.yellow", - "english_translation": "Yellow Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.black", - "english_translation": "Black Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.blue", - "english_translation": "Blue Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.brown", - "english_translation": "Brown Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.cyan", - "english_translation": "Cyan Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.gray", - "english_translation": "Gray Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.green", - "english_translation": "Green Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.light_blue", - "english_translation": "Light Blue Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.light_gray", - "english_translation": "Light Gray Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.lime", - "english_translation": "Lime Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.magenta", - "english_translation": "Magenta Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.orange", - "english_translation": "Orange Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.pink", - "english_translation": "Pink Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.purple", - "english_translation": "Purple Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.red", - "english_translation": "Red Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.white", - "english_translation": "White Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangle_top.yellow", - "english_translation": "Yellow Inverted Chevron" - }, - { - "key": "block.minecraft.banner.triangles_bottom.black", - "english_translation": "Black Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.blue", - "english_translation": "Blue Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.brown", - "english_translation": "Brown Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.cyan", - "english_translation": "Cyan Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.gray", - "english_translation": "Gray Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.green", - "english_translation": "Green Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.light_blue", - "english_translation": "Light Blue Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.light_gray", - "english_translation": "Light Gray Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.lime", - "english_translation": "Lime Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.magenta", - "english_translation": "Magenta Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.orange", - "english_translation": "Orange Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.pink", - "english_translation": "Pink Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.purple", - "english_translation": "Purple Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.red", - "english_translation": "Red Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.white", - "english_translation": "White Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_bottom.yellow", - "english_translation": "Yellow Base Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.black", - "english_translation": "Black Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.blue", - "english_translation": "Blue Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.brown", - "english_translation": "Brown Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.cyan", - "english_translation": "Cyan Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.gray", - "english_translation": "Gray Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.green", - "english_translation": "Green Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.light_blue", - "english_translation": "Light Blue Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.light_gray", - "english_translation": "Light Gray Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.lime", - "english_translation": "Lime Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.magenta", - "english_translation": "Magenta Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.orange", - "english_translation": "Orange Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.pink", - "english_translation": "Pink Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.purple", - "english_translation": "Purple Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.red", - "english_translation": "Red Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.white", - "english_translation": "White Chief Indented" - }, - { - "key": "block.minecraft.banner.triangles_top.yellow", - "english_translation": "Yellow Chief Indented" - }, - { - "key": "block.minecraft.barrel", - "english_translation": "Barrel" - }, - { - "key": "block.minecraft.barrier", - "english_translation": "Barrier" - }, - { - "key": "block.minecraft.basalt", - "english_translation": "Basalt" - }, - { - "key": "block.minecraft.beacon", - "english_translation": "Beacon" - }, - { - "key": "block.minecraft.beacon.primary", - "english_translation": "Primary Power" - }, - { - "key": "block.minecraft.beacon.secondary", - "english_translation": "Secondary Power" - }, - { - "key": "block.minecraft.bed.no_sleep", - "english_translation": "You can sleep only at night or during thunderstorms" - }, - { - "key": "block.minecraft.bed.not_safe", - "english_translation": "You may not rest now; there are monsters nearby" - }, - { - "key": "block.minecraft.bed.obstructed", - "english_translation": "This bed is obstructed" - }, - { - "key": "block.minecraft.bed.occupied", - "english_translation": "This bed is occupied" - }, - { - "key": "block.minecraft.bed.too_far_away", - "english_translation": "You may not rest now; the bed is too far away" - }, - { - "key": "block.minecraft.bedrock", - "english_translation": "Bedrock" - }, - { - "key": "block.minecraft.bee_nest", - "english_translation": "Bee Nest" - }, - { - "key": "block.minecraft.beehive", - "english_translation": "Beehive" - }, - { - "key": "block.minecraft.beetroots", - "english_translation": "Beetroots" - }, - { - "key": "block.minecraft.bell", - "english_translation": "Bell" - }, - { - "key": "block.minecraft.big_dripleaf", - "english_translation": "Big Dripleaf" - }, - { - "key": "block.minecraft.big_dripleaf_stem", - "english_translation": "Big Dripleaf Stem" - }, - { - "key": "block.minecraft.birch_button", - "english_translation": "Birch Button" - }, - { - "key": "block.minecraft.birch_door", - "english_translation": "Birch Door" - }, - { - "key": "block.minecraft.birch_fence", - "english_translation": "Birch Fence" - }, - { - "key": "block.minecraft.birch_fence_gate", - "english_translation": "Birch Fence Gate" - }, - { - "key": "block.minecraft.birch_hanging_sign", - "english_translation": "Birch Hanging Sign" - }, - { - "key": "block.minecraft.birch_leaves", - "english_translation": "Birch Leaves" - }, - { - "key": "block.minecraft.birch_log", - "english_translation": "Birch Log" - }, - { - "key": "block.minecraft.birch_planks", - "english_translation": "Birch Planks" - }, - { - "key": "block.minecraft.birch_pressure_plate", - "english_translation": "Birch Pressure Plate" - }, - { - "key": "block.minecraft.birch_sapling", - "english_translation": "Birch Sapling" - }, - { - "key": "block.minecraft.birch_sign", - "english_translation": "Birch Sign" - }, - { - "key": "block.minecraft.birch_slab", - "english_translation": "Birch Slab" - }, - { - "key": "block.minecraft.birch_stairs", - "english_translation": "Birch Stairs" - }, - { - "key": "block.minecraft.birch_trapdoor", - "english_translation": "Birch Trapdoor" - }, - { - "key": "block.minecraft.birch_wall_hanging_sign", - "english_translation": "Birch Wall Hanging Sign" - }, - { - "key": "block.minecraft.birch_wall_sign", - "english_translation": "Birch Wall Sign" - }, - { - "key": "block.minecraft.birch_wood", - "english_translation": "Birch Wood" - }, - { - "key": "block.minecraft.black_banner", - "english_translation": "Black Banner" - }, - { - "key": "block.minecraft.black_bed", - "english_translation": "Black Bed" - }, - { - "key": "block.minecraft.black_candle", - "english_translation": "Black Candle" - }, - { - "key": "block.minecraft.black_candle_cake", - "english_translation": "Cake with Black Candle" - }, - { - "key": "block.minecraft.black_carpet", - "english_translation": "Black Carpet" - }, - { - "key": "block.minecraft.black_concrete", - "english_translation": "Black Concrete" - }, - { - "key": "block.minecraft.black_concrete_powder", - "english_translation": "Black Concrete Powder" - }, - { - "key": "block.minecraft.black_glazed_terracotta", - "english_translation": "Black Glazed Terracotta" - }, - { - "key": "block.minecraft.black_shulker_box", - "english_translation": "Black Shulker Box" - }, - { - "key": "block.minecraft.black_stained_glass", - "english_translation": "Black Stained Glass" - }, - { - "key": "block.minecraft.black_stained_glass_pane", - "english_translation": "Black Stained Glass Pane" - }, - { - "key": "block.minecraft.black_terracotta", - "english_translation": "Black Terracotta" - }, - { - "key": "block.minecraft.black_wool", - "english_translation": "Black Wool" - }, - { - "key": "block.minecraft.blackstone", - "english_translation": "Blackstone" - }, - { - "key": "block.minecraft.blackstone_slab", - "english_translation": "Blackstone Slab" - }, - { - "key": "block.minecraft.blackstone_stairs", - "english_translation": "Blackstone Stairs" - }, - { - "key": "block.minecraft.blackstone_wall", - "english_translation": "Blackstone Wall" - }, - { - "key": "block.minecraft.blast_furnace", - "english_translation": "Blast Furnace" - }, - { - "key": "block.minecraft.blue_banner", - "english_translation": "Blue Banner" - }, - { - "key": "block.minecraft.blue_bed", - "english_translation": "Blue Bed" - }, - { - "key": "block.minecraft.blue_candle", - "english_translation": "Blue Candle" - }, - { - "key": "block.minecraft.blue_candle_cake", - "english_translation": "Cake with Blue Candle" - }, - { - "key": "block.minecraft.blue_carpet", - "english_translation": "Blue Carpet" - }, - { - "key": "block.minecraft.blue_concrete", - "english_translation": "Blue Concrete" - }, - { - "key": "block.minecraft.blue_concrete_powder", - "english_translation": "Blue Concrete Powder" - }, - { - "key": "block.minecraft.blue_glazed_terracotta", - "english_translation": "Blue Glazed Terracotta" - }, - { - "key": "block.minecraft.blue_ice", - "english_translation": "Blue Ice" - }, - { - "key": "block.minecraft.blue_orchid", - "english_translation": "Blue Orchid" - }, - { - "key": "block.minecraft.blue_shulker_box", - "english_translation": "Blue Shulker Box" - }, - { - "key": "block.minecraft.blue_stained_glass", - "english_translation": "Blue Stained Glass" - }, - { - "key": "block.minecraft.blue_stained_glass_pane", - "english_translation": "Blue Stained Glass Pane" - }, - { - "key": "block.minecraft.blue_terracotta", - "english_translation": "Blue Terracotta" - }, - { - "key": "block.minecraft.blue_wool", - "english_translation": "Blue Wool" - }, - { - "key": "block.minecraft.bone_block", - "english_translation": "Bone Block" - }, - { - "key": "block.minecraft.bookshelf", - "english_translation": "Bookshelf" - }, - { - "key": "block.minecraft.brain_coral", - "english_translation": "Brain Coral" - }, - { - "key": "block.minecraft.brain_coral_block", - "english_translation": "Brain Coral Block" - }, - { - "key": "block.minecraft.brain_coral_fan", - "english_translation": "Brain Coral Fan" - }, - { - "key": "block.minecraft.brain_coral_wall_fan", - "english_translation": "Brain Coral Wall Fan" - }, - { - "key": "block.minecraft.brewing_stand", - "english_translation": "Brewing Stand" - }, - { - "key": "block.minecraft.brick_slab", - "english_translation": "Brick Slab" - }, - { - "key": "block.minecraft.brick_stairs", - "english_translation": "Brick Stairs" - }, - { - "key": "block.minecraft.brick_wall", - "english_translation": "Brick Wall" - }, - { - "key": "block.minecraft.bricks", - "english_translation": "Bricks" - }, - { - "key": "block.minecraft.brown_banner", - "english_translation": "Brown Banner" - }, - { - "key": "block.minecraft.brown_bed", - "english_translation": "Brown Bed" - }, - { - "key": "block.minecraft.brown_candle", - "english_translation": "Brown Candle" - }, - { - "key": "block.minecraft.brown_candle_cake", - "english_translation": "Cake with Brown Candle" - }, - { - "key": "block.minecraft.brown_carpet", - "english_translation": "Brown Carpet" - }, - { - "key": "block.minecraft.brown_concrete", - "english_translation": "Brown Concrete" - }, - { - "key": "block.minecraft.brown_concrete_powder", - "english_translation": "Brown Concrete Powder" - }, - { - "key": "block.minecraft.brown_glazed_terracotta", - "english_translation": "Brown Glazed Terracotta" - }, - { - "key": "block.minecraft.brown_mushroom", - "english_translation": "Brown Mushroom" - }, - { - "key": "block.minecraft.brown_mushroom_block", - "english_translation": "Brown Mushroom Block" - }, - { - "key": "block.minecraft.brown_shulker_box", - "english_translation": "Brown Shulker Box" - }, - { - "key": "block.minecraft.brown_stained_glass", - "english_translation": "Brown Stained Glass" - }, - { - "key": "block.minecraft.brown_stained_glass_pane", - "english_translation": "Brown Stained Glass Pane" + "key": "options.damageTiltStrength.tooltip", + "english_translation": "The amount of camera shake caused by being hurt." }, { "key": "block.minecraft.brown_terracotta", "english_translation": "Brown Terracotta" }, { - "key": "block.minecraft.brown_wool", - "english_translation": "Brown Wool" + "key": "entity.minecraft.area_effect_cloud", + "english_translation": "Area Effect Cloud" }, { - "key": "block.minecraft.bubble_column", - "english_translation": "Bubble Column" - }, - { - "key": "block.minecraft.bubble_coral", - "english_translation": "Bubble Coral" - }, - { - "key": "block.minecraft.bubble_coral_block", - "english_translation": "Bubble Coral Block" - }, - { - "key": "block.minecraft.bubble_coral_fan", - "english_translation": "Bubble Coral Fan" - }, - { - "key": "block.minecraft.bubble_coral_wall_fan", - "english_translation": "Bubble Coral Wall Fan" - }, - { - "key": "block.minecraft.budding_amethyst", - "english_translation": "Budding Amethyst" - }, - { - "key": "block.minecraft.cactus", - "english_translation": "Cactus" - }, - { - "key": "block.minecraft.cake", - "english_translation": "Cake" - }, - { - "key": "block.minecraft.calcite", - "english_translation": "Calcite" - }, - { - "key": "block.minecraft.campfire", - "english_translation": "Campfire" - }, - { - "key": "block.minecraft.candle", - "english_translation": "Candle" - }, - { - "key": "block.minecraft.candle_cake", - "english_translation": "Cake with Candle" - }, - { - "key": "block.minecraft.carrots", - "english_translation": "Carrots" - }, - { - "key": "block.minecraft.cartography_table", - "english_translation": "Cartography Table" - }, - { - "key": "block.minecraft.carved_pumpkin", - "english_translation": "Carved Pumpkin" - }, - { - "key": "block.minecraft.cauldron", - "english_translation": "Cauldron" - }, - { - "key": "block.minecraft.cave_air", - "english_translation": "Cave Air" - }, - { - "key": "block.minecraft.cave_vines", - "english_translation": "Cave Vines" - }, - { - "key": "block.minecraft.cave_vines_plant", - "english_translation": "Cave Vines Plant" - }, - { - "key": "block.minecraft.chain", - "english_translation": "Chain" - }, - { - "key": "block.minecraft.chain_command_block", - "english_translation": "Chain Command Block" - }, - { - "key": "block.minecraft.cherry_button", - "english_translation": "Cherry Button" - }, - { - "key": "block.minecraft.cherry_door", - "english_translation": "Cherry Door" - }, - { - "key": "block.minecraft.cherry_fence", - "english_translation": "Cherry Fence" - }, - { - "key": "block.minecraft.cherry_fence_gate", - "english_translation": "Cherry Fence Gate" - }, - { - "key": "block.minecraft.cherry_hanging_sign", - "english_translation": "Cherry Hanging Sign" - }, - { - "key": "block.minecraft.cherry_leaves", - "english_translation": "Cherry Leaves" - }, - { - "key": "block.minecraft.cherry_log", - "english_translation": "Cherry Log" - }, - { - "key": "block.minecraft.cherry_planks", - "english_translation": "Cherry Planks" - }, - { - "key": "block.minecraft.cherry_pressure_plate", - "english_translation": "Cherry Pressure Plate" - }, - { - "key": "block.minecraft.cherry_sapling", - "english_translation": "Cherry Sapling" - }, - { - "key": "block.minecraft.cherry_sign", - "english_translation": "Cherry Sign" - }, - { - "key": "block.minecraft.cherry_slab", - "english_translation": "Cherry Slab" - }, - { - "key": "block.minecraft.cherry_stairs", - "english_translation": "Cherry Stairs" - }, - { - "key": "block.minecraft.cherry_trapdoor", - "english_translation": "Cherry Trapdoor" - }, - { - "key": "block.minecraft.cherry_wall_hanging_sign", - "english_translation": "Cherry Wall Hanging Sign" - }, - { - "key": "block.minecraft.cherry_wall_sign", - "english_translation": "Cherry Wall Sign" - }, - { - "key": "block.minecraft.cherry_wood", - "english_translation": "Cherry Wood" - }, - { - "key": "block.minecraft.chest", - "english_translation": "Chest" - }, - { - "key": "block.minecraft.chipped_anvil", - "english_translation": "Chipped Anvil" - }, - { - "key": "block.minecraft.chiseled_bookshelf", - "english_translation": "Chiseled Bookshelf" - }, - { - "key": "block.minecraft.chiseled_deepslate", - "english_translation": "Chiseled Deepslate" - }, - { - "key": "block.minecraft.chiseled_nether_bricks", - "english_translation": "Chiseled Nether Bricks" - }, - { - "key": "block.minecraft.chiseled_polished_blackstone", - "english_translation": "Chiseled Polished Blackstone" - }, - { - "key": "block.minecraft.chiseled_quartz_block", - "english_translation": "Chiseled Quartz Block" - }, - { - "key": "block.minecraft.chiseled_red_sandstone", - "english_translation": "Chiseled Red Sandstone" - }, - { - "key": "block.minecraft.chiseled_sandstone", - "english_translation": "Chiseled Sandstone" - }, - { - "key": "block.minecraft.chiseled_stone_bricks", - "english_translation": "Chiseled Stone Bricks" - }, - { - "key": "block.minecraft.chorus_flower", - "english_translation": "Chorus Flower" - }, - { - "key": "block.minecraft.chorus_plant", - "english_translation": "Chorus Plant" - }, - { - "key": "block.minecraft.clay", - "english_translation": "Clay" - }, - { - "key": "block.minecraft.coal_block", - "english_translation": "Block of Coal" - }, - { - "key": "block.minecraft.coal_ore", - "english_translation": "Coal Ore" - }, - { - "key": "block.minecraft.coarse_dirt", - "english_translation": "Coarse Dirt" - }, - { - "key": "block.minecraft.cobbled_deepslate", - "english_translation": "Cobbled Deepslate" - }, - { - "key": "block.minecraft.cobbled_deepslate_slab", - "english_translation": "Cobbled Deepslate Slab" - }, - { - "key": "block.minecraft.cobbled_deepslate_stairs", - "english_translation": "Cobbled Deepslate Stairs" - }, - { - "key": "block.minecraft.cobbled_deepslate_wall", - "english_translation": "Cobbled Deepslate Wall" - }, - { - "key": "block.minecraft.cobblestone", - "english_translation": "Cobblestone" - }, - { - "key": "block.minecraft.cobblestone_slab", - "english_translation": "Cobblestone Slab" - }, - { - "key": "block.minecraft.cobblestone_stairs", - "english_translation": "Cobblestone Stairs" - }, - { - "key": "block.minecraft.cobblestone_wall", - "english_translation": "Cobblestone Wall" - }, - { - "key": "block.minecraft.cobweb", - "english_translation": "Cobweb" - }, - { - "key": "block.minecraft.cocoa", - "english_translation": "Cocoa" - }, - { - "key": "block.minecraft.command_block", - "english_translation": "Command Block" - }, - { - "key": "block.minecraft.comparator", - "english_translation": "Redstone Comparator" - }, - { - "key": "block.minecraft.composter", - "english_translation": "Composter" - }, - { - "key": "block.minecraft.conduit", - "english_translation": "Conduit" - }, - { - "key": "block.minecraft.copper_block", - "english_translation": "Block of Copper" - }, - { - "key": "block.minecraft.copper_ore", - "english_translation": "Copper Ore" - }, - { - "key": "block.minecraft.cornflower", - "english_translation": "Cornflower" - }, - { - "key": "block.minecraft.cracked_deepslate_bricks", - "english_translation": "Cracked Deepslate Bricks" - }, - { - "key": "block.minecraft.cracked_deepslate_tiles", - "english_translation": "Cracked Deepslate Tiles" - }, - { - "key": "block.minecraft.cracked_nether_bricks", - "english_translation": "Cracked Nether Bricks" - }, - { - "key": "block.minecraft.cracked_polished_blackstone_bricks", - "english_translation": "Cracked Polished Blackstone Bricks" - }, - { - "key": "block.minecraft.cracked_stone_bricks", - "english_translation": "Cracked Stone Bricks" - }, - { - "key": "block.minecraft.crafting_table", - "english_translation": "Crafting Table" - }, - { - "key": "block.minecraft.creeper_head", - "english_translation": "Creeper Head" - }, - { - "key": "block.minecraft.creeper_wall_head", - "english_translation": "Creeper Wall Head" - }, - { - "key": "block.minecraft.crimson_button", - "english_translation": "Crimson Button" - }, - { - "key": "block.minecraft.crimson_door", - "english_translation": "Crimson Door" - }, - { - "key": "block.minecraft.crimson_fence", - "english_translation": "Crimson Fence" - }, - { - "key": "block.minecraft.crimson_fence_gate", - "english_translation": "Crimson Fence Gate" - }, - { - "key": "block.minecraft.crimson_fungus", - "english_translation": "Crimson Fungus" - }, - { - "key": "block.minecraft.crimson_hanging_sign", - "english_translation": "Crimson Hanging Sign" - }, - { - "key": "block.minecraft.crimson_hyphae", - "english_translation": "Crimson Hyphae" - }, - { - "key": "block.minecraft.crimson_nylium", - "english_translation": "Crimson Nylium" - }, - { - "key": "block.minecraft.crimson_planks", - "english_translation": "Crimson Planks" - }, - { - "key": "block.minecraft.crimson_pressure_plate", - "english_translation": "Crimson Pressure Plate" - }, - { - "key": "block.minecraft.crimson_roots", - "english_translation": "Crimson Roots" - }, - { - "key": "block.minecraft.crimson_sign", - "english_translation": "Crimson Sign" - }, - { - "key": "block.minecraft.crimson_slab", - "english_translation": "Crimson Slab" - }, - { - "key": "block.minecraft.crimson_stairs", - "english_translation": "Crimson Stairs" - }, - { - "key": "block.minecraft.crimson_stem", - "english_translation": "Crimson Stem" - }, - { - "key": "block.minecraft.crimson_trapdoor", - "english_translation": "Crimson Trapdoor" - }, - { - "key": "block.minecraft.crimson_wall_hanging_sign", - "english_translation": "Crimson Wall Hanging Sign" - }, - { - "key": "block.minecraft.crimson_wall_sign", - "english_translation": "Crimson Wall Sign" - }, - { - "key": "block.minecraft.crying_obsidian", - "english_translation": "Crying Obsidian" - }, - { - "key": "block.minecraft.cut_copper", - "english_translation": "Cut Copper" - }, - { - "key": "block.minecraft.cut_copper_slab", - "english_translation": "Cut Copper Slab" - }, - { - "key": "block.minecraft.cut_copper_stairs", - "english_translation": "Cut Copper Stairs" - }, - { - "key": "block.minecraft.cut_red_sandstone", - "english_translation": "Cut Red Sandstone" - }, - { - "key": "block.minecraft.cut_red_sandstone_slab", - "english_translation": "Cut Red Sandstone Slab" - }, - { - "key": "block.minecraft.cut_sandstone", - "english_translation": "Cut Sandstone" - }, - { - "key": "block.minecraft.cut_sandstone_slab", - "english_translation": "Cut Sandstone Slab" - }, - { - "key": "block.minecraft.cyan_banner", - "english_translation": "Cyan Banner" - }, - { - "key": "block.minecraft.cyan_bed", - "english_translation": "Cyan Bed" - }, - { - "key": "block.minecraft.cyan_candle", - "english_translation": "Cyan Candle" - }, - { - "key": "block.minecraft.cyan_candle_cake", - "english_translation": "Cake with Cyan Candle" - }, - { - "key": "block.minecraft.cyan_carpet", - "english_translation": "Cyan Carpet" - }, - { - "key": "block.minecraft.cyan_concrete", - "english_translation": "Cyan Concrete" - }, - { - "key": "block.minecraft.cyan_concrete_powder", - "english_translation": "Cyan Concrete Powder" - }, - { - "key": "block.minecraft.cyan_glazed_terracotta", - "english_translation": "Cyan Glazed Terracotta" - }, - { - "key": "block.minecraft.cyan_shulker_box", - "english_translation": "Cyan Shulker Box" - }, - { - "key": "block.minecraft.cyan_stained_glass", - "english_translation": "Cyan Stained Glass" - }, - { - "key": "block.minecraft.cyan_stained_glass_pane", - "english_translation": "Cyan Stained Glass Pane" - }, - { - "key": "block.minecraft.cyan_terracotta", - "english_translation": "Cyan Terracotta" - }, - { - "key": "block.minecraft.cyan_wool", - "english_translation": "Cyan Wool" - }, - { - "key": "block.minecraft.damaged_anvil", - "english_translation": "Damaged Anvil" - }, - { - "key": "block.minecraft.dandelion", - "english_translation": "Dandelion" - }, - { - "key": "block.minecraft.dark_oak_button", - "english_translation": "Dark Oak Button" - }, - { - "key": "block.minecraft.dark_oak_door", - "english_translation": "Dark Oak Door" - }, - { - "key": "block.minecraft.dark_oak_fence", - "english_translation": "Dark Oak Fence" - }, - { - "key": "block.minecraft.dark_oak_fence_gate", - "english_translation": "Dark Oak Fence Gate" - }, - { - "key": "block.minecraft.dark_oak_hanging_sign", - "english_translation": "Dark Oak Hanging Sign" - }, - { - "key": "block.minecraft.dark_oak_leaves", - "english_translation": "Dark Oak Leaves" - }, - { - "key": "block.minecraft.dark_oak_log", - "english_translation": "Dark Oak Log" - }, - { - "key": "block.minecraft.dark_oak_planks", - "english_translation": "Dark Oak Planks" - }, - { - "key": "block.minecraft.dark_oak_pressure_plate", - "english_translation": "Dark Oak Pressure Plate" - }, - { - "key": "block.minecraft.dark_oak_sapling", - "english_translation": "Dark Oak Sapling" - }, - { - "key": "block.minecraft.dark_oak_sign", - "english_translation": "Dark Oak Sign" - }, - { - "key": "block.minecraft.dark_oak_slab", - "english_translation": "Dark Oak Slab" - }, - { - "key": "block.minecraft.dark_oak_stairs", - "english_translation": "Dark Oak Stairs" - }, - { - "key": "block.minecraft.dark_oak_trapdoor", - "english_translation": "Dark Oak Trapdoor" - }, - { - "key": "block.minecraft.dark_oak_wall_hanging_sign", - "english_translation": "Dark Oak Wall Hanging Sign" - }, - { - "key": "block.minecraft.dark_oak_wall_sign", - "english_translation": "Dark Oak Wall Sign" - }, - { - "key": "block.minecraft.dark_oak_wood", - "english_translation": "Dark Oak Wood" - }, - { - "key": "block.minecraft.dark_prismarine", - "english_translation": "Dark Prismarine" - }, - { - "key": "block.minecraft.dark_prismarine_slab", - "english_translation": "Dark Prismarine Slab" - }, - { - "key": "block.minecraft.dark_prismarine_stairs", - "english_translation": "Dark Prismarine Stairs" - }, - { - "key": "block.minecraft.daylight_detector", - "english_translation": "Daylight Detector" - }, - { - "key": "block.minecraft.dead_brain_coral", - "english_translation": "Dead Brain Coral" - }, - { - "key": "block.minecraft.dead_brain_coral_block", - "english_translation": "Dead Brain Coral Block" - }, - { - "key": "block.minecraft.dead_brain_coral_fan", - "english_translation": "Dead Brain Coral Fan" - }, - { - "key": "block.minecraft.dead_brain_coral_wall_fan", - "english_translation": "Dead Brain Coral Wall Fan" - }, - { - "key": "block.minecraft.dead_bubble_coral", - "english_translation": "Dead Bubble Coral" - }, - { - "key": "block.minecraft.dead_bubble_coral_block", - "english_translation": "Dead Bubble Coral Block" - }, - { - "key": "block.minecraft.dead_bubble_coral_fan", - "english_translation": "Dead Bubble Coral Fan" - }, - { - "key": "block.minecraft.dead_bubble_coral_wall_fan", - "english_translation": "Dead Bubble Coral Wall Fan" - }, - { - "key": "block.minecraft.dead_bush", - "english_translation": "Dead Bush" - }, - { - "key": "block.minecraft.dead_fire_coral", - "english_translation": "Dead Fire Coral" - }, - { - "key": "block.minecraft.dead_fire_coral_block", - "english_translation": "Dead Fire Coral Block" - }, - { - "key": "block.minecraft.dead_fire_coral_fan", - "english_translation": "Dead Fire Coral Fan" - }, - { - "key": "block.minecraft.dead_fire_coral_wall_fan", - "english_translation": "Dead Fire Coral Wall Fan" - }, - { - "key": "block.minecraft.dead_horn_coral", - "english_translation": "Dead Horn Coral" - }, - { - "key": "block.minecraft.dead_horn_coral_block", - "english_translation": "Dead Horn Coral Block" - }, - { - "key": "block.minecraft.dead_horn_coral_fan", - "english_translation": "Dead Horn Coral Fan" - }, - { - "key": "block.minecraft.dead_horn_coral_wall_fan", - "english_translation": "Dead Horn Coral Wall Fan" - }, - { - "key": "block.minecraft.dead_tube_coral", - "english_translation": "Dead Tube Coral" - }, - { - "key": "block.minecraft.dead_tube_coral_block", - "english_translation": "Dead Tube Coral Block" - }, - { - "key": "block.minecraft.dead_tube_coral_fan", - "english_translation": "Dead Tube Coral Fan" - }, - { - "key": "block.minecraft.dead_tube_coral_wall_fan", - "english_translation": "Dead Tube Coral Wall Fan" - }, - { - "key": "block.minecraft.decorated_pot", - "english_translation": "Decorated Pot" - }, - { - "key": "block.minecraft.deepslate", - "english_translation": "Deepslate" - }, - { - "key": "block.minecraft.deepslate_brick_slab", - "english_translation": "Deepslate Brick Slab" - }, - { - "key": "block.minecraft.deepslate_brick_stairs", - "english_translation": "Deepslate Brick Stairs" - }, - { - "key": "block.minecraft.deepslate_brick_wall", - "english_translation": "Deepslate Brick Wall" - }, - { - "key": "block.minecraft.deepslate_bricks", - "english_translation": "Deepslate Bricks" - }, - { - "key": "block.minecraft.deepslate_coal_ore", - "english_translation": "Deepslate Coal Ore" - }, - { - "key": "block.minecraft.deepslate_copper_ore", - "english_translation": "Deepslate Copper Ore" - }, - { - "key": "block.minecraft.deepslate_diamond_ore", - "english_translation": "Deepslate Diamond Ore" - }, - { - "key": "block.minecraft.deepslate_emerald_ore", - "english_translation": "Deepslate Emerald Ore" - }, - { - "key": "block.minecraft.deepslate_gold_ore", - "english_translation": "Deepslate Gold Ore" - }, - { - "key": "block.minecraft.deepslate_iron_ore", - "english_translation": "Deepslate Iron Ore" - }, - { - "key": "block.minecraft.deepslate_lapis_ore", - "english_translation": "Deepslate Lapis Lazuli Ore" - }, - { - "key": "block.minecraft.deepslate_redstone_ore", - "english_translation": "Deepslate Redstone Ore" - }, - { - "key": "block.minecraft.deepslate_tile_slab", - "english_translation": "Deepslate Tile Slab" - }, - { - "key": "block.minecraft.deepslate_tile_stairs", - "english_translation": "Deepslate Tile Stairs" - }, - { - "key": "block.minecraft.deepslate_tile_wall", - "english_translation": "Deepslate Tile Wall" - }, - { - "key": "block.minecraft.deepslate_tiles", - "english_translation": "Deepslate Tiles" - }, - { - "key": "block.minecraft.detector_rail", - "english_translation": "Detector Rail" - }, - { - "key": "block.minecraft.diamond_block", - "english_translation": "Block of Diamond" - }, - { - "key": "block.minecraft.diamond_ore", - "english_translation": "Diamond Ore" - }, - { - "key": "block.minecraft.diorite", - "english_translation": "Diorite" - }, - { - "key": "block.minecraft.diorite_slab", - "english_translation": "Diorite Slab" - }, - { - "key": "block.minecraft.diorite_stairs", - "english_translation": "Diorite Stairs" - }, - { - "key": "block.minecraft.diorite_wall", - "english_translation": "Diorite Wall" - }, - { - "key": "block.minecraft.dirt", - "english_translation": "Dirt" - }, - { - "key": "block.minecraft.dirt_path", - "english_translation": "Dirt Path" - }, - { - "key": "block.minecraft.dispenser", - "english_translation": "Dispenser" - }, - { - "key": "block.minecraft.dragon_egg", - "english_translation": "Dragon Egg" - }, - { - "key": "block.minecraft.dragon_head", - "english_translation": "Dragon Head" - }, - { - "key": "block.minecraft.dragon_wall_head", - "english_translation": "Dragon Wall Head" - }, - { - "key": "block.minecraft.dried_kelp_block", - "english_translation": "Dried Kelp Block" - }, - { - "key": "block.minecraft.dripstone_block", - "english_translation": "Dripstone Block" - }, - { - "key": "block.minecraft.dropper", - "english_translation": "Dropper" - }, - { - "key": "block.minecraft.emerald_block", - "english_translation": "Block of Emerald" - }, - { - "key": "block.minecraft.emerald_ore", - "english_translation": "Emerald Ore" - }, - { - "key": "block.minecraft.enchanting_table", - "english_translation": "Enchanting Table" - }, - { - "key": "block.minecraft.end_gateway", - "english_translation": "End Gateway" - }, - { - "key": "block.minecraft.end_portal", - "english_translation": "End Portal" - }, - { - "key": "block.minecraft.end_portal_frame", - "english_translation": "End Portal Frame" - }, - { - "key": "block.minecraft.end_rod", - "english_translation": "End Rod" - }, - { - "key": "block.minecraft.end_stone", - "english_translation": "End Stone" - }, - { - "key": "block.minecraft.end_stone_brick_slab", - "english_translation": "End Stone Brick Slab" - }, - { - "key": "block.minecraft.end_stone_brick_stairs", - "english_translation": "End Stone Brick Stairs" - }, - { - "key": "block.minecraft.end_stone_brick_wall", - "english_translation": "End Stone Brick Wall" - }, - { - "key": "block.minecraft.end_stone_bricks", - "english_translation": "End Stone Bricks" - }, - { - "key": "block.minecraft.ender_chest", - "english_translation": "Ender Chest" - }, - { - "key": "block.minecraft.exposed_copper", - "english_translation": "Exposed Copper" - }, - { - "key": "block.minecraft.exposed_cut_copper", - "english_translation": "Exposed Cut Copper" - }, - { - "key": "block.minecraft.exposed_cut_copper_slab", - "english_translation": "Exposed Cut Copper Slab" - }, - { - "key": "block.minecraft.exposed_cut_copper_stairs", - "english_translation": "Exposed Cut Copper Stairs" - }, - { - "key": "block.minecraft.farmland", - "english_translation": "Farmland" - }, - { - "key": "block.minecraft.fern", - "english_translation": "Fern" - }, - { - "key": "block.minecraft.fire", - "english_translation": "Fire" - }, - { - "key": "block.minecraft.fire_coral", - "english_translation": "Fire Coral" - }, - { - "key": "block.minecraft.fire_coral_block", - "english_translation": "Fire Coral Block" - }, - { - "key": "block.minecraft.fire_coral_fan", - "english_translation": "Fire Coral Fan" - }, - { - "key": "block.minecraft.fire_coral_wall_fan", - "english_translation": "Fire Coral Wall Fan" - }, - { - "key": "block.minecraft.fletching_table", - "english_translation": "Fletching Table" - }, - { - "key": "block.minecraft.flower_pot", - "english_translation": "Flower Pot" - }, - { - "key": "block.minecraft.flowering_azalea", - "english_translation": "Flowering Azalea" - }, - { - "key": "block.minecraft.flowering_azalea_leaves", - "english_translation": "Flowering Azalea Leaves" - }, - { - "key": "block.minecraft.frogspawn", - "english_translation": "Frogspawn" - }, - { - "key": "block.minecraft.frosted_ice", - "english_translation": "Frosted Ice" - }, - { - "key": "block.minecraft.furnace", - "english_translation": "Furnace" - }, - { - "key": "block.minecraft.gilded_blackstone", - "english_translation": "Gilded Blackstone" - }, - { - "key": "block.minecraft.glass", - "english_translation": "Glass" - }, - { - "key": "block.minecraft.glass_pane", - "english_translation": "Glass Pane" - }, - { - "key": "block.minecraft.glow_lichen", - "english_translation": "Glow Lichen" - }, - { - "key": "block.minecraft.glowstone", - "english_translation": "Glowstone" - }, - { - "key": "block.minecraft.gold_block", - "english_translation": "Block of Gold" - }, - { - "key": "block.minecraft.gold_ore", - "english_translation": "Gold Ore" - }, - { - "key": "block.minecraft.granite", - "english_translation": "Granite" - }, - { - "key": "block.minecraft.granite_slab", - "english_translation": "Granite Slab" - }, - { - "key": "block.minecraft.granite_stairs", - "english_translation": "Granite Stairs" - }, - { - "key": "block.minecraft.granite_wall", - "english_translation": "Granite Wall" - }, - { - "key": "block.minecraft.grass", - "english_translation": "Grass" - }, - { - "key": "block.minecraft.grass_block", - "english_translation": "Grass Block" - }, - { - "key": "block.minecraft.gravel", - "english_translation": "Gravel" - }, - { - "key": "block.minecraft.gray_banner", - "english_translation": "Gray Banner" - }, - { - "key": "block.minecraft.gray_bed", - "english_translation": "Gray Bed" - }, - { - "key": "block.minecraft.gray_candle", - "english_translation": "Gray Candle" - }, - { - "key": "block.minecraft.gray_candle_cake", - "english_translation": "Cake with Gray Candle" - }, - { - "key": "block.minecraft.gray_carpet", - "english_translation": "Gray Carpet" - }, - { - "key": "block.minecraft.gray_concrete", - "english_translation": "Gray Concrete" - }, - { - "key": "block.minecraft.gray_concrete_powder", - "english_translation": "Gray Concrete Powder" - }, - { - "key": "block.minecraft.gray_glazed_terracotta", - "english_translation": "Gray Glazed Terracotta" - }, - { - "key": "block.minecraft.gray_shulker_box", - "english_translation": "Gray Shulker Box" - }, - { - "key": "block.minecraft.gray_stained_glass", - "english_translation": "Gray Stained Glass" - }, - { - "key": "block.minecraft.gray_stained_glass_pane", - "english_translation": "Gray Stained Glass Pane" - }, - { - "key": "block.minecraft.gray_terracotta", - "english_translation": "Gray Terracotta" - }, - { - "key": "block.minecraft.gray_wool", - "english_translation": "Gray Wool" - }, - { - "key": "block.minecraft.green_banner", - "english_translation": "Green Banner" - }, - { - "key": "block.minecraft.green_bed", - "english_translation": "Green Bed" - }, - { - "key": "block.minecraft.green_candle", - "english_translation": "Green Candle" - }, - { - "key": "block.minecraft.green_candle_cake", - "english_translation": "Cake with Green Candle" - }, - { - "key": "block.minecraft.green_carpet", - "english_translation": "Green Carpet" - }, - { - "key": "block.minecraft.green_concrete", - "english_translation": "Green Concrete" - }, - { - "key": "block.minecraft.green_concrete_powder", - "english_translation": "Green Concrete Powder" - }, - { - "key": "block.minecraft.green_glazed_terracotta", - "english_translation": "Green Glazed Terracotta" - }, - { - "key": "block.minecraft.green_shulker_box", - "english_translation": "Green Shulker Box" - }, - { - "key": "block.minecraft.green_stained_glass", - "english_translation": "Green Stained Glass" - }, - { - "key": "block.minecraft.green_stained_glass_pane", - "english_translation": "Green Stained Glass Pane" - }, - { - "key": "block.minecraft.green_terracotta", - "english_translation": "Green Terracotta" - }, - { - "key": "block.minecraft.green_wool", - "english_translation": "Green Wool" - }, - { - "key": "block.minecraft.grindstone", - "english_translation": "Grindstone" - }, - { - "key": "block.minecraft.hanging_roots", - "english_translation": "Hanging Roots" - }, - { - "key": "block.minecraft.hay_block", - "english_translation": "Hay Bale" - }, - { - "key": "block.minecraft.heavy_weighted_pressure_plate", - "english_translation": "Heavy Weighted Pressure Plate" - }, - { - "key": "block.minecraft.honey_block", - "english_translation": "Honey Block" - }, - { - "key": "block.minecraft.honeycomb_block", - "english_translation": "Honeycomb Block" - }, - { - "key": "block.minecraft.hopper", - "english_translation": "Hopper" - }, - { - "key": "block.minecraft.horn_coral", - "english_translation": "Horn Coral" - }, - { - "key": "block.minecraft.horn_coral_block", - "english_translation": "Horn Coral Block" - }, - { - "key": "block.minecraft.horn_coral_fan", - "english_translation": "Horn Coral Fan" - }, - { - "key": "block.minecraft.horn_coral_wall_fan", - "english_translation": "Horn Coral Wall Fan" - }, - { - "key": "block.minecraft.ice", - "english_translation": "Ice" - }, - { - "key": "block.minecraft.infested_chiseled_stone_bricks", - "english_translation": "Infested Chiseled Stone Bricks" - }, - { - "key": "block.minecraft.infested_cobblestone", - "english_translation": "Infested Cobblestone" - }, - { - "key": "block.minecraft.infested_cracked_stone_bricks", - "english_translation": "Infested Cracked Stone Bricks" - }, - { - "key": "block.minecraft.infested_deepslate", - "english_translation": "Infested Deepslate" - }, - { - "key": "block.minecraft.infested_mossy_stone_bricks", - "english_translation": "Infested Mossy Stone Bricks" - }, - { - "key": "block.minecraft.infested_stone", - "english_translation": "Infested Stone" - }, - { - "key": "block.minecraft.infested_stone_bricks", - "english_translation": "Infested Stone Bricks" - }, - { - "key": "block.minecraft.iron_bars", - "english_translation": "Iron Bars" - }, - { - "key": "block.minecraft.iron_block", - "english_translation": "Block of Iron" - }, - { - "key": "block.minecraft.iron_door", - "english_translation": "Iron Door" - }, - { - "key": "block.minecraft.iron_ore", - "english_translation": "Iron Ore" - }, - { - "key": "block.minecraft.iron_trapdoor", - "english_translation": "Iron Trapdoor" - }, - { - "key": "block.minecraft.jack_o_lantern", - "english_translation": "Jack o'Lantern" - }, - { - "key": "block.minecraft.jigsaw", - "english_translation": "Jigsaw Block" - }, - { - "key": "block.minecraft.jukebox", - "english_translation": "Jukebox" - }, - { - "key": "block.minecraft.jungle_button", - "english_translation": "Jungle Button" - }, - { - "key": "block.minecraft.jungle_door", - "english_translation": "Jungle Door" - }, - { - "key": "block.minecraft.jungle_fence", - "english_translation": "Jungle Fence" - }, - { - "key": "block.minecraft.jungle_fence_gate", - "english_translation": "Jungle Fence Gate" - }, - { - "key": "block.minecraft.jungle_hanging_sign", - "english_translation": "Jungle Hanging Sign" - }, - { - "key": "block.minecraft.jungle_leaves", - "english_translation": "Jungle Leaves" - }, - { - "key": "block.minecraft.jungle_log", - "english_translation": "Jungle Log" - }, - { - "key": "block.minecraft.jungle_planks", - "english_translation": "Jungle Planks" - }, - { - "key": "block.minecraft.jungle_pressure_plate", - "english_translation": "Jungle Pressure Plate" - }, - { - "key": "block.minecraft.jungle_sapling", - "english_translation": "Jungle Sapling" - }, - { - "key": "block.minecraft.jungle_sign", - "english_translation": "Jungle Sign" - }, - { - "key": "block.minecraft.jungle_slab", - "english_translation": "Jungle Slab" - }, - { - "key": "block.minecraft.jungle_stairs", - "english_translation": "Jungle Stairs" - }, - { - "key": "block.minecraft.jungle_trapdoor", - "english_translation": "Jungle Trapdoor" - }, - { - "key": "block.minecraft.jungle_wall_hanging_sign", - "english_translation": "Jungle Wall Hanging Sign" - }, - { - "key": "block.minecraft.jungle_wall_sign", - "english_translation": "Jungle Wall Sign" - }, - { - "key": "block.minecraft.jungle_wood", - "english_translation": "Jungle Wood" - }, - { - "key": "block.minecraft.kelp", - "english_translation": "Kelp" - }, - { - "key": "block.minecraft.kelp_plant", - "english_translation": "Kelp Plant" - }, - { - "key": "block.minecraft.ladder", - "english_translation": "Ladder" - }, - { - "key": "block.minecraft.lantern", - "english_translation": "Lantern" - }, - { - "key": "block.minecraft.lapis_block", - "english_translation": "Block of Lapis Lazuli" - }, - { - "key": "block.minecraft.lapis_ore", - "english_translation": "Lapis Lazuli Ore" - }, - { - "key": "block.minecraft.large_amethyst_bud", - "english_translation": "Large Amethyst Bud" - }, - { - "key": "block.minecraft.large_fern", - "english_translation": "Large Fern" - }, - { - "key": "block.minecraft.lava", - "english_translation": "Lava" - }, - { - "key": "block.minecraft.lava_cauldron", - "english_translation": "Lava Cauldron" - }, - { - "key": "block.minecraft.lectern", - "english_translation": "Lectern" - }, - { - "key": "block.minecraft.lever", - "english_translation": "Lever" - }, - { - "key": "block.minecraft.light", - "english_translation": "Light" - }, - { - "key": "block.minecraft.light_blue_banner", - "english_translation": "Light Blue Banner" - }, - { - "key": "block.minecraft.light_blue_bed", - "english_translation": "Light Blue Bed" - }, - { - "key": "block.minecraft.light_blue_candle", - "english_translation": "Light Blue Candle" - }, - { - "key": "block.minecraft.light_blue_candle_cake", - "english_translation": "Cake with Light Blue Candle" - }, - { - "key": "block.minecraft.light_blue_carpet", - "english_translation": "Light Blue Carpet" - }, - { - "key": "block.minecraft.light_blue_concrete", - "english_translation": "Light Blue Concrete" - }, - { - "key": "block.minecraft.light_blue_concrete_powder", - "english_translation": "Light Blue Concrete Powder" - }, - { - "key": "block.minecraft.light_blue_glazed_terracotta", - "english_translation": "Light Blue Glazed Terracotta" - }, - { - "key": "block.minecraft.light_blue_shulker_box", - "english_translation": "Light Blue Shulker Box" - }, - { - "key": "block.minecraft.light_blue_stained_glass", - "english_translation": "Light Blue Stained Glass" - }, - { - "key": "block.minecraft.light_blue_stained_glass_pane", - "english_translation": "Light Blue Stained Glass Pane" - }, - { - "key": "block.minecraft.light_blue_terracotta", - "english_translation": "Light Blue Terracotta" - }, - { - "key": "block.minecraft.light_blue_wool", - "english_translation": "Light Blue Wool" - }, - { - "key": "block.minecraft.light_gray_banner", - "english_translation": "Light Gray Banner" - }, - { - "key": "block.minecraft.light_gray_bed", - "english_translation": "Light Gray Bed" - }, - { - "key": "block.minecraft.light_gray_candle", - "english_translation": "Light Gray Candle" - }, - { - "key": "block.minecraft.light_gray_candle_cake", - "english_translation": "Cake with Light Gray Candle" - }, - { - "key": "block.minecraft.light_gray_carpet", - "english_translation": "Light Gray Carpet" - }, - { - "key": "block.minecraft.light_gray_concrete", - "english_translation": "Light Gray Concrete" - }, - { - "key": "block.minecraft.light_gray_concrete_powder", - "english_translation": "Light Gray Concrete Powder" - }, - { - "key": "block.minecraft.light_gray_glazed_terracotta", - "english_translation": "Light Gray Glazed Terracotta" - }, - { - "key": "block.minecraft.light_gray_shulker_box", - "english_translation": "Light Gray Shulker Box" - }, - { - "key": "block.minecraft.light_gray_stained_glass", - "english_translation": "Light Gray Stained Glass" - }, - { - "key": "block.minecraft.light_gray_stained_glass_pane", - "english_translation": "Light Gray Stained Glass Pane" - }, - { - "key": "block.minecraft.light_gray_terracotta", - "english_translation": "Light Gray Terracotta" - }, - { - "key": "block.minecraft.light_gray_wool", - "english_translation": "Light Gray Wool" - }, - { - "key": "block.minecraft.light_weighted_pressure_plate", - "english_translation": "Light Weighted Pressure Plate" - }, - { - "key": "block.minecraft.lightning_rod", - "english_translation": "Lightning Rod" - }, - { - "key": "block.minecraft.lilac", - "english_translation": "Lilac" - }, - { - "key": "block.minecraft.lily_of_the_valley", - "english_translation": "Lily of the Valley" - }, - { - "key": "block.minecraft.lily_pad", - "english_translation": "Lily Pad" - }, - { - "key": "block.minecraft.lime_banner", - "english_translation": "Lime Banner" - }, - { - "key": "block.minecraft.lime_bed", - "english_translation": "Lime Bed" - }, - { - "key": "block.minecraft.lime_candle", - "english_translation": "Lime Candle" - }, - { - "key": "block.minecraft.lime_candle_cake", - "english_translation": "Cake with Lime Candle" - }, - { - "key": "block.minecraft.lime_carpet", - "english_translation": "Lime Carpet" - }, - { - "key": "block.minecraft.lime_concrete", - "english_translation": "Lime Concrete" - }, - { - "key": "block.minecraft.lime_concrete_powder", - "english_translation": "Lime Concrete Powder" - }, - { - "key": "block.minecraft.lime_glazed_terracotta", - "english_translation": "Lime Glazed Terracotta" - }, - { - "key": "block.minecraft.lime_shulker_box", - "english_translation": "Lime Shulker Box" - }, - { - "key": "block.minecraft.lime_stained_glass", - "english_translation": "Lime Stained Glass" - }, - { - "key": "block.minecraft.lime_stained_glass_pane", - "english_translation": "Lime Stained Glass Pane" - }, - { - "key": "block.minecraft.lime_terracotta", - "english_translation": "Lime Terracotta" - }, - { - "key": "block.minecraft.lime_wool", - "english_translation": "Lime Wool" - }, - { - "key": "block.minecraft.lodestone", - "english_translation": "Lodestone" - }, - { - "key": "block.minecraft.loom", - "english_translation": "Loom" - }, - { - "key": "block.minecraft.magenta_banner", - "english_translation": "Magenta Banner" - }, - { - "key": "block.minecraft.magenta_bed", - "english_translation": "Magenta Bed" - }, - { - "key": "block.minecraft.magenta_candle", - "english_translation": "Magenta Candle" - }, - { - "key": "block.minecraft.magenta_candle_cake", - "english_translation": "Cake with Magenta Candle" - }, - { - "key": "block.minecraft.magenta_carpet", - "english_translation": "Magenta Carpet" - }, - { - "key": "block.minecraft.magenta_concrete", - "english_translation": "Magenta Concrete" - }, - { - "key": "block.minecraft.magenta_concrete_powder", - "english_translation": "Magenta Concrete Powder" - }, - { - "key": "block.minecraft.magenta_glazed_terracotta", - "english_translation": "Magenta Glazed Terracotta" - }, - { - "key": "block.minecraft.magenta_shulker_box", - "english_translation": "Magenta Shulker Box" - }, - { - "key": "block.minecraft.magenta_stained_glass", - "english_translation": "Magenta Stained Glass" - }, - { - "key": "block.minecraft.magenta_stained_glass_pane", - "english_translation": "Magenta Stained Glass Pane" - }, - { - "key": "block.minecraft.magenta_terracotta", - "english_translation": "Magenta Terracotta" - }, - { - "key": "block.minecraft.magenta_wool", - "english_translation": "Magenta Wool" - }, - { - "key": "block.minecraft.magma_block", - "english_translation": "Magma Block" - }, - { - "key": "block.minecraft.mangrove_button", - "english_translation": "Mangrove Button" - }, - { - "key": "block.minecraft.mangrove_door", - "english_translation": "Mangrove Door" - }, - { - "key": "block.minecraft.mangrove_fence", - "english_translation": "Mangrove Fence" - }, - { - "key": "block.minecraft.mangrove_fence_gate", - "english_translation": "Mangrove Fence Gate" - }, - { - "key": "block.minecraft.mangrove_hanging_sign", - "english_translation": "Mangrove Hanging Sign" - }, - { - "key": "block.minecraft.mangrove_leaves", - "english_translation": "Mangrove Leaves" - }, - { - "key": "block.minecraft.mangrove_log", - "english_translation": "Mangrove Log" - }, - { - "key": "block.minecraft.mangrove_planks", - "english_translation": "Mangrove Planks" - }, - { - "key": "block.minecraft.mangrove_pressure_plate", - "english_translation": "Mangrove Pressure Plate" - }, - { - "key": "block.minecraft.mangrove_propagule", - "english_translation": "Mangrove Propagule" - }, - { - "key": "block.minecraft.mangrove_roots", - "english_translation": "Mangrove Roots" - }, - { - "key": "block.minecraft.mangrove_sign", - "english_translation": "Mangrove Sign" - }, - { - "key": "block.minecraft.mangrove_slab", - "english_translation": "Mangrove Slab" - }, - { - "key": "block.minecraft.mangrove_stairs", - "english_translation": "Mangrove Stairs" - }, - { - "key": "block.minecraft.mangrove_trapdoor", - "english_translation": "Mangrove Trapdoor" - }, - { - "key": "block.minecraft.mangrove_wall_hanging_sign", - "english_translation": "Mangrove Wall Hanging Sign" - }, - { - "key": "block.minecraft.mangrove_wall_sign", - "english_translation": "Mangrove Wall Sign" - }, - { - "key": "block.minecraft.mangrove_wood", - "english_translation": "Mangrove Wood" - }, - { - "key": "block.minecraft.medium_amethyst_bud", - "english_translation": "Medium Amethyst Bud" - }, - { - "key": "block.minecraft.melon", - "english_translation": "Melon" - }, - { - "key": "block.minecraft.melon_stem", - "english_translation": "Melon Stem" - }, - { - "key": "block.minecraft.moss_block", - "english_translation": "Moss Block" - }, - { - "key": "block.minecraft.moss_carpet", - "english_translation": "Moss Carpet" - }, - { - "key": "block.minecraft.mossy_cobblestone", - "english_translation": "Mossy Cobblestone" - }, - { - "key": "block.minecraft.mossy_cobblestone_slab", - "english_translation": "Mossy Cobblestone Slab" - }, - { - "key": "block.minecraft.mossy_cobblestone_stairs", - "english_translation": "Mossy Cobblestone Stairs" - }, - { - "key": "block.minecraft.mossy_cobblestone_wall", - "english_translation": "Mossy Cobblestone Wall" - }, - { - "key": "block.minecraft.mossy_stone_brick_slab", - "english_translation": "Mossy Stone Brick Slab" - }, - { - "key": "block.minecraft.mossy_stone_brick_stairs", - "english_translation": "Mossy Stone Brick Stairs" - }, - { - "key": "block.minecraft.mossy_stone_brick_wall", - "english_translation": "Mossy Stone Brick Wall" - }, - { - "key": "block.minecraft.mossy_stone_bricks", - "english_translation": "Mossy Stone Bricks" - }, - { - "key": "block.minecraft.moving_piston", - "english_translation": "Moving Piston" - }, - { - "key": "block.minecraft.mud", - "english_translation": "Mud" - }, - { - "key": "block.minecraft.mud_brick_slab", - "english_translation": "Mud Brick Slab" - }, - { - "key": "block.minecraft.mud_brick_stairs", - "english_translation": "Mud Brick Stairs" - }, - { - "key": "block.minecraft.mud_brick_wall", - "english_translation": "Mud Brick Wall" - }, - { - "key": "block.minecraft.mud_bricks", - "english_translation": "Mud Bricks" - }, - { - "key": "block.minecraft.muddy_mangrove_roots", - "english_translation": "Muddy Mangrove Roots" - }, - { - "key": "block.minecraft.mushroom_stem", - "english_translation": "Mushroom Stem" - }, - { - "key": "block.minecraft.mycelium", - "english_translation": "Mycelium" - }, - { - "key": "block.minecraft.nether_brick_fence", - "english_translation": "Nether Brick Fence" - }, - { - "key": "block.minecraft.nether_brick_slab", - "english_translation": "Nether Brick Slab" - }, - { - "key": "block.minecraft.nether_brick_stairs", - "english_translation": "Nether Brick Stairs" - }, - { - "key": "block.minecraft.nether_brick_wall", - "english_translation": "Nether Brick Wall" - }, - { - "key": "block.minecraft.nether_bricks", - "english_translation": "Nether Bricks" - }, - { - "key": "block.minecraft.nether_gold_ore", - "english_translation": "Nether Gold Ore" - }, - { - "key": "block.minecraft.nether_portal", - "english_translation": "Nether Portal" - }, - { - "key": "block.minecraft.nether_quartz_ore", - "english_translation": "Nether Quartz Ore" - }, - { - "key": "block.minecraft.nether_sprouts", - "english_translation": "Nether Sprouts" - }, - { - "key": "block.minecraft.nether_wart", - "english_translation": "Nether Wart" - }, - { - "key": "block.minecraft.nether_wart_block", - "english_translation": "Nether Wart Block" - }, - { - "key": "block.minecraft.netherite_block", - "english_translation": "Block of Netherite" - }, - { - "key": "block.minecraft.netherrack", - "english_translation": "Netherrack" - }, - { - "key": "block.minecraft.note_block", - "english_translation": "Note Block" - }, - { - "key": "block.minecraft.oak_button", - "english_translation": "Oak Button" - }, - { - "key": "block.minecraft.oak_door", - "english_translation": "Oak Door" - }, - { - "key": "block.minecraft.oak_fence", - "english_translation": "Oak Fence" - }, - { - "key": "block.minecraft.oak_fence_gate", - "english_translation": "Oak Fence Gate" - }, - { - "key": "block.minecraft.oak_hanging_sign", - "english_translation": "Oak Hanging Sign" - }, - { - "key": "block.minecraft.oak_leaves", - "english_translation": "Oak Leaves" - }, - { - "key": "block.minecraft.oak_log", - "english_translation": "Oak Log" - }, - { - "key": "block.minecraft.oak_planks", - "english_translation": "Oak Planks" - }, - { - "key": "block.minecraft.oak_pressure_plate", - "english_translation": "Oak Pressure Plate" - }, - { - "key": "block.minecraft.oak_sapling", - "english_translation": "Oak Sapling" - }, - { - "key": "block.minecraft.oak_sign", - "english_translation": "Oak Sign" - }, - { - "key": "block.minecraft.oak_slab", - "english_translation": "Oak Slab" - }, - { - "key": "block.minecraft.oak_stairs", - "english_translation": "Oak Stairs" - }, - { - "key": "block.minecraft.oak_trapdoor", - "english_translation": "Oak Trapdoor" - }, - { - "key": "block.minecraft.oak_wall_hanging_sign", - "english_translation": "Oak Wall Hanging Sign" - }, - { - "key": "block.minecraft.oak_wall_sign", - "english_translation": "Oak Wall Sign" - }, - { - "key": "block.minecraft.oak_wood", - "english_translation": "Oak Wood" - }, - { - "key": "block.minecraft.observer", - "english_translation": "Observer" - }, - { - "key": "block.minecraft.obsidian", - "english_translation": "Obsidian" - }, - { - "key": "block.minecraft.ochre_froglight", - "english_translation": "Ochre Froglight" - }, - { - "key": "block.minecraft.ominous_banner", - "english_translation": "Ominous Banner" - }, - { - "key": "block.minecraft.orange_banner", - "english_translation": "Orange Banner" - }, - { - "key": "block.minecraft.orange_bed", - "english_translation": "Orange Bed" - }, - { - "key": "block.minecraft.orange_candle", - "english_translation": "Orange Candle" - }, - { - "key": "block.minecraft.orange_candle_cake", - "english_translation": "Cake with Orange Candle" - }, - { - "key": "block.minecraft.orange_carpet", - "english_translation": "Orange Carpet" - }, - { - "key": "block.minecraft.orange_concrete", - "english_translation": "Orange Concrete" - }, - { - "key": "block.minecraft.orange_concrete_powder", - "english_translation": "Orange Concrete Powder" - }, - { - "key": "block.minecraft.orange_glazed_terracotta", - "english_translation": "Orange Glazed Terracotta" - }, - { - "key": "block.minecraft.orange_shulker_box", - "english_translation": "Orange Shulker Box" - }, - { - "key": "block.minecraft.orange_stained_glass", - "english_translation": "Orange Stained Glass" - }, - { - "key": "block.minecraft.orange_stained_glass_pane", - "english_translation": "Orange Stained Glass Pane" - }, - { - "key": "block.minecraft.orange_terracotta", - "english_translation": "Orange Terracotta" - }, - { - "key": "block.minecraft.orange_tulip", - "english_translation": "Orange Tulip" - }, - { - "key": "block.minecraft.orange_wool", - "english_translation": "Orange Wool" - }, - { - "key": "block.minecraft.oxeye_daisy", - "english_translation": "Oxeye Daisy" - }, - { - "key": "block.minecraft.oxidized_copper", - "english_translation": "Oxidized Copper" - }, - { - "key": "block.minecraft.oxidized_cut_copper", - "english_translation": "Oxidized Cut Copper" - }, - { - "key": "block.minecraft.oxidized_cut_copper_slab", - "english_translation": "Oxidized Cut Copper Slab" - }, - { - "key": "block.minecraft.oxidized_cut_copper_stairs", - "english_translation": "Oxidized Cut Copper Stairs" - }, - { - "key": "block.minecraft.packed_ice", - "english_translation": "Packed Ice" - }, - { - "key": "block.minecraft.packed_mud", - "english_translation": "Packed Mud" - }, - { - "key": "block.minecraft.pearlescent_froglight", - "english_translation": "Pearlescent Froglight" - }, - { - "key": "block.minecraft.peony", - "english_translation": "Peony" - }, - { - "key": "block.minecraft.petrified_oak_slab", - "english_translation": "Petrified Oak Slab" - }, - { - "key": "block.minecraft.piglin_head", - "english_translation": "Piglin Head" - }, - { - "key": "block.minecraft.piglin_wall_head", - "english_translation": "Piglin Wall Head" - }, - { - "key": "block.minecraft.pink_banner", - "english_translation": "Pink Banner" - }, - { - "key": "block.minecraft.pink_bed", - "english_translation": "Pink Bed" - }, - { - "key": "block.minecraft.pink_candle", - "english_translation": "Pink Candle" - }, - { - "key": "block.minecraft.pink_candle_cake", - "english_translation": "Cake with Pink Candle" - }, - { - "key": "block.minecraft.pink_carpet", - "english_translation": "Pink Carpet" - }, - { - "key": "block.minecraft.pink_concrete", - "english_translation": "Pink Concrete" - }, - { - "key": "block.minecraft.pink_concrete_powder", - "english_translation": "Pink Concrete Powder" - }, - { - "key": "block.minecraft.pink_glazed_terracotta", - "english_translation": "Pink Glazed Terracotta" - }, - { - "key": "block.minecraft.pink_petals", - "english_translation": "Pink Petals" - }, - { - "key": "block.minecraft.pink_shulker_box", - "english_translation": "Pink Shulker Box" - }, - { - "key": "block.minecraft.pink_stained_glass", - "english_translation": "Pink Stained Glass" - }, - { - "key": "block.minecraft.pink_stained_glass_pane", - "english_translation": "Pink Stained Glass Pane" - }, - { - "key": "block.minecraft.pink_terracotta", - "english_translation": "Pink Terracotta" - }, - { - "key": "block.minecraft.pink_tulip", - "english_translation": "Pink Tulip" - }, - { - "key": "block.minecraft.pink_wool", - "english_translation": "Pink Wool" - }, - { - "key": "block.minecraft.piston", - "english_translation": "Piston" - }, - { - "key": "block.minecraft.piston_head", - "english_translation": "Piston Head" - }, - { - "key": "block.minecraft.player_head", - "english_translation": "Player Head" - }, - { - "key": "block.minecraft.player_head.named", - "english_translation": "%s's Head" - }, - { - "key": "block.minecraft.player_wall_head", - "english_translation": "Player Wall Head" - }, - { - "key": "block.minecraft.podzol", - "english_translation": "Podzol" - }, - { - "key": "block.minecraft.pointed_dripstone", - "english_translation": "Pointed Dripstone" - }, - { - "key": "block.minecraft.polished_andesite", - "english_translation": "Polished Andesite" - }, - { - "key": "block.minecraft.polished_andesite_slab", - "english_translation": "Polished Andesite Slab" - }, - { - "key": "block.minecraft.polished_andesite_stairs", - "english_translation": "Polished Andesite Stairs" - }, - { - "key": "block.minecraft.polished_basalt", - "english_translation": "Polished Basalt" - }, - { - "key": "block.minecraft.polished_blackstone", - "english_translation": "Polished Blackstone" - }, - { - "key": "block.minecraft.polished_blackstone_brick_slab", - "english_translation": "Polished Blackstone Brick Slab" - }, - { - "key": "block.minecraft.polished_blackstone_brick_stairs", - "english_translation": "Polished Blackstone Brick Stairs" - }, - { - "key": "block.minecraft.polished_blackstone_brick_wall", - "english_translation": "Polished Blackstone Brick Wall" - }, - { - "key": "block.minecraft.polished_blackstone_bricks", - "english_translation": "Polished Blackstone Bricks" - }, - { - "key": "block.minecraft.polished_blackstone_button", - "english_translation": "Polished Blackstone Button" - }, - { - "key": "block.minecraft.polished_blackstone_pressure_plate", - "english_translation": "Polished Blackstone Pressure Plate" - }, - { - "key": "block.minecraft.polished_blackstone_slab", - "english_translation": "Polished Blackstone Slab" - }, - { - "key": "block.minecraft.polished_blackstone_stairs", - "english_translation": "Polished Blackstone Stairs" - }, - { - "key": "block.minecraft.polished_blackstone_wall", - "english_translation": "Polished Blackstone Wall" - }, - { - "key": "block.minecraft.polished_deepslate", - "english_translation": "Polished Deepslate" - }, - { - "key": "block.minecraft.polished_deepslate_slab", - "english_translation": "Polished Deepslate Slab" - }, - { - "key": "block.minecraft.polished_deepslate_stairs", - "english_translation": "Polished Deepslate Stairs" - }, - { - "key": "block.minecraft.polished_deepslate_wall", - "english_translation": "Polished Deepslate Wall" - }, - { - "key": "block.minecraft.polished_diorite", - "english_translation": "Polished Diorite" - }, - { - "key": "block.minecraft.polished_diorite_slab", - "english_translation": "Polished Diorite Slab" - }, - { - "key": "block.minecraft.polished_diorite_stairs", - "english_translation": "Polished Diorite Stairs" - }, - { - "key": "block.minecraft.polished_granite", - "english_translation": "Polished Granite" - }, - { - "key": "block.minecraft.polished_granite_slab", - "english_translation": "Polished Granite Slab" - }, - { - "key": "block.minecraft.polished_granite_stairs", - "english_translation": "Polished Granite Stairs" - }, - { - "key": "block.minecraft.poppy", - "english_translation": "Poppy" - }, - { - "key": "block.minecraft.potatoes", - "english_translation": "Potatoes" - }, - { - "key": "block.minecraft.potted_acacia_sapling", - "english_translation": "Potted Acacia Sapling" - }, - { - "key": "block.minecraft.potted_allium", - "english_translation": "Potted Allium" - }, - { - "key": "block.minecraft.potted_azalea_bush", - "english_translation": "Potted Azalea" - }, - { - "key": "block.minecraft.potted_azure_bluet", - "english_translation": "Potted Azure Bluet" - }, - { - "key": "block.minecraft.potted_bamboo", - "english_translation": "Potted Bamboo" - }, - { - "key": "block.minecraft.potted_birch_sapling", - "english_translation": "Potted Birch Sapling" - }, - { - "key": "block.minecraft.potted_blue_orchid", - "english_translation": "Potted Blue Orchid" - }, - { - "key": "block.minecraft.potted_brown_mushroom", - "english_translation": "Potted Brown Mushroom" - }, - { - "key": "block.minecraft.potted_cactus", - "english_translation": "Potted Cactus" - }, - { - "key": "block.minecraft.potted_cherry_sapling", - "english_translation": "Potted Cherry Sapling" - }, - { - "key": "block.minecraft.potted_cornflower", - "english_translation": "Potted Cornflower" - }, - { - "key": "block.minecraft.potted_crimson_fungus", - "english_translation": "Potted Crimson Fungus" - }, - { - "key": "block.minecraft.potted_crimson_roots", - "english_translation": "Potted Crimson Roots" - }, - { - "key": "block.minecraft.potted_dandelion", - "english_translation": "Potted Dandelion" - }, - { - "key": "block.minecraft.potted_dark_oak_sapling", - "english_translation": "Potted Dark Oak Sapling" - }, - { - "key": "block.minecraft.potted_dead_bush", - "english_translation": "Potted Dead Bush" - }, - { - "key": "block.minecraft.potted_fern", - "english_translation": "Potted Fern" - }, - { - "key": "block.minecraft.potted_flowering_azalea_bush", - "english_translation": "Potted Flowering Azalea" - }, - { - "key": "block.minecraft.potted_jungle_sapling", - "english_translation": "Potted Jungle Sapling" - }, - { - "key": "block.minecraft.potted_lily_of_the_valley", - "english_translation": "Potted Lily of the Valley" - }, - { - "key": "block.minecraft.potted_mangrove_propagule", - "english_translation": "Potted Mangrove Propagule" - }, - { - "key": "block.minecraft.potted_oak_sapling", - "english_translation": "Potted Oak Sapling" - }, - { - "key": "block.minecraft.potted_orange_tulip", - "english_translation": "Potted Orange Tulip" - }, - { - "key": "block.minecraft.potted_oxeye_daisy", - "english_translation": "Potted Oxeye Daisy" - }, - { - "key": "block.minecraft.potted_pink_tulip", - "english_translation": "Potted Pink Tulip" - }, - { - "key": "block.minecraft.potted_poppy", - "english_translation": "Potted Poppy" - }, - { - "key": "block.minecraft.potted_red_mushroom", - "english_translation": "Potted Red Mushroom" - }, - { - "key": "block.minecraft.potted_red_tulip", - "english_translation": "Potted Red Tulip" - }, - { - "key": "block.minecraft.potted_spruce_sapling", - "english_translation": "Potted Spruce Sapling" - }, - { - "key": "block.minecraft.potted_torchflower", - "english_translation": "Potted Torchflower" - }, - { - "key": "block.minecraft.potted_warped_fungus", - "english_translation": "Potted Warped Fungus" - }, - { - "key": "block.minecraft.potted_warped_roots", - "english_translation": "Potted Warped Roots" - }, - { - "key": "block.minecraft.potted_white_tulip", - "english_translation": "Potted White Tulip" - }, - { - "key": "block.minecraft.potted_wither_rose", - "english_translation": "Potted Wither Rose" - }, - { - "key": "block.minecraft.powder_snow", - "english_translation": "Powder Snow" - }, - { - "key": "block.minecraft.powder_snow_cauldron", - "english_translation": "Powder Snow Cauldron" - }, - { - "key": "block.minecraft.powered_rail", - "english_translation": "Powered Rail" - }, - { - "key": "block.minecraft.prismarine", - "english_translation": "Prismarine" - }, - { - "key": "block.minecraft.prismarine_brick_slab", - "english_translation": "Prismarine Brick Slab" - }, - { - "key": "block.minecraft.prismarine_brick_stairs", - "english_translation": "Prismarine Brick Stairs" - }, - { - "key": "block.minecraft.prismarine_bricks", - "english_translation": "Prismarine Bricks" - }, - { - "key": "block.minecraft.prismarine_slab", - "english_translation": "Prismarine Slab" - }, - { - "key": "block.minecraft.prismarine_stairs", - "english_translation": "Prismarine Stairs" - }, - { - "key": "block.minecraft.prismarine_wall", - "english_translation": "Prismarine Wall" - }, - { - "key": "block.minecraft.pumpkin", - "english_translation": "Pumpkin" - }, - { - "key": "block.minecraft.pumpkin_stem", - "english_translation": "Pumpkin Stem" - }, - { - "key": "block.minecraft.purple_banner", - "english_translation": "Purple Banner" - }, - { - "key": "block.minecraft.purple_bed", - "english_translation": "Purple Bed" - }, - { - "key": "block.minecraft.purple_candle", - "english_translation": "Purple Candle" - }, - { - "key": "block.minecraft.purple_candle_cake", - "english_translation": "Cake with Purple Candle" - }, - { - "key": "block.minecraft.purple_carpet", - "english_translation": "Purple Carpet" - }, - { - "key": "block.minecraft.purple_concrete", - "english_translation": "Purple Concrete" - }, - { - "key": "block.minecraft.purple_concrete_powder", - "english_translation": "Purple Concrete Powder" - }, - { - "key": "block.minecraft.purple_glazed_terracotta", - "english_translation": "Purple Glazed Terracotta" - }, - { - "key": "block.minecraft.purple_shulker_box", - "english_translation": "Purple Shulker Box" - }, - { - "key": "block.minecraft.purple_stained_glass", - "english_translation": "Purple Stained Glass" - }, - { - "key": "block.minecraft.purple_stained_glass_pane", - "english_translation": "Purple Stained Glass Pane" - }, - { - "key": "block.minecraft.purple_terracotta", - "english_translation": "Purple Terracotta" - }, - { - "key": "block.minecraft.purple_wool", - "english_translation": "Purple Wool" - }, - { - "key": "block.minecraft.purpur_block", - "english_translation": "Purpur Block" - }, - { - "key": "block.minecraft.purpur_pillar", - "english_translation": "Purpur Pillar" - }, - { - "key": "block.minecraft.purpur_slab", - "english_translation": "Purpur Slab" - }, - { - "key": "block.minecraft.purpur_stairs", - "english_translation": "Purpur Stairs" - }, - { - "key": "block.minecraft.quartz_block", - "english_translation": "Block of Quartz" - }, - { - "key": "block.minecraft.quartz_bricks", - "english_translation": "Quartz Bricks" - }, - { - "key": "block.minecraft.quartz_pillar", - "english_translation": "Quartz Pillar" - }, - { - "key": "block.minecraft.quartz_slab", - "english_translation": "Quartz Slab" - }, - { - "key": "block.minecraft.quartz_stairs", - "english_translation": "Quartz Stairs" - }, - { - "key": "block.minecraft.rail", - "english_translation": "Rail" - }, - { - "key": "block.minecraft.raw_copper_block", - "english_translation": "Block of Raw Copper" - }, - { - "key": "block.minecraft.raw_gold_block", - "english_translation": "Block of Raw Gold" - }, - { - "key": "block.minecraft.raw_iron_block", - "english_translation": "Block of Raw Iron" - }, - { - "key": "block.minecraft.red_banner", - "english_translation": "Red Banner" - }, - { - "key": "block.minecraft.red_bed", - "english_translation": "Red Bed" - }, - { - "key": "block.minecraft.red_candle", - "english_translation": "Red Candle" - }, - { - "key": "block.minecraft.red_candle_cake", - "english_translation": "Cake with Red Candle" - }, - { - "key": "block.minecraft.red_carpet", - "english_translation": "Red Carpet" - }, - { - "key": "block.minecraft.red_concrete", - "english_translation": "Red Concrete" - }, - { - "key": "block.minecraft.red_concrete_powder", - "english_translation": "Red Concrete Powder" - }, - { - "key": "block.minecraft.red_glazed_terracotta", - "english_translation": "Red Glazed Terracotta" - }, - { - "key": "block.minecraft.red_mushroom", - "english_translation": "Red Mushroom" - }, - { - "key": "block.minecraft.red_mushroom_block", - "english_translation": "Red Mushroom Block" - }, - { - "key": "block.minecraft.red_nether_brick_slab", - "english_translation": "Red Nether Brick Slab" - }, - { - "key": "block.minecraft.red_nether_brick_stairs", - "english_translation": "Red Nether Brick Stairs" - }, - { - "key": "block.minecraft.red_nether_brick_wall", - "english_translation": "Red Nether Brick Wall" - }, - { - "key": "block.minecraft.red_nether_bricks", - "english_translation": "Red Nether Bricks" - }, - { - "key": "block.minecraft.red_sand", - "english_translation": "Red Sand" - }, - { - "key": "block.minecraft.red_sandstone", - "english_translation": "Red Sandstone" - }, - { - "key": "block.minecraft.red_sandstone_slab", - "english_translation": "Red Sandstone Slab" - }, - { - "key": "block.minecraft.red_sandstone_stairs", - "english_translation": "Red Sandstone Stairs" - }, - { - "key": "block.minecraft.red_sandstone_wall", - "english_translation": "Red Sandstone Wall" - }, - { - "key": "block.minecraft.red_shulker_box", - "english_translation": "Red Shulker Box" - }, - { - "key": "block.minecraft.red_stained_glass", - "english_translation": "Red Stained Glass" - }, - { - "key": "block.minecraft.red_stained_glass_pane", - "english_translation": "Red Stained Glass Pane" - }, - { - "key": "block.minecraft.red_terracotta", - "english_translation": "Red Terracotta" - }, - { - "key": "block.minecraft.red_tulip", - "english_translation": "Red Tulip" - }, - { - "key": "block.minecraft.red_wool", - "english_translation": "Red Wool" - }, - { - "key": "block.minecraft.redstone_block", - "english_translation": "Block of Redstone" - }, - { - "key": "block.minecraft.redstone_lamp", - "english_translation": "Redstone Lamp" - }, - { - "key": "block.minecraft.redstone_ore", - "english_translation": "Redstone Ore" - }, - { - "key": "block.minecraft.redstone_torch", - "english_translation": "Redstone Torch" - }, - { - "key": "block.minecraft.redstone_wall_torch", - "english_translation": "Redstone Wall Torch" - }, - { - "key": "block.minecraft.redstone_wire", - "english_translation": "Redstone Wire" - }, - { - "key": "block.minecraft.reinforced_deepslate", - "english_translation": "Reinforced Deepslate" - }, - { - "key": "block.minecraft.repeater", - "english_translation": "Redstone Repeater" - }, - { - "key": "block.minecraft.repeating_command_block", - "english_translation": "Repeating Command Block" - }, - { - "key": "block.minecraft.respawn_anchor", - "english_translation": "Respawn Anchor" - }, - { - "key": "block.minecraft.rooted_dirt", - "english_translation": "Rooted Dirt" - }, - { - "key": "block.minecraft.rose_bush", - "english_translation": "Rose Bush" - }, - { - "key": "block.minecraft.sand", - "english_translation": "Sand" - }, - { - "key": "block.minecraft.sandstone", - "english_translation": "Sandstone" - }, - { - "key": "block.minecraft.sandstone_slab", - "english_translation": "Sandstone Slab" - }, - { - "key": "block.minecraft.sandstone_stairs", - "english_translation": "Sandstone Stairs" - }, - { - "key": "block.minecraft.sandstone_wall", - "english_translation": "Sandstone Wall" - }, - { - "key": "block.minecraft.scaffolding", - "english_translation": "Scaffolding" - }, - { - "key": "block.minecraft.sculk", - "english_translation": "Sculk" - }, - { - "key": "block.minecraft.sculk_catalyst", - "english_translation": "Sculk Catalyst" - }, - { - "key": "block.minecraft.sculk_sensor", - "english_translation": "Sculk Sensor" - }, - { - "key": "block.minecraft.sculk_shrieker", - "english_translation": "Sculk Shrieker" - }, - { - "key": "block.minecraft.sculk_vein", - "english_translation": "Sculk Vein" - }, - { - "key": "block.minecraft.sea_lantern", - "english_translation": "Sea Lantern" - }, - { - "key": "block.minecraft.sea_pickle", - "english_translation": "Sea Pickle" - }, - { - "key": "block.minecraft.seagrass", - "english_translation": "Seagrass" - }, - { - "key": "block.minecraft.set_spawn", - "english_translation": "Respawn point set" - }, - { - "key": "block.minecraft.shroomlight", - "english_translation": "Shroomlight" - }, - { - "key": "block.minecraft.shulker_box", - "english_translation": "Shulker Box" - }, - { - "key": "block.minecraft.skeleton_skull", - "english_translation": "Skeleton Skull" - }, - { - "key": "block.minecraft.skeleton_wall_skull", - "english_translation": "Skeleton Wall Skull" - }, - { - "key": "block.minecraft.slime_block", - "english_translation": "Slime Block" - }, - { - "key": "block.minecraft.small_amethyst_bud", - "english_translation": "Small Amethyst Bud" - }, - { - "key": "block.minecraft.small_dripleaf", - "english_translation": "Small Dripleaf" - }, - { - "key": "block.minecraft.smithing_table", - "english_translation": "Smithing Table" - }, - { - "key": "block.minecraft.smoker", - "english_translation": "Smoker" - }, - { - "key": "block.minecraft.smooth_basalt", - "english_translation": "Smooth Basalt" - }, - { - "key": "block.minecraft.smooth_quartz", - "english_translation": "Smooth Quartz Block" - }, - { - "key": "block.minecraft.smooth_quartz_slab", - "english_translation": "Smooth Quartz Slab" - }, - { - "key": "block.minecraft.smooth_quartz_stairs", - "english_translation": "Smooth Quartz Stairs" - }, - { - "key": "block.minecraft.smooth_red_sandstone", - "english_translation": "Smooth Red Sandstone" - }, - { - "key": "block.minecraft.smooth_red_sandstone_slab", - "english_translation": "Smooth Red Sandstone Slab" - }, - { - "key": "block.minecraft.smooth_red_sandstone_stairs", - "english_translation": "Smooth Red Sandstone Stairs" - }, - { - "key": "block.minecraft.smooth_sandstone", - "english_translation": "Smooth Sandstone" - }, - { - "key": "block.minecraft.smooth_sandstone_slab", - "english_translation": "Smooth Sandstone Slab" - }, - { - "key": "block.minecraft.smooth_sandstone_stairs", - "english_translation": "Smooth Sandstone Stairs" - }, - { - "key": "block.minecraft.smooth_stone", - "english_translation": "Smooth Stone" - }, - { - "key": "block.minecraft.smooth_stone_slab", - "english_translation": "Smooth Stone Slab" - }, - { - "key": "block.minecraft.snow", - "english_translation": "Snow" - }, - { - "key": "block.minecraft.snow_block", - "english_translation": "Snow Block" - }, - { - "key": "block.minecraft.soul_campfire", - "english_translation": "Soul Campfire" - }, - { - "key": "block.minecraft.soul_fire", - "english_translation": "Soul Fire" - }, - { - "key": "block.minecraft.soul_lantern", - "english_translation": "Soul Lantern" - }, - { - "key": "block.minecraft.soul_sand", - "english_translation": "Soul Sand" - }, - { - "key": "block.minecraft.soul_soil", - "english_translation": "Soul Soil" - }, - { - "key": "block.minecraft.soul_torch", - "english_translation": "Soul Torch" - }, - { - "key": "block.minecraft.soul_wall_torch", - "english_translation": "Soul Wall Torch" - }, - { - "key": "block.minecraft.spawn.not_valid", - "english_translation": "You have no home bed or charged respawn anchor, or it was obstructed" - }, - { - "key": "block.minecraft.spawner", - "english_translation": "Monster Spawner" - }, - { - "key": "block.minecraft.spawner.desc1", - "english_translation": "Interact with Spawn Egg:" - }, - { - "key": "block.minecraft.spawner.desc2", - "english_translation": "Sets Mob Type" - }, - { - "key": "block.minecraft.sponge", - "english_translation": "Sponge" - }, - { - "key": "block.minecraft.spore_blossom", - "english_translation": "Spore Blossom" - }, - { - "key": "block.minecraft.spruce_button", - "english_translation": "Spruce Button" - }, - { - "key": "block.minecraft.spruce_door", - "english_translation": "Spruce Door" - }, - { - "key": "block.minecraft.spruce_fence", - "english_translation": "Spruce Fence" - }, - { - "key": "block.minecraft.spruce_fence_gate", - "english_translation": "Spruce Fence Gate" - }, - { - "key": "block.minecraft.spruce_hanging_sign", - "english_translation": "Spruce Hanging Sign" - }, - { - "key": "block.minecraft.spruce_leaves", - "english_translation": "Spruce Leaves" - }, - { - "key": "block.minecraft.spruce_log", - "english_translation": "Spruce Log" - }, - { - "key": "block.minecraft.spruce_planks", - "english_translation": "Spruce Planks" - }, - { - "key": "block.minecraft.spruce_pressure_plate", - "english_translation": "Spruce Pressure Plate" - }, - { - "key": "block.minecraft.spruce_sapling", - "english_translation": "Spruce Sapling" - }, - { - "key": "block.minecraft.spruce_sign", - "english_translation": "Spruce Sign" - }, - { - "key": "block.minecraft.spruce_slab", - "english_translation": "Spruce Slab" - }, - { - "key": "block.minecraft.spruce_stairs", - "english_translation": "Spruce Stairs" - }, - { - "key": "block.minecraft.spruce_trapdoor", - "english_translation": "Spruce Trapdoor" - }, - { - "key": "block.minecraft.spruce_wall_hanging_sign", - "english_translation": "Spruce Wall Hanging Sign" - }, - { - "key": "block.minecraft.spruce_wall_sign", - "english_translation": "Spruce Wall Sign" - }, - { - "key": "block.minecraft.spruce_wood", - "english_translation": "Spruce Wood" - }, - { - "key": "block.minecraft.sticky_piston", - "english_translation": "Sticky Piston" - }, - { - "key": "block.minecraft.stone", - "english_translation": "Stone" - }, - { - "key": "block.minecraft.stone_brick_slab", - "english_translation": "Stone Brick Slab" - }, - { - "key": "block.minecraft.stone_brick_stairs", - "english_translation": "Stone Brick Stairs" - }, - { - "key": "block.minecraft.stone_brick_wall", - "english_translation": "Stone Brick Wall" - }, - { - "key": "block.minecraft.stone_bricks", - "english_translation": "Stone Bricks" - }, - { - "key": "block.minecraft.stone_button", - "english_translation": "Stone Button" - }, - { - "key": "block.minecraft.stone_pressure_plate", - "english_translation": "Stone Pressure Plate" - }, - { - "key": "block.minecraft.stone_slab", - "english_translation": "Stone Slab" - }, - { - "key": "block.minecraft.stone_stairs", - "english_translation": "Stone Stairs" - }, - { - "key": "block.minecraft.stonecutter", - "english_translation": "Stonecutter" - }, - { - "key": "block.minecraft.stripped_acacia_log", - "english_translation": "Stripped Acacia Log" - }, - { - "key": "block.minecraft.stripped_acacia_wood", - "english_translation": "Stripped Acacia Wood" - }, - { - "key": "block.minecraft.stripped_bamboo_block", - "english_translation": "Block of Stripped Bamboo" - }, - { - "key": "block.minecraft.stripped_birch_log", - "english_translation": "Stripped Birch Log" - }, - { - "key": "block.minecraft.stripped_birch_wood", - "english_translation": "Stripped Birch Wood" - }, - { - "key": "block.minecraft.stripped_cherry_log", - "english_translation": "Stripped Cherry Log" - }, - { - "key": "block.minecraft.stripped_cherry_wood", - "english_translation": "Stripped Cherry Wood" - }, - { - "key": "block.minecraft.stripped_crimson_hyphae", - "english_translation": "Stripped Crimson Hyphae" - }, - { - "key": "block.minecraft.stripped_crimson_stem", - "english_translation": "Stripped Crimson Stem" - }, - { - "key": "block.minecraft.stripped_dark_oak_log", - "english_translation": "Stripped Dark Oak Log" - }, - { - "key": "block.minecraft.stripped_dark_oak_wood", - "english_translation": "Stripped Dark Oak Wood" - }, - { - "key": "block.minecraft.stripped_jungle_log", - "english_translation": "Stripped Jungle Log" - }, - { - "key": "block.minecraft.stripped_jungle_wood", - "english_translation": "Stripped Jungle Wood" - }, - { - "key": "block.minecraft.stripped_mangrove_log", - "english_translation": "Stripped Mangrove Log" - }, - { - "key": "block.minecraft.stripped_mangrove_wood", - "english_translation": "Stripped Mangrove Wood" - }, - { - "key": "block.minecraft.stripped_oak_log", - "english_translation": "Stripped Oak Log" - }, - { - "key": "block.minecraft.stripped_oak_wood", - "english_translation": "Stripped Oak Wood" - }, - { - "key": "block.minecraft.stripped_spruce_log", - "english_translation": "Stripped Spruce Log" - }, - { - "key": "block.minecraft.stripped_spruce_wood", - "english_translation": "Stripped Spruce Wood" - }, - { - "key": "block.minecraft.stripped_warped_hyphae", - "english_translation": "Stripped Warped Hyphae" - }, - { - "key": "block.minecraft.stripped_warped_stem", - "english_translation": "Stripped Warped Stem" - }, - { - "key": "block.minecraft.structure_block", - "english_translation": "Structure Block" - }, - { - "key": "block.minecraft.structure_void", - "english_translation": "Structure Void" - }, - { - "key": "block.minecraft.sugar_cane", - "english_translation": "Sugar Cane" - }, - { - "key": "block.minecraft.sunflower", - "english_translation": "Sunflower" - }, - { - "key": "block.minecraft.suspicious_sand", - "english_translation": "Suspicious Sand" - }, - { - "key": "block.minecraft.sweet_berry_bush", - "english_translation": "Sweet Berry Bush" - }, - { - "key": "block.minecraft.tall_grass", - "english_translation": "Tall Grass" - }, - { - "key": "block.minecraft.tall_seagrass", - "english_translation": "Tall Seagrass" - }, - { - "key": "block.minecraft.target", - "english_translation": "Target" + "key": "item.minecraft.gray_dye", + "english_translation": "Gray Dye" }, { "key": "block.minecraft.terracotta", "english_translation": "Terracotta" }, { - "key": "block.minecraft.tinted_glass", - "english_translation": "Tinted Glass" + "key": "multiplayer.disconnect.flying", + "english_translation": "Flying is not enabled on this server" }, { - "key": "block.minecraft.tnt", - "english_translation": "TNT" + "key": "key.categories.creative", + "english_translation": "Creative Mode" }, { - "key": "block.minecraft.torch", - "english_translation": "Torch" + "key": "item.minecraft.potion.effect.weakness", + "english_translation": "Potion of Weakness" }, { - "key": "block.minecraft.torchflower", - "english_translation": "Torchflower" + "key": "selectWorld.backupWarning.experimental", + "english_translation": "This world uses experimental settings that could stop working at any time. We cannot guarantee it will load or work. Here be dragons!" }, { - "key": "block.minecraft.torchflower_crop", - "english_translation": "Torchflower Crop" + "key": "block.minecraft.dark_prismarine_slab", + "english_translation": "Dark Prismarine Slab" }, { - "key": "block.minecraft.trapped_chest", - "english_translation": "Trapped Chest" + "key": "subtitles.entity.mooshroom.milk", + "english_translation": "Mooshroom gets milked" }, { - "key": "block.minecraft.tripwire", - "english_translation": "Tripwire" - }, - { - "key": "block.minecraft.tripwire_hook", - "english_translation": "Tripwire Hook" - }, - { - "key": "block.minecraft.tube_coral", - "english_translation": "Tube Coral" - }, - { - "key": "block.minecraft.tube_coral_block", - "english_translation": "Tube Coral Block" - }, - { - "key": "block.minecraft.tube_coral_fan", - "english_translation": "Tube Coral Fan" - }, - { - "key": "block.minecraft.tube_coral_wall_fan", - "english_translation": "Tube Coral Wall Fan" - }, - { - "key": "block.minecraft.tuff", - "english_translation": "Tuff" - }, - { - "key": "block.minecraft.turtle_egg", - "english_translation": "Turtle Egg" - }, - { - "key": "block.minecraft.twisting_vines", - "english_translation": "Twisting Vines" - }, - { - "key": "block.minecraft.twisting_vines_plant", - "english_translation": "Twisting Vines Plant" - }, - { - "key": "block.minecraft.verdant_froglight", - "english_translation": "Verdant Froglight" - }, - { - "key": "block.minecraft.vine", - "english_translation": "Vines" - }, - { - "key": "block.minecraft.void_air", - "english_translation": "Void Air" - }, - { - "key": "block.minecraft.wall_torch", - "english_translation": "Wall Torch" - }, - { - "key": "block.minecraft.warped_button", - "english_translation": "Warped Button" - }, - { - "key": "block.minecraft.warped_door", - "english_translation": "Warped Door" - }, - { - "key": "block.minecraft.warped_fence", - "english_translation": "Warped Fence" - }, - { - "key": "block.minecraft.warped_fence_gate", - "english_translation": "Warped Fence Gate" - }, - { - "key": "block.minecraft.warped_fungus", - "english_translation": "Warped Fungus" - }, - { - "key": "block.minecraft.warped_hanging_sign", - "english_translation": "Warped Hanging Sign" - }, - { - "key": "block.minecraft.warped_hyphae", - "english_translation": "Warped Hyphae" - }, - { - "key": "block.minecraft.warped_nylium", - "english_translation": "Warped Nylium" - }, - { - "key": "block.minecraft.warped_planks", - "english_translation": "Warped Planks" - }, - { - "key": "block.minecraft.warped_pressure_plate", - "english_translation": "Warped Pressure Plate" - }, - { - "key": "block.minecraft.warped_roots", - "english_translation": "Warped Roots" - }, - { - "key": "block.minecraft.warped_sign", - "english_translation": "Warped Sign" - }, - { - "key": "block.minecraft.warped_slab", - "english_translation": "Warped Slab" - }, - { - "key": "block.minecraft.warped_stairs", - "english_translation": "Warped Stairs" - }, - { - "key": "block.minecraft.warped_stem", - "english_translation": "Warped Stem" - }, - { - "key": "block.minecraft.warped_trapdoor", - "english_translation": "Warped Trapdoor" - }, - { - "key": "block.minecraft.warped_wall_hanging_sign", - "english_translation": "Warped Wall Hanging Sign" - }, - { - "key": "block.minecraft.warped_wall_sign", - "english_translation": "Warped Wall Sign" - }, - { - "key": "block.minecraft.warped_wart_block", - "english_translation": "Warped Wart Block" - }, - { - "key": "block.minecraft.water", - "english_translation": "Water" - }, - { - "key": "block.minecraft.water_cauldron", - "english_translation": "Water Cauldron" - }, - { - "key": "block.minecraft.waxed_copper_block", - "english_translation": "Waxed Block of Copper" - }, - { - "key": "block.minecraft.waxed_cut_copper", - "english_translation": "Waxed Cut Copper" - }, - { - "key": "block.minecraft.waxed_cut_copper_slab", - "english_translation": "Waxed Cut Copper Slab" - }, - { - "key": "block.minecraft.waxed_cut_copper_stairs", - "english_translation": "Waxed Cut Copper Stairs" - }, - { - "key": "block.minecraft.waxed_exposed_copper", - "english_translation": "Waxed Exposed Copper" - }, - { - "key": "block.minecraft.waxed_exposed_cut_copper", - "english_translation": "Waxed Exposed Cut Copper" - }, - { - "key": "block.minecraft.waxed_exposed_cut_copper_slab", - "english_translation": "Waxed Exposed Cut Copper Slab" - }, - { - "key": "block.minecraft.waxed_exposed_cut_copper_stairs", - "english_translation": "Waxed Exposed Cut Copper Stairs" - }, - { - "key": "block.minecraft.waxed_oxidized_copper", - "english_translation": "Waxed Oxidized Copper" - }, - { - "key": "block.minecraft.waxed_oxidized_cut_copper", - "english_translation": "Waxed Oxidized Cut Copper" - }, - { - "key": "block.minecraft.waxed_oxidized_cut_copper_slab", - "english_translation": "Waxed Oxidized Cut Copper Slab" - }, - { - "key": "block.minecraft.waxed_oxidized_cut_copper_stairs", - "english_translation": "Waxed Oxidized Cut Copper Stairs" - }, - { - "key": "block.minecraft.waxed_weathered_copper", - "english_translation": "Waxed Weathered Copper" - }, - { - "key": "block.minecraft.waxed_weathered_cut_copper", - "english_translation": "Waxed Weathered Cut Copper" - }, - { - "key": "block.minecraft.waxed_weathered_cut_copper_slab", - "english_translation": "Waxed Weathered Cut Copper Slab" - }, - { - "key": "block.minecraft.waxed_weathered_cut_copper_stairs", - "english_translation": "Waxed Weathered Cut Copper Stairs" - }, - { - "key": "block.minecraft.weathered_copper", - "english_translation": "Weathered Copper" - }, - { - "key": "block.minecraft.weathered_cut_copper", - "english_translation": "Weathered Cut Copper" - }, - { - "key": "block.minecraft.weathered_cut_copper_slab", - "english_translation": "Weathered Cut Copper Slab" - }, - { - "key": "block.minecraft.weathered_cut_copper_stairs", - "english_translation": "Weathered Cut Copper Stairs" - }, - { - "key": "block.minecraft.weeping_vines", - "english_translation": "Weeping Vines" - }, - { - "key": "block.minecraft.weeping_vines_plant", - "english_translation": "Weeping Vines Plant" - }, - { - "key": "block.minecraft.wet_sponge", - "english_translation": "Wet Sponge" - }, - { - "key": "block.minecraft.wheat", - "english_translation": "Wheat Crops" - }, - { - "key": "block.minecraft.white_banner", - "english_translation": "White Banner" - }, - { - "key": "block.minecraft.white_bed", - "english_translation": "White Bed" - }, - { - "key": "block.minecraft.white_candle", - "english_translation": "White Candle" - }, - { - "key": "block.minecraft.white_candle_cake", - "english_translation": "Cake with White Candle" - }, - { - "key": "block.minecraft.white_carpet", - "english_translation": "White Carpet" - }, - { - "key": "block.minecraft.white_concrete", - "english_translation": "White Concrete" - }, - { - "key": "block.minecraft.white_concrete_powder", - "english_translation": "White Concrete Powder" - }, - { - "key": "block.minecraft.white_glazed_terracotta", - "english_translation": "White Glazed Terracotta" - }, - { - "key": "block.minecraft.white_shulker_box", - "english_translation": "White Shulker Box" - }, - { - "key": "block.minecraft.white_stained_glass", - "english_translation": "White Stained Glass" - }, - { - "key": "block.minecraft.white_stained_glass_pane", - "english_translation": "White Stained Glass Pane" - }, - { - "key": "block.minecraft.white_terracotta", - "english_translation": "White Terracotta" - }, - { - "key": "block.minecraft.white_tulip", - "english_translation": "White Tulip" - }, - { - "key": "block.minecraft.white_wool", - "english_translation": "White Wool" - }, - { - "key": "block.minecraft.wither_rose", - "english_translation": "Wither Rose" - }, - { - "key": "block.minecraft.wither_skeleton_skull", - "english_translation": "Wither Skeleton Skull" - }, - { - "key": "block.minecraft.wither_skeleton_wall_skull", - "english_translation": "Wither Skeleton Wall Skull" - }, - { - "key": "block.minecraft.yellow_banner", - "english_translation": "Yellow Banner" - }, - { - "key": "block.minecraft.yellow_bed", - "english_translation": "Yellow Bed" - }, - { - "key": "block.minecraft.yellow_candle", - "english_translation": "Yellow Candle" - }, - { - "key": "block.minecraft.yellow_candle_cake", - "english_translation": "Cake with Yellow Candle" - }, - { - "key": "block.minecraft.yellow_carpet", - "english_translation": "Yellow Carpet" - }, - { - "key": "block.minecraft.yellow_concrete", - "english_translation": "Yellow Concrete" - }, - { - "key": "block.minecraft.yellow_concrete_powder", - "english_translation": "Yellow Concrete Powder" - }, - { - "key": "block.minecraft.yellow_glazed_terracotta", - "english_translation": "Yellow Glazed Terracotta" - }, - { - "key": "block.minecraft.yellow_shulker_box", - "english_translation": "Yellow Shulker Box" - }, - { - "key": "block.minecraft.yellow_stained_glass", - "english_translation": "Yellow Stained Glass" - }, - { - "key": "block.minecraft.yellow_stained_glass_pane", - "english_translation": "Yellow Stained Glass Pane" + "key": "block.minecraft.red_nether_brick_slab", + "english_translation": "Red Nether Brick Slab" }, { "key": "block.minecraft.yellow_terracotta", "english_translation": "Yellow Terracotta" }, { - "key": "block.minecraft.yellow_wool", - "english_translation": "Yellow Wool" + "key": "entity.minecraft.creeper", + "english_translation": "Creeper" }, { - "key": "block.minecraft.zombie_head", - "english_translation": "Zombie Head" + "key": "key.keyboard.world.1", + "english_translation": "World 1" }, { - "key": "block.minecraft.zombie_wall_head", - "english_translation": "Zombie Wall Head" + "key": "key.keyboard.world.2", + "english_translation": "World 2" }, { - "key": "book.byAuthor", - "english_translation": "by %1$s" - }, - { - "key": "book.editTitle", - "english_translation": "Enter Book Title:" - }, - { - "key": "book.finalizeButton", - "english_translation": "Sign and Close" - }, - { - "key": "book.finalizeWarning", - "english_translation": "Note! When you sign the book, it will no longer be editable." - }, - { - "key": "book.generation.0", - "english_translation": "Original" - }, - { - "key": "book.generation.1", - "english_translation": "Copy of original" - }, - { - "key": "book.generation.2", - "english_translation": "Copy of a copy" - }, - { - "key": "book.generation.3", - "english_translation": "Tattered" - }, - { - "key": "book.invalid.tag", - "english_translation": "* Invalid book tag *" - }, - { - "key": "book.pageIndicator", - "english_translation": "Page %1$s of %2$s" - }, - { - "key": "book.signButton", - "english_translation": "Sign" - }, - { - "key": "build.tooHigh", - "english_translation": "Height limit for building is %s" - }, - { - "key": "chat_screen.message", - "english_translation": "Message to send: %s" - }, - { - "key": "chat_screen.title", - "english_translation": "Chat screen" - }, - { - "key": "chat_screen.usage", - "english_translation": "Input message and press Enter to send" - }, - { - "key": "chat.cannotSend", - "english_translation": "Cannot send chat message" - }, - { - "key": "chat.coordinates", - "english_translation": "%s, %s, %s" - }, - { - "key": "chat.coordinates.tooltip", - "english_translation": "Click to teleport" - }, - { - "key": "chat.copy", - "english_translation": "Copy to Clipboard" - }, - { - "key": "chat.copy.click", - "english_translation": "Click to Copy to Clipboard" - }, - { - "key": "chat.deleted_marker", - "english_translation": "This chat message has been deleted by the server." - }, - { - "key": "chat.disabled.chain_broken", - "english_translation": "Chat disabled due to broken chain. Please try reconnecting." - }, - { - "key": "chat.disabled.expiredProfileKey", - "english_translation": "Chat disabled due to expired profile public key. Please try reconnecting." - }, - { - "key": "chat.disabled.launcher", - "english_translation": "Chat disabled by launcher option. Cannot send message" - }, - { - "key": "chat.disabled.missingProfileKey", - "english_translation": "Chat disabled due to missing profile public key. Please try reconnecting." - }, - { - "key": "chat.disabled.options", - "english_translation": "Chat disabled in client options" - }, - { - "key": "chat.disabled.profile", - "english_translation": "Chat not allowed by account settings. Press '%s' again for more information" - }, - { - "key": "chat.disabled.profile.moreInfo", - "english_translation": "Chat not allowed by account settings. Cannot send or view messages." - }, - { - "key": "chat.editBox", - "english_translation": "chat" - }, - { - "key": "chat.filtered", - "english_translation": "Filtered by the server." - }, - { - "key": "chat.filtered_full", - "english_translation": "The server has hidden your message for some players." - }, - { - "key": "chat.link.confirm", - "english_translation": "Are you sure you want to open the following website?" - }, - { - "key": "chat.link.confirmTrusted", - "english_translation": "Do you want to open this link or copy it to your clipboard?" - }, - { - "key": "chat.link.open", - "english_translation": "Open in Browser" - }, - { - "key": "chat.link.warning", - "english_translation": "Never open links from people that you don't trust!" - }, - { - "key": "chat.queue", - "english_translation": "[+%s pending lines]" - }, - { - "key": "chat.square_brackets", - "english_translation": "[%s]" - }, - { - "key": "chat.tag.modified", - "english_translation": "Message modified by the server. Original:" - }, - { - "key": "chat.tag.not_secure", - "english_translation": "Unverified message. Cannot be reported." - }, - { - "key": "chat.tag.system", - "english_translation": "Server message. Cannot be reported." - }, - { - "key": "chat.tag.system_single_player", - "english_translation": "Server message." - }, - { - "key": "chat.type.admin", - "english_translation": "[%s: %s]" - }, - { - "key": "chat.type.advancement.challenge", - "english_translation": "%s has completed the challenge %s" - }, - { - "key": "chat.type.advancement.goal", - "english_translation": "%s has reached the goal %s" - }, - { - "key": "chat.type.advancement.task", - "english_translation": "%s has made the advancement %s" - }, - { - "key": "chat.type.announcement", - "english_translation": "[%s] %s" - }, - { - "key": "chat.type.emote", - "english_translation": "* %s %s" - }, - { - "key": "chat.type.team.hover", - "english_translation": "Message Team" - }, - { - "key": "chat.type.team.sent", - "english_translation": "-> %s <%s> %s" - }, - { - "key": "chat.type.team.text", - "english_translation": "%s <%s> %s" - }, - { - "key": "chat.type.text", - "english_translation": "<%s> %s" - }, - { - "key": "chat.type.text.narrate", - "english_translation": "%s says %s" - }, - { - "key": "clear.failed.multiple", - "english_translation": "No items were found on %s players" - }, - { - "key": "clear.failed.single", - "english_translation": "No items were found on player %s" - }, - { - "key": "color.minecraft.black", - "english_translation": "Black" - }, - { - "key": "color.minecraft.blue", - "english_translation": "Blue" - }, - { - "key": "color.minecraft.brown", - "english_translation": "Brown" - }, - { - "key": "color.minecraft.cyan", - "english_translation": "Cyan" - }, - { - "key": "color.minecraft.gray", - "english_translation": "Gray" - }, - { - "key": "color.minecraft.green", - "english_translation": "Green" - }, - { - "key": "color.minecraft.light_blue", - "english_translation": "Light Blue" - }, - { - "key": "color.minecraft.light_gray", - "english_translation": "Light Gray" - }, - { - "key": "color.minecraft.lime", - "english_translation": "Lime" - }, - { - "key": "color.minecraft.magenta", - "english_translation": "Magenta" - }, - { - "key": "color.minecraft.orange", - "english_translation": "Orange" - }, - { - "key": "color.minecraft.pink", - "english_translation": "Pink" - }, - { - "key": "color.minecraft.purple", - "english_translation": "Purple" - }, - { - "key": "color.minecraft.red", - "english_translation": "Red" - }, - { - "key": "color.minecraft.white", - "english_translation": "White" - }, - { - "key": "color.minecraft.yellow", - "english_translation": "Yellow" - }, - { - "key": "command.context.here", - "english_translation": "<--[HERE]" - }, - { - "key": "command.context.parse_error", - "english_translation": "%s at position %s: %s" - }, - { - "key": "command.exception", - "english_translation": "Could not parse command: %s" - }, - { - "key": "command.expected.separator", - "english_translation": "Expected whitespace to end one argument, but found trailing data" - }, - { - "key": "command.failed", - "english_translation": "An unexpected error occurred trying to execute that command" - }, - { - "key": "command.unknown.argument", - "english_translation": "Incorrect argument for command" - }, - { - "key": "command.unknown.command", - "english_translation": "Unknown or incomplete command, see below for error" - }, - { - "key": "commands.advancement.advancementNotFound", - "english_translation": "No advancement was found by the name '%1$s'" - }, - { - "key": "commands.advancement.criterionNotFound", - "english_translation": "The advancement %1$s does not contain the criterion '%2$s'" - }, - { - "key": "commands.advancement.grant.criterion.to.many.failure", - "english_translation": "Couldn't grant criterion '%s' of advancement %s to %s players as they already have it" - }, - { - "key": "commands.advancement.grant.criterion.to.many.success", - "english_translation": "Granted criterion '%s' of advancement %s to %s players" - }, - { - "key": "commands.advancement.grant.criterion.to.one.failure", - "english_translation": "Couldn't grant criterion '%s' of advancement %s to %s as they already have it" - }, - { - "key": "commands.advancement.grant.criterion.to.one.success", - "english_translation": "Granted criterion '%s' of advancement %s to %s" - }, - { - "key": "commands.advancement.grant.many.to.many.failure", - "english_translation": "Couldn't grant %s advancements to %s players as they already have them" - }, - { - "key": "commands.advancement.grant.many.to.many.success", - "english_translation": "Granted %s advancements to %s players" - }, - { - "key": "commands.advancement.grant.many.to.one.failure", - "english_translation": "Couldn't grant %s advancements to %s as they already have them" - }, - { - "key": "commands.advancement.grant.many.to.one.success", - "english_translation": "Granted %s advancements to %s" - }, - { - "key": "commands.advancement.grant.one.to.many.failure", - "english_translation": "Couldn't grant advancement %s to %s players as they already have it" - }, - { - "key": "commands.advancement.grant.one.to.many.success", - "english_translation": "Granted the advancement %s to %s players" - }, - { - "key": "commands.advancement.grant.one.to.one.failure", - "english_translation": "Couldn't grant advancement %s to %s as they already have it" - }, - { - "key": "commands.advancement.grant.one.to.one.success", - "english_translation": "Granted the advancement %s to %s" - }, - { - "key": "commands.advancement.revoke.criterion.to.many.failure", - "english_translation": "Couldn't revoke criterion '%s' of advancement %s from %s players as they don't have it" - }, - { - "key": "commands.advancement.revoke.criterion.to.many.success", - "english_translation": "Revoked criterion '%s' of advancement %s from %s players" - }, - { - "key": "commands.advancement.revoke.criterion.to.one.failure", - "english_translation": "Couldn't revoke criterion '%s' of advancement %s from %s as they don't have it" - }, - { - "key": "commands.advancement.revoke.criterion.to.one.success", - "english_translation": "Revoked criterion '%s' of advancement %s from %s" - }, - { - "key": "commands.advancement.revoke.many.to.many.failure", - "english_translation": "Couldn't revoke %s advancements from %s players as they don't have them" - }, - { - "key": "commands.advancement.revoke.many.to.many.success", - "english_translation": "Revoked %s advancements from %s players" - }, - { - "key": "commands.advancement.revoke.many.to.one.failure", - "english_translation": "Couldn't revoke %s advancements from %s as they don't have them" - }, - { - "key": "commands.advancement.revoke.many.to.one.success", - "english_translation": "Revoked %s advancements from %s" - }, - { - "key": "commands.advancement.revoke.one.to.many.failure", - "english_translation": "Couldn't revoke advancement %s from %s players as they don't have it" - }, - { - "key": "commands.advancement.revoke.one.to.many.success", - "english_translation": "Revoked the advancement %s from %s players" - }, - { - "key": "commands.advancement.revoke.one.to.one.failure", - "english_translation": "Couldn't revoke advancement %s from %s as they don't have it" - }, - { - "key": "commands.advancement.revoke.one.to.one.success", - "english_translation": "Revoked the advancement %s from %s" - }, - { - "key": "commands.attribute.base_value.get.success", - "english_translation": "Base value of attribute %s for entity %s is %s" - }, - { - "key": "commands.attribute.base_value.set.success", - "english_translation": "Base value for attribute %s for entity %s set to %s" - }, - { - "key": "commands.attribute.failed.entity", - "english_translation": "%s is not a valid entity for this command" - }, - { - "key": "commands.attribute.failed.modifier_already_present", - "english_translation": "Modifier %s is already present on attribute %s for entity %s" - }, - { - "key": "commands.attribute.failed.no_attribute", - "english_translation": "Entity %s has no attribute %s" - }, - { - "key": "commands.attribute.failed.no_modifier", - "english_translation": "Attribute %s for entity %s has no modifier %s" - }, - { - "key": "commands.attribute.modifier.add.success", - "english_translation": "Added modifier %s to attribute %s for entity %s" - }, - { - "key": "commands.attribute.modifier.remove.success", - "english_translation": "Removed modifier %s from attribute %s for entity %s" - }, - { - "key": "commands.attribute.modifier.value.get.success", - "english_translation": "Value of modifier %s on attribute %s for entity %s is %s" - }, - { - "key": "commands.attribute.value.get.success", - "english_translation": "Value of attribute %s for entity %s is %s" - }, - { - "key": "commands.ban.failed", - "english_translation": "Nothing changed. The player is already banned" - }, - { - "key": "commands.ban.success", - "english_translation": "Banned %s: %s" - }, - { - "key": "commands.banip.failed", - "english_translation": "Nothing changed. That IP is already banned" - }, - { - "key": "commands.banip.info", - "english_translation": "This ban affects %s player(s): %s" - }, - { - "key": "commands.banip.invalid", - "english_translation": "Invalid IP address or unknown player" - }, - { - "key": "commands.banip.success", - "english_translation": "Banned IP %s: %s" - }, - { - "key": "commands.banlist.entry", - "english_translation": "%s was banned by %s: %s" - }, - { - "key": "commands.banlist.list", - "english_translation": "There is/are %s ban(s):" - }, - { - "key": "commands.banlist.none", - "english_translation": "There are no bans" - }, - { - "key": "commands.bossbar.create.failed", - "english_translation": "A bossbar already exists with the ID '%s'" - }, - { - "key": "commands.bossbar.create.success", - "english_translation": "Created custom bossbar %s" - }, - { - "key": "commands.bossbar.get.max", - "english_translation": "Custom bossbar %s has a maximum of %s" - }, - { - "key": "commands.bossbar.get.players.none", - "english_translation": "Custom bossbar %s has no players currently online" - }, - { - "key": "commands.bossbar.get.players.some", - "english_translation": "Custom bossbar %s has %s players currently online: %s" - }, - { - "key": "commands.bossbar.get.value", - "english_translation": "Custom bossbar %s has a value of %s" - }, - { - "key": "commands.bossbar.get.visible.hidden", - "english_translation": "Custom bossbar %s is currently hidden" - }, - { - "key": "commands.bossbar.get.visible.visible", - "english_translation": "Custom bossbar %s is currently shown" - }, - { - "key": "commands.bossbar.list.bars.none", - "english_translation": "There are no custom bossbars active" - }, - { - "key": "commands.bossbar.list.bars.some", - "english_translation": "There are %s custom bossbars active: %s" - }, - { - "key": "commands.bossbar.remove.success", - "english_translation": "Removed custom bossbar %s" - }, - { - "key": "commands.bossbar.set.color.success", - "english_translation": "Custom bossbar %s has changed color" - }, - { - "key": "commands.bossbar.set.color.unchanged", - "english_translation": "Nothing changed. That's already the color of this bossbar" - }, - { - "key": "commands.bossbar.set.max.success", - "english_translation": "Custom bossbar %s has changed maximum to %s" - }, - { - "key": "commands.bossbar.set.max.unchanged", - "english_translation": "Nothing changed. That's already the max of this bossbar" - }, - { - "key": "commands.bossbar.set.name.success", - "english_translation": "Custom bossbar %s has been renamed" - }, - { - "key": "commands.bossbar.set.name.unchanged", - "english_translation": "Nothing changed. That's already the name of this bossbar" - }, - { - "key": "commands.bossbar.set.players.success.none", - "english_translation": "Custom bossbar %s no longer has any players" - }, - { - "key": "commands.bossbar.set.players.success.some", - "english_translation": "Custom bossbar %s now has %s players: %s" - }, - { - "key": "commands.bossbar.set.players.unchanged", - "english_translation": "Nothing changed. Those players are already on the bossbar with nobody to add or remove" - }, - { - "key": "commands.bossbar.set.style.success", - "english_translation": "Custom bossbar %s has changed style" - }, - { - "key": "commands.bossbar.set.style.unchanged", - "english_translation": "Nothing changed. That's already the style of this bossbar" - }, - { - "key": "commands.bossbar.set.value.success", - "english_translation": "Custom bossbar %s has changed value to %s" - }, - { - "key": "commands.bossbar.set.value.unchanged", - "english_translation": "Nothing changed. That's already the value of this bossbar" - }, - { - "key": "commands.bossbar.set.visibility.unchanged.hidden", - "english_translation": "Nothing changed. The bossbar is already hidden" - }, - { - "key": "commands.bossbar.set.visibility.unchanged.visible", - "english_translation": "Nothing changed. The bossbar is already visible" - }, - { - "key": "commands.bossbar.set.visible.success.hidden", - "english_translation": "Custom bossbar %s is now hidden" - }, - { - "key": "commands.bossbar.set.visible.success.visible", - "english_translation": "Custom bossbar %s is now visible" - }, - { - "key": "commands.bossbar.unknown", - "english_translation": "No bossbar exists with the ID '%s'" - }, - { - "key": "commands.clear.success.multiple", - "english_translation": "Removed %s item(s) from %s players" - }, - { - "key": "commands.clear.success.single", - "english_translation": "Removed %s item(s) from player %s" - }, - { - "key": "commands.clear.test.multiple", - "english_translation": "Found %s matching item(s) on %s players" - }, - { - "key": "commands.clear.test.single", - "english_translation": "Found %s matching item(s) on player %s" - }, - { - "key": "commands.clone.failed", - "english_translation": "No blocks were cloned" - }, - { - "key": "commands.clone.overlap", - "english_translation": "The source and destination areas cannot overlap" - }, - { - "key": "commands.clone.success", - "english_translation": "Successfully cloned %s blocks" - }, - { - "key": "commands.clone.toobig", - "english_translation": "Too many blocks in the specified area (maximum %s, specified %s)" - }, - { - "key": "commands.damage.invulnerable", - "english_translation": "Target is invulnerable to the given damage type" - }, - { - "key": "commands.damage.success", - "english_translation": "Applied %s damage to %s" - }, - { - "key": "commands.data.block.get", - "english_translation": "%s on block %s, %s, %s after scale factor of %s is %s" - }, - { - "key": "commands.data.block.invalid", - "english_translation": "The target block is not a block entity" - }, - { - "key": "commands.data.block.modified", - "english_translation": "Modified block data of %s, %s, %s" - }, - { - "key": "commands.data.block.query", - "english_translation": "%s, %s, %s has the following block data: %s" - }, - { - "key": "commands.data.entity.get", - "english_translation": "%s on %s after scale factor of %s is %s" - }, - { - "key": "commands.data.entity.invalid", - "english_translation": "Unable to modify player data" - }, - { - "key": "commands.data.entity.modified", - "english_translation": "Modified entity data of %s" - }, - { - "key": "commands.data.entity.query", - "english_translation": "%s has the following entity data: %s" - }, - { - "key": "commands.data.get.invalid", - "english_translation": "Can't get %s; only numeric tags are allowed" - }, - { - "key": "commands.data.get.multiple", - "english_translation": "This argument accepts a single NBT value" - }, - { - "key": "commands.data.get.unknown", - "english_translation": "Can't get %s; tag doesn't exist" - }, - { - "key": "commands.data.merge.failed", - "english_translation": "Nothing changed. The specified properties already have these values" - }, - { - "key": "commands.data.modify.expected_list", - "english_translation": "Expected list, got: %s" - }, - { - "key": "commands.data.modify.expected_object", - "english_translation": "Expected object, got: %s" - }, - { - "key": "commands.data.modify.expected_value", - "english_translation": "Expected value, got: %s" - }, - { - "key": "commands.data.modify.invalid_index", - "english_translation": "Invalid list index: %s" - }, - { - "key": "commands.data.storage.get", - "english_translation": "%s in storage %s after scale factor of %s is %s" - }, - { - "key": "commands.data.storage.modified", - "english_translation": "Modified storage %s" - }, - { - "key": "commands.data.storage.query", - "english_translation": "Storage %s has the following contents: %s" - }, - { - "key": "commands.datapack.disable.failed", - "english_translation": "Pack '%s' is not enabled!" - }, - { - "key": "commands.datapack.enable.failed", - "english_translation": "Pack '%s' is already enabled!" - }, - { - "key": "commands.datapack.enable.failed.no_flags", - "english_translation": "Pack '%s' cannot be enabled, since required flags are not enabled in this world: %s!" - }, - { - "key": "commands.datapack.list.available.none", - "english_translation": "There are no more data packs available" - }, - { - "key": "commands.datapack.list.available.success", - "english_translation": "There are %s data packs available: %s" - }, - { - "key": "commands.datapack.list.enabled.none", - "english_translation": "There are no data packs enabled" - }, - { - "key": "commands.datapack.list.enabled.success", - "english_translation": "There are %s data packs enabled: %s" - }, - { - "key": "commands.datapack.modify.disable", - "english_translation": "Disabling data pack %s" - }, - { - "key": "commands.datapack.modify.enable", - "english_translation": "Enabling data pack %s" - }, - { - "key": "commands.datapack.unknown", - "english_translation": "Unknown data pack '%s'" - }, - { - "key": "commands.debug.alreadyRunning", - "english_translation": "The tick profiler is already started" - }, - { - "key": "commands.debug.function.noRecursion", - "english_translation": "Can't trace from inside of function" - }, - { - "key": "commands.debug.function.success.multiple", - "english_translation": "Traced %s command(s) from %s functions to output file %s" - }, - { - "key": "commands.debug.function.success.single", - "english_translation": "Traced %s command(s) from function '%s' to output file %s" - }, - { - "key": "commands.debug.function.traceFailed", - "english_translation": "Failed to trace function" - }, - { - "key": "commands.debug.notRunning", - "english_translation": "The tick profiler hasn't started" - }, - { - "key": "commands.debug.started", - "english_translation": "Started tick profiling" - }, - { - "key": "commands.debug.stopped", - "english_translation": "Stopped tick profiling after %s seconds and %s ticks (%s ticks per second)" - }, - { - "key": "commands.defaultgamemode.success", - "english_translation": "The default game mode is now %s" - }, - { - "key": "commands.deop.failed", - "english_translation": "Nothing changed. The player is not an operator" - }, - { - "key": "commands.deop.success", - "english_translation": "Made %s no longer a server operator" - }, - { - "key": "commands.difficulty.failure", - "english_translation": "The difficulty did not change; it is already set to %s" - }, - { - "key": "commands.difficulty.query", - "english_translation": "The difficulty is %s" - }, - { - "key": "commands.difficulty.success", - "english_translation": "The difficulty has been set to %s" - }, - { - "key": "commands.drop.no_held_items", - "english_translation": "Entity can't hold any items" - }, - { - "key": "commands.drop.no_loot_table", - "english_translation": "Entity %s has no loot table" - }, - { - "key": "commands.drop.success.multiple", - "english_translation": "Dropped %s items" - }, - { - "key": "commands.drop.success.multiple_with_table", - "english_translation": "Dropped %s items from loot table %s" - }, - { - "key": "commands.drop.success.single", - "english_translation": "Dropped %s %s" - }, - { - "key": "commands.drop.success.single_with_table", - "english_translation": "Dropped %s %s from loot table %s" - }, - { - "key": "commands.effect.clear.everything.failed", - "english_translation": "Target has no effects to remove" - }, - { - "key": "commands.effect.clear.everything.success.multiple", - "english_translation": "Removed every effect from %s targets" - }, - { - "key": "commands.effect.clear.everything.success.single", - "english_translation": "Removed every effect from %s" - }, - { - "key": "commands.effect.clear.specific.failed", - "english_translation": "Target doesn't have the requested effect" - }, - { - "key": "commands.effect.clear.specific.success.multiple", - "english_translation": "Removed effect %s from %s targets" - }, - { - "key": "commands.effect.clear.specific.success.single", - "english_translation": "Removed effect %s from %s" - }, - { - "key": "commands.effect.give.failed", - "english_translation": "Unable to apply this effect (target is either immune to effects, or has something stronger)" - }, - { - "key": "commands.effect.give.success.multiple", - "english_translation": "Applied effect %s to %s targets" - }, - { - "key": "commands.effect.give.success.single", - "english_translation": "Applied effect %s to %s" - }, - { - "key": "commands.enchant.failed", - "english_translation": "Nothing changed. Targets either have no item in their hands or the enchantment could not be applied" - }, - { - "key": "commands.enchant.failed.entity", - "english_translation": "%s is not a valid entity for this command" - }, - { - "key": "commands.enchant.failed.incompatible", - "english_translation": "%s cannot support that enchantment" - }, - { - "key": "commands.enchant.failed.itemless", - "english_translation": "%s is not holding any item" - }, - { - "key": "commands.enchant.failed.level", - "english_translation": "%s is higher than the maximum level of %s supported by that enchantment" - }, - { - "key": "commands.enchant.success.multiple", - "english_translation": "Applied enchantment %s to %s entities" - }, - { - "key": "commands.enchant.success.single", - "english_translation": "Applied enchantment %s to %s's item" - }, - { - "key": "commands.execute.blocks.toobig", - "english_translation": "Too many blocks in the specified area (maximum %s, specified %s)" - }, - { - "key": "commands.execute.conditional.fail", - "english_translation": "Test failed" - }, - { - "key": "commands.execute.conditional.fail_count", - "english_translation": "Test failed, count: %s" - }, - { - "key": "commands.execute.conditional.pass", - "english_translation": "Test passed" - }, - { - "key": "commands.execute.conditional.pass_count", - "english_translation": "Test passed, count: %s" - }, - { - "key": "commands.experience.add.levels.success.multiple", - "english_translation": "Gave %s experience levels to %s players" - }, - { - "key": "commands.experience.add.levels.success.single", - "english_translation": "Gave %s experience levels to %s" - }, - { - "key": "commands.experience.add.points.success.multiple", - "english_translation": "Gave %s experience points to %s players" - }, - { - "key": "commands.experience.add.points.success.single", - "english_translation": "Gave %s experience points to %s" - }, - { - "key": "commands.experience.query.levels", - "english_translation": "%s has %s experience levels" - }, - { - "key": "commands.experience.query.points", - "english_translation": "%s has %s experience points" - }, - { - "key": "commands.experience.set.levels.success.multiple", - "english_translation": "Set %s experience levels on %s players" - }, - { - "key": "commands.experience.set.levels.success.single", - "english_translation": "Set %s experience levels on %s" - }, - { - "key": "commands.experience.set.points.invalid", - "english_translation": "Cannot set experience points above the maximum points for the player's current level" - }, - { - "key": "commands.experience.set.points.success.multiple", - "english_translation": "Set %s experience points on %s players" - }, - { - "key": "commands.experience.set.points.success.single", - "english_translation": "Set %s experience points on %s" - }, - { - "key": "commands.fill.failed", - "english_translation": "No blocks were filled" - }, - { - "key": "commands.fill.success", - "english_translation": "Successfully filled %s blocks" - }, - { - "key": "commands.fill.toobig", - "english_translation": "Too many blocks in the specified area (maximum %s, specified %s)" - }, - { - "key": "commands.fillbiome.success", - "english_translation": "Biomes set between %s, %s, %s and %s, %s, %s" - }, - { - "key": "commands.fillbiome.success.count", - "english_translation": "%s biome entries set between %s, %s, %s and %s, %s, %s" - }, - { - "key": "commands.fillbiome.toobig", - "english_translation": "Too many blocks in the specified volume (maximum %s, specified %s)" - }, - { - "key": "commands.forceload.added.failure", - "english_translation": "No chunks were marked for force loading" - }, - { - "key": "commands.forceload.added.multiple", - "english_translation": "Marked %s chunks in %s from %s to %s to be force loaded" - }, - { - "key": "commands.forceload.added.none", - "english_translation": "No force loaded chunks were found in %s" - }, - { - "key": "commands.forceload.added.single", - "english_translation": "Marked chunk %s in %s to be force loaded" - }, - { - "key": "commands.forceload.list.multiple", - "english_translation": "%s force loaded chunks were found in %s at: %s" - }, - { - "key": "commands.forceload.list.single", - "english_translation": "A force loaded chunk was found in %s at: %s" - }, - { - "key": "commands.forceload.query.failure", - "english_translation": "Chunk at %s in %s is not marked for force loading" - }, - { - "key": "commands.forceload.query.success", - "english_translation": "Chunk at %s in %s is marked for force loading" - }, - { - "key": "commands.forceload.removed.all", - "english_translation": "Unmarked all force loaded chunks in %s" - }, - { - "key": "commands.forceload.removed.failure", - "english_translation": "No chunks were removed from force loading" - }, - { - "key": "commands.forceload.removed.multiple", - "english_translation": "Unmarked %s chunks in %s from %s to %s for force loading" - }, - { - "key": "commands.forceload.removed.single", - "english_translation": "Unmarked chunk %s in %s for force loading" - }, - { - "key": "commands.forceload.toobig", - "english_translation": "Too many chunks in the specified area (maximum %s, specified %s)" - }, - { - "key": "commands.function.success.multiple", - "english_translation": "Executed %s command(s) from %s functions" - }, - { - "key": "commands.function.success.single", - "english_translation": "Executed %s command(s) from function '%s'" - }, - { - "key": "commands.gamemode.success.other", - "english_translation": "Set %s's game mode to %s" - }, - { - "key": "commands.gamemode.success.self", - "english_translation": "Set own game mode to %s" - }, - { - "key": "commands.gamerule.query", - "english_translation": "Gamerule %s is currently set to: %s" - }, - { - "key": "commands.gamerule.set", - "english_translation": "Gamerule %s is now set to: %s" - }, - { - "key": "commands.give.failed.toomanyitems", - "english_translation": "Can't give more than %s of %s" - }, - { - "key": "commands.give.success.multiple", - "english_translation": "Gave %s %s to %s players" - }, - { - "key": "commands.give.success.single", - "english_translation": "Gave %s %s to %s" - }, - { - "key": "commands.help.failed", - "english_translation": "Unknown command or insufficient permissions" - }, - { - "key": "commands.item.block.set.success", - "english_translation": "Replaced a slot at %s, %s, %s with %s" - }, - { - "key": "commands.item.entity.set.success.multiple", - "english_translation": "Replaced a slot on %s entities with %s" - }, - { - "key": "commands.item.entity.set.success.single", - "english_translation": "Replaced a slot on %s with %s" - }, - { - "key": "commands.item.source.no_such_slot", - "english_translation": "The source does not have slot %s" - }, - { - "key": "commands.item.source.not_a_container", - "english_translation": "Source position %s, %s, %s is not a container" - }, - { - "key": "commands.item.target.no_changed.known_item", - "english_translation": "No targets accepted item %s into slot %s" - }, - { - "key": "commands.item.target.no_changes", - "english_translation": "No targets accepted item into slot %s" - }, - { - "key": "commands.item.target.no_such_slot", - "english_translation": "The target does not have slot %s" - }, - { - "key": "commands.item.target.not_a_container", - "english_translation": "Target position %s, %s, %s is not a container" - }, - { - "key": "commands.jfr.dump.failed", - "english_translation": "Failed to dump JFR recording: %s" - }, - { - "key": "commands.jfr.start.failed", - "english_translation": "Failed to start JFR profiling" - }, - { - "key": "commands.jfr.started", - "english_translation": "JFR profiling started" - }, - { - "key": "commands.jfr.stopped", - "english_translation": "JFR profiling stopped and dumped to %s" - }, - { - "key": "commands.kick.success", - "english_translation": "Kicked %s: %s" - }, - { - "key": "commands.kill.success.multiple", - "english_translation": "Killed %s entities" - }, - { - "key": "commands.kill.success.single", - "english_translation": "Killed %s" - }, - { - "key": "commands.list.nameAndId", - "english_translation": "%s (%s)" - }, - { - "key": "commands.list.players", - "english_translation": "There are %s of a max of %s players online: %s" - }, - { - "key": "commands.locate.biome.not_found", - "english_translation": "Could not find a biome of type \"%s\" within reasonable distance" - }, - { - "key": "commands.locate.biome.success", - "english_translation": "The nearest %s is at %s (%s blocks away)" - }, - { - "key": "commands.locate.poi.not_found", - "english_translation": "Could not find a point of interest of type \"%s\" within reasonable distance" - }, - { - "key": "commands.locate.poi.success", - "english_translation": "The nearest %s is at %s (%s blocks away)" - }, - { - "key": "commands.locate.structure.invalid", - "english_translation": "There is no structure with type \"%s\"" - }, - { - "key": "commands.locate.structure.not_found", - "english_translation": "Could not find a structure of type \"%s\" nearby" - }, - { - "key": "commands.locate.structure.success", - "english_translation": "The nearest %s is at %s (%s blocks away)" - }, - { - "key": "commands.message.display.incoming", - "english_translation": "%s whispers to you: %s" - }, - { - "key": "commands.message.display.outgoing", - "english_translation": "You whisper to %s: %s" - }, - { - "key": "commands.op.failed", - "english_translation": "Nothing changed. The player already is an operator" - }, - { - "key": "commands.op.success", - "english_translation": "Made %s a server operator" - }, - { - "key": "commands.pardon.failed", - "english_translation": "Nothing changed. The player isn't banned" - }, - { - "key": "commands.pardon.success", - "english_translation": "Unbanned %s" - }, - { - "key": "commands.pardonip.failed", - "english_translation": "Nothing changed. That IP isn't banned" - }, - { - "key": "commands.pardonip.invalid", - "english_translation": "Invalid IP address" - }, - { - "key": "commands.pardonip.success", - "english_translation": "Unbanned IP %s" - }, - { - "key": "commands.particle.failed", - "english_translation": "The particle was not visible for anybody" - }, - { - "key": "commands.particle.success", - "english_translation": "Displaying particle %s" - }, - { - "key": "commands.perf.alreadyRunning", - "english_translation": "The performance profiler is already started" - }, - { - "key": "commands.perf.notRunning", - "english_translation": "The performance profiler hasn't started" - }, - { - "key": "commands.perf.reportFailed", - "english_translation": "Failed to create debug report" - }, - { - "key": "commands.perf.reportSaved", - "english_translation": "Created debug report in %s" - }, - { - "key": "commands.perf.started", - "english_translation": "Started 10 second performance profiling run (use '/perf stop' to stop early)" - }, - { - "key": "commands.perf.stopped", - "english_translation": "Stopped performance profiling after %s second(s) and %s tick(s) (%s tick(s) per second)" - }, - { - "key": "commands.place.feature.failed", - "english_translation": "Failed to place feature" - }, - { - "key": "commands.place.feature.invalid", - "english_translation": "There is no feature with type \"%s\"" - }, - { - "key": "commands.place.feature.success", - "english_translation": "Placed \"%s\" at %s, %s, %s" - }, - { - "key": "commands.place.jigsaw.failed", - "english_translation": "Failed to generate jigsaw" - }, - { - "key": "commands.place.jigsaw.invalid", - "english_translation": "There is no template pool with type \"%s\"" - }, - { - "key": "commands.place.jigsaw.success", - "english_translation": "Generated jigsaw at %s, %s, %s" - }, - { - "key": "commands.place.structure.failed", - "english_translation": "Failed to place structure" - }, - { - "key": "commands.place.structure.invalid", - "english_translation": "There is no structure with type \"%s\"" - }, - { - "key": "commands.place.structure.success", - "english_translation": "Generated structure \"%s\" at %s, %s, %s" - }, - { - "key": "commands.place.template.failed", - "english_translation": "Failed to place template" - }, - { - "key": "commands.place.template.invalid", - "english_translation": "There is no template with id \"%s\"" - }, - { - "key": "commands.place.template.success", - "english_translation": "Loaded template \"%s\" at %s, %s, %s" - }, - { - "key": "commands.playsound.failed", - "english_translation": "The sound is too far away to be heard" - }, - { - "key": "commands.playsound.success.multiple", - "english_translation": "Played sound %s to %s players" - }, - { - "key": "commands.playsound.success.single", - "english_translation": "Played sound %s to %s" - }, - { - "key": "commands.publish.alreadyPublished", - "english_translation": "Multiplayer game is already hosted on port %s" - }, - { - "key": "commands.publish.failed", - "english_translation": "Unable to host local game" - }, - { - "key": "commands.publish.started", - "english_translation": "Local game hosted on port %s" - }, - { - "key": "commands.publish.success", - "english_translation": "Multiplayer game is now hosted on port %s" - }, - { - "key": "commands.recipe.give.failed", - "english_translation": "No new recipes were learned" - }, - { - "key": "commands.recipe.give.success.multiple", - "english_translation": "Unlocked %s recipes for %s players" - }, - { - "key": "commands.recipe.give.success.single", - "english_translation": "Unlocked %s recipes for %s" - }, - { - "key": "commands.recipe.take.failed", - "english_translation": "No recipes could be forgotten" - }, - { - "key": "commands.recipe.take.success.multiple", - "english_translation": "Took %s recipes from %s players" - }, - { - "key": "commands.recipe.take.success.single", - "english_translation": "Took %s recipes from %s" - }, - { - "key": "commands.reload.failure", - "english_translation": "Reload failed; keeping old data" - }, - { - "key": "commands.reload.success", - "english_translation": "Reloading!" - }, - { - "key": "commands.ride.already_riding", - "english_translation": "%s is already riding %s" - }, - { - "key": "commands.ride.dismount.success", - "english_translation": "%s stopped riding %s" - }, - { - "key": "commands.ride.mount.failure.cant_ride_players", - "english_translation": "Players can't be ridden" - }, - { - "key": "commands.ride.mount.failure.generic", - "english_translation": "%s couldn't start riding %s" - }, - { - "key": "commands.ride.mount.failure.loop", - "english_translation": "Can't mount entity on itself or any of its passengers" - }, - { - "key": "commands.ride.mount.failure.wrong_dimension", - "english_translation": "Can't mount entity in different dimension" - }, - { - "key": "commands.ride.mount.success", - "english_translation": "%s started riding %s" - }, - { - "key": "commands.ride.not_riding", - "english_translation": "%s is not riding any vehicle" - }, - { - "key": "commands.save.alreadyOff", - "english_translation": "Saving is already turned off" - }, - { - "key": "commands.save.alreadyOn", - "english_translation": "Saving is already turned on" - }, - { - "key": "commands.save.disabled", - "english_translation": "Automatic saving is now disabled" - }, - { - "key": "commands.save.enabled", - "english_translation": "Automatic saving is now enabled" - }, - { - "key": "commands.save.failed", - "english_translation": "Unable to save the game (is there enough disk space?)" - }, - { - "key": "commands.save.saving", - "english_translation": "Saving the game (this may take a moment!)" - }, - { - "key": "commands.save.success", - "english_translation": "Saved the game" - }, - { - "key": "commands.schedule.cleared.failure", - "english_translation": "No schedules with id %s" - }, - { - "key": "commands.schedule.cleared.success", - "english_translation": "Removed %s schedule(s) with id %s" + "key": "block.minecraft.banner.straight_cross.cyan", + "english_translation": "Cyan Cross" }, { "key": "commands.schedule.created.function", "english_translation": "Scheduled function '%s' in %s tick(s) at gametime %s" }, { - "key": "commands.schedule.created.tag", - "english_translation": "Scheduled tag '%s' in %s ticks at gametime %s" + "key": "deathScreen.quit.confirm", + "english_translation": "Are you sure you want to quit?" }, { - "key": "commands.schedule.same_tick", - "english_translation": "Can't schedule for current tick" + "key": "options.onlyShowSecureChat.tooltip", + "english_translation": "Only display messages from other players that can be verified to have been sent by that player, and have not been modified." }, { - "key": "commands.scoreboard.objectives.add.duplicate", - "english_translation": "An objective already exists by that name" + "key": "commands.data.modify.invalid_substring", + "english_translation": "Invalid substring indices: %s to %s" }, { - "key": "commands.scoreboard.objectives.add.success", - "english_translation": "Created new objective %s" + "key": "entity.minecraft.allay", + "english_translation": "Allay" }, { - "key": "commands.scoreboard.objectives.display.alreadyEmpty", - "english_translation": "Nothing changed. That display slot is already empty" + "key": "commands.bossbar.remove.success", + "english_translation": "Removed custom bossbar %s" }, { - "key": "commands.scoreboard.objectives.display.alreadySet", - "english_translation": "Nothing changed. That display slot is already showing that objective" + "key": "block.minecraft.sculk_sensor", + "english_translation": "Sculk Sensor" }, { - "key": "commands.scoreboard.objectives.display.cleared", - "english_translation": "Cleared any objectives in display slot %s" + "key": "gamerule.disableElytraMovementCheck", + "english_translation": "Disable elytra movement check" }, { - "key": "commands.scoreboard.objectives.display.set", - "english_translation": "Set display slot %s to show objective %s" + "key": "advancements.nether.create_full_beacon.description", + "english_translation": "Bring a Beacon to full power" }, { - "key": "commands.scoreboard.objectives.list.empty", - "english_translation": "There are no objectives" + "key": "block.minecraft.banner.creeper.orange", + "english_translation": "Orange Creeper Charge" }, { - "key": "commands.scoreboard.objectives.list.success", - "english_translation": "There are %s objectives: %s" + "key": "addServer.enterIp", + "english_translation": "Server Address" }, { - "key": "commands.scoreboard.objectives.modify.displayname", - "english_translation": "Changed the display name of %s to %s" + "key": "item.minecraft.charcoal", + "english_translation": "Charcoal" }, { - "key": "commands.scoreboard.objectives.modify.rendertype", - "english_translation": "Changed the render type of objective %s" + "key": "stat.minecraft.clean_shulker_box", + "english_translation": "Shulker Boxes Cleaned" }, { - "key": "commands.scoreboard.objectives.remove.success", - "english_translation": "Removed objective %s" + "key": "item.minecraft.tipped_arrow.effect.night_vision", + "english_translation": "Arrow of Night Vision" }, { - "key": "commands.scoreboard.players.add.success.multiple", - "english_translation": "Added %s to %s for %s entities" + "key": "block.minecraft.stone_brick_slab", + "english_translation": "Stone Brick Slab" }, { - "key": "commands.scoreboard.players.add.success.single", - "english_translation": "Added %s to %s for %s (now %s)" + "key": "key.keyboard.left", + "english_translation": "Left Arrow" }, { - "key": "commands.scoreboard.players.enable.failed", - "english_translation": "Nothing changed. That trigger is already enabled" + "key": "block.minecraft.banner.mojang.cyan", + "english_translation": "Cyan Thing" }, { - "key": "commands.scoreboard.players.enable.invalid", - "english_translation": "Enable only works on trigger-objectives" + "key": "subtitles.entity.iron_golem.hurt", + "english_translation": "Iron Golem hurts" }, { - "key": "commands.scoreboard.players.enable.success.multiple", - "english_translation": "Enabled trigger %s for %s entities" + "key": "selectWorld.loading_list", + "english_translation": "Loading world list" }, { - "key": "commands.scoreboard.players.enable.success.single", - "english_translation": "Enabled trigger %s for %s" + "key": "block.minecraft.white_stained_glass", + "english_translation": "White Stained Glass" }, { - "key": "commands.scoreboard.players.get.null", - "english_translation": "Can't get value of %s for %s; none is set" + "key": "item.minecraft.bowl", + "english_translation": "Bowl" }, { - "key": "commands.scoreboard.players.get.success", - "english_translation": "%s has %s %s" + "key": "item.minecraft.bone_meal", + "english_translation": "Bone Meal" }, { - "key": "commands.scoreboard.players.list.empty", - "english_translation": "There are no tracked entities" + "key": "block.minecraft.cherry_wall_sign", + "english_translation": "Cherry Wall Sign" }, { - "key": "commands.scoreboard.players.list.entity.empty", - "english_translation": "%s has no scores to show" + "key": "mco.configure.world.subscription.timeleft", + "english_translation": "Time left" }, { - "key": "commands.scoreboard.players.list.entity.entry", - "english_translation": "%s: %s" + "key": "multiplayer.status.no_connection", + "english_translation": "(no connection)" }, { - "key": "commands.scoreboard.players.list.entity.success", - "english_translation": "%s has %s scores:" + "key": "subtitles.block.respawn_anchor.deplete", + "english_translation": "Respawn Anchor depletes" }, { - "key": "commands.scoreboard.players.list.success", - "english_translation": "There are %s tracked entities: %s" + "key": "createWorld.customize.custom.useOceanRuins", + "english_translation": "Ocean Ruins" }, { - "key": "commands.scoreboard.players.operation.success.multiple", - "english_translation": "Updated %s for %s entities" + "key": "arguments.objective.readonly", + "english_translation": "Scoreboard objective '%s' is read-only" }, { - "key": "commands.scoreboard.players.operation.success.single", - "english_translation": "Set %s for %s to %s" - }, - { - "key": "commands.scoreboard.players.remove.success.multiple", - "english_translation": "Removed %s from %s for %s entities" - }, - { - "key": "commands.scoreboard.players.remove.success.single", - "english_translation": "Removed %s from %s for %s (now %s)" - }, - { - "key": "commands.scoreboard.players.reset.all.multiple", - "english_translation": "Reset all scores for %s entities" - }, - { - "key": "commands.scoreboard.players.reset.all.single", - "english_translation": "Reset all scores for %s" - }, - { - "key": "commands.scoreboard.players.reset.specific.multiple", - "english_translation": "Reset %s for %s entities" - }, - { - "key": "commands.scoreboard.players.reset.specific.single", - "english_translation": "Reset %s for %s" - }, - { - "key": "commands.scoreboard.players.set.success.multiple", - "english_translation": "Set %s for %s entities to %s" - }, - { - "key": "commands.scoreboard.players.set.success.single", - "english_translation": "Set %s for %s to %s" - }, - { - "key": "commands.seed.success", - "english_translation": "Seed: %s" - }, - { - "key": "commands.setblock.failed", - "english_translation": "Could not set the block" - }, - { - "key": "commands.setblock.success", - "english_translation": "Changed the block at %s, %s, %s" - }, - { - "key": "commands.setidletimeout.success", - "english_translation": "The player idle timeout is now %s minute(s)" - }, - { - "key": "commands.setworldspawn.success", - "english_translation": "Set the world spawn point to %s, %s, %s [%s]" - }, - { - "key": "commands.spawnpoint.success.multiple", - "english_translation": "Set spawn point to %s, %s, %s [%s] in %s for %s players" - }, - { - "key": "commands.spawnpoint.success.single", - "english_translation": "Set spawn point to %s, %s, %s [%s] in %s for %s" - }, - { - "key": "commands.spectate.not_spectator", - "english_translation": "%s is not in spectator mode" - }, - { - "key": "commands.spectate.self", - "english_translation": "Cannot spectate yourself" - }, - { - "key": "commands.spectate.success.started", - "english_translation": "Now spectating %s" - }, - { - "key": "commands.spectate.success.stopped", - "english_translation": "No longer spectating an entity" - }, - { - "key": "commands.spreadplayers.failed.entities", - "english_translation": "Could not spread %s entity/entities around %s, %s (too many entities for space - try using spread of at most %s)" - }, - { - "key": "commands.spreadplayers.failed.invalid.height", - "english_translation": "Invalid maxHeight %s; expected higher than world minimum %s" - }, - { - "key": "commands.spreadplayers.failed.teams", - "english_translation": "Could not spread %s team(s) around %s, %s (too many entities for space - try using spread of at most %s)" - }, - { - "key": "commands.spreadplayers.success.entities", - "english_translation": "Spread %s player(s) around %s, %s with an average distance of %s blocks apart" - }, - { - "key": "commands.spreadplayers.success.teams", - "english_translation": "Spread %s team(s) around %s, %s with an average distance of %s blocks apart" - }, - { - "key": "commands.stop.stopping", - "english_translation": "Stopping the server" - }, - { - "key": "commands.stopsound.success.source.any", - "english_translation": "Stopped all '%s' sounds" - }, - { - "key": "commands.stopsound.success.source.sound", - "english_translation": "Stopped sound '%s' on source '%s'" - }, - { - "key": "commands.stopsound.success.sourceless.any", - "english_translation": "Stopped all sounds" - }, - { - "key": "commands.stopsound.success.sourceless.sound", - "english_translation": "Stopped sound '%s'" - }, - { - "key": "commands.summon.failed", - "english_translation": "Unable to summon entity" - }, - { - "key": "commands.summon.failed.uuid", - "english_translation": "Unable to summon entity due to duplicate UUIDs" - }, - { - "key": "commands.summon.invalidPosition", - "english_translation": "Invalid position for summon" - }, - { - "key": "commands.summon.success", - "english_translation": "Summoned new %s" - }, - { - "key": "commands.tag.add.failed", - "english_translation": "Target either already has the tag or has too many tags" - }, - { - "key": "commands.tag.add.success.multiple", - "english_translation": "Added tag '%s' to %s entities" - }, - { - "key": "commands.tag.add.success.single", - "english_translation": "Added tag '%s' to %s" - }, - { - "key": "commands.tag.list.multiple.empty", - "english_translation": "There are no tags on the %s entities" - }, - { - "key": "commands.tag.list.multiple.success", - "english_translation": "The %s entities have %s total tags: %s" - }, - { - "key": "commands.tag.list.single.empty", - "english_translation": "%s has no tags" - }, - { - "key": "commands.tag.list.single.success", - "english_translation": "%s has %s tags: %s" - }, - { - "key": "commands.tag.remove.failed", - "english_translation": "Target does not have this tag" - }, - { - "key": "commands.tag.remove.success.multiple", - "english_translation": "Removed tag '%s' from %s entities" - }, - { - "key": "commands.tag.remove.success.single", - "english_translation": "Removed tag '%s' from %s" - }, - { - "key": "commands.team.add.duplicate", - "english_translation": "A team already exists by that name" - }, - { - "key": "commands.team.add.success", - "english_translation": "Created team %s" - }, - { - "key": "commands.team.empty.success", - "english_translation": "Removed %s members from team %s" - }, - { - "key": "commands.team.empty.unchanged", - "english_translation": "Nothing changed. That team is already empty" - }, - { - "key": "commands.team.join.success.multiple", - "english_translation": "Added %s members to team %s" - }, - { - "key": "commands.team.join.success.single", - "english_translation": "Added %s to team %s" - }, - { - "key": "commands.team.leave.success.multiple", - "english_translation": "Removed %s members from any team" + "key": "gui.banned.reason.spam_or_advertising", + "english_translation": "Spam or advertising" }, { "key": "commands.team.leave.success.single", "english_translation": "Removed %s from any team" }, { - "key": "commands.team.list.members.empty", - "english_translation": "There are no members on team %s" + "key": "advancements.end.elytra.title", + "english_translation": "Sky's the Limit" }, { - "key": "commands.team.list.members.success", - "english_translation": "Team %s has %s members: %s" + "key": "entity.minecraft.piglin_brute", + "english_translation": "Piglin Brute" }, { - "key": "commands.team.list.teams.empty", - "english_translation": "There are no teams" + "key": "subtitles.entity.wandering_trader.hurt", + "english_translation": "Wandering Trader hurts" }, { - "key": "commands.team.list.teams.success", - "english_translation": "There are %s teams: %s" + "key": "block.minecraft.banner.diagonal_left.cyan", + "english_translation": "Cyan Per Bend Sinister" }, { - "key": "commands.team.option.collisionRule.success", - "english_translation": "Collision rule for team %s is now \"%s\"" + "key": "block.minecraft.banner.stripe_bottom.light_blue", + "english_translation": "Light Blue Base" }, { - "key": "commands.team.option.collisionRule.unchanged", - "english_translation": "Nothing changed. Collision rule is already that value" - }, - { - "key": "commands.team.option.color.success", - "english_translation": "Updated the color for team %s to %s" - }, - { - "key": "commands.team.option.color.unchanged", - "english_translation": "Nothing changed. That team already has that color" - }, - { - "key": "commands.team.option.deathMessageVisibility.success", - "english_translation": "Death message visibility for team %s is now \"%s\"" - }, - { - "key": "commands.team.option.deathMessageVisibility.unchanged", - "english_translation": "Nothing changed. Death message visibility is already that value" - }, - { - "key": "commands.team.option.friendlyfire.alreadyDisabled", - "english_translation": "Nothing changed. Friendly fire is already disabled for that team" - }, - { - "key": "commands.team.option.friendlyfire.alreadyEnabled", - "english_translation": "Nothing changed. Friendly fire is already enabled for that team" - }, - { - "key": "commands.team.option.friendlyfire.disabled", - "english_translation": "Disabled friendly fire for team %s" - }, - { - "key": "commands.team.option.friendlyfire.enabled", - "english_translation": "Enabled friendly fire for team %s" - }, - { - "key": "commands.team.option.name.success", - "english_translation": "Updated the name of team %s" - }, - { - "key": "commands.team.option.name.unchanged", - "english_translation": "Nothing changed. That team already has that name" - }, - { - "key": "commands.team.option.nametagVisibility.success", - "english_translation": "Nametag visibility for team %s is now \"%s\"" - }, - { - "key": "commands.team.option.nametagVisibility.unchanged", - "english_translation": "Nothing changed. Nametag visibility is already that value" - }, - { - "key": "commands.team.option.prefix.success", - "english_translation": "Team prefix set to %s" - }, - { - "key": "commands.team.option.seeFriendlyInvisibles.alreadyDisabled", - "english_translation": "Nothing changed. That team already can't see invisible teammates" - }, - { - "key": "commands.team.option.seeFriendlyInvisibles.alreadyEnabled", - "english_translation": "Nothing changed. That team can already see invisible teammates" - }, - { - "key": "commands.team.option.seeFriendlyInvisibles.disabled", - "english_translation": "Team %s can no longer see invisible teammates" - }, - { - "key": "commands.team.option.seeFriendlyInvisibles.enabled", - "english_translation": "Team %s can now see invisible teammates" - }, - { - "key": "commands.team.option.suffix.success", - "english_translation": "Team suffix set to %s" - }, - { - "key": "commands.team.remove.success", - "english_translation": "Removed team %s" - }, - { - "key": "commands.teammsg.failed.noteam", - "english_translation": "You must be on a team to message your team" - }, - { - "key": "commands.teleport.invalidPosition", - "english_translation": "Invalid position for teleport" - }, - { - "key": "commands.teleport.success.entity.multiple", - "english_translation": "Teleported %s entities to %s" - }, - { - "key": "commands.teleport.success.entity.single", - "english_translation": "Teleported %s to %s" - }, - { - "key": "commands.teleport.success.location.multiple", - "english_translation": "Teleported %s entities to %s, %s, %s" - }, - { - "key": "commands.teleport.success.location.single", - "english_translation": "Teleported %s to %s, %s, %s" - }, - { - "key": "commands.time.query", - "english_translation": "The time is %s" - }, - { - "key": "commands.time.set", - "english_translation": "Set the time to %s" - }, - { - "key": "commands.title.cleared.multiple", - "english_translation": "Cleared titles for %s players" - }, - { - "key": "commands.title.cleared.single", - "english_translation": "Cleared titles for %s" - }, - { - "key": "commands.title.reset.multiple", - "english_translation": "Reset title options for %s players" - }, - { - "key": "commands.title.reset.single", - "english_translation": "Reset title options for %s" - }, - { - "key": "commands.title.show.actionbar.multiple", - "english_translation": "Showing new actionbar title for %s players" - }, - { - "key": "commands.title.show.actionbar.single", - "english_translation": "Showing new actionbar title for %s" - }, - { - "key": "commands.title.show.subtitle.multiple", - "english_translation": "Showing new subtitle for %s players" - }, - { - "key": "commands.title.show.subtitle.single", - "english_translation": "Showing new subtitle for %s" - }, - { - "key": "commands.title.show.title.multiple", - "english_translation": "Showing new title for %s players" - }, - { - "key": "commands.title.show.title.single", - "english_translation": "Showing new title for %s" - }, - { - "key": "commands.title.times.multiple", - "english_translation": "Changed title display times for %s players" - }, - { - "key": "commands.title.times.single", - "english_translation": "Changed title display times for %s" - }, - { - "key": "commands.trigger.add.success", - "english_translation": "Triggered %s (added %s to value)" - }, - { - "key": "commands.trigger.failed.invalid", - "english_translation": "You can only trigger objectives that are 'trigger' type" - }, - { - "key": "commands.trigger.failed.unprimed", - "english_translation": "You cannot trigger this objective yet" - }, - { - "key": "commands.trigger.set.success", - "english_translation": "Triggered %s (set value to %s)" - }, - { - "key": "commands.trigger.simple.success", - "english_translation": "Triggered %s" - }, - { - "key": "commands.weather.set.clear", - "english_translation": "Set the weather to clear" - }, - { - "key": "commands.weather.set.rain", - "english_translation": "Set the weather to rain" - }, - { - "key": "commands.weather.set.thunder", - "english_translation": "Set the weather to rain & thunder" - }, - { - "key": "commands.whitelist.add.failed", - "english_translation": "Player is already whitelisted" - }, - { - "key": "commands.whitelist.add.success", - "english_translation": "Added %s to the whitelist" - }, - { - "key": "commands.whitelist.alreadyOff", - "english_translation": "Whitelist is already turned off" - }, - { - "key": "commands.whitelist.alreadyOn", - "english_translation": "Whitelist is already turned on" - }, - { - "key": "commands.whitelist.disabled", - "english_translation": "Whitelist is now turned off" - }, - { - "key": "commands.whitelist.enabled", - "english_translation": "Whitelist is now turned on" - }, - { - "key": "commands.whitelist.list", - "english_translation": "There is/are %s whitelisted player(s): %s" - }, - { - "key": "commands.whitelist.none", - "english_translation": "There are no whitelisted players" - }, - { - "key": "commands.whitelist.reloaded", - "english_translation": "Reloaded the whitelist" - }, - { - "key": "commands.whitelist.remove.failed", - "english_translation": "Player is not whitelisted" - }, - { - "key": "commands.whitelist.remove.success", - "english_translation": "Removed %s from the whitelist" - }, - { - "key": "commands.worldborder.center.failed", - "english_translation": "Nothing changed. The world border is already centered there" - }, - { - "key": "commands.worldborder.center.success", - "english_translation": "Set the center of the world border to %s, %s" - }, - { - "key": "commands.worldborder.damage.amount.failed", - "english_translation": "Nothing changed. The world border damage is already that amount" - }, - { - "key": "commands.worldborder.damage.amount.success", - "english_translation": "Set the world border damage to %s per block each second" - }, - { - "key": "commands.worldborder.damage.buffer.failed", - "english_translation": "Nothing changed. The world border damage buffer is already that distance" - }, - { - "key": "commands.worldborder.damage.buffer.success", - "english_translation": "Set the world border damage buffer to %s block(s)" - }, - { - "key": "commands.worldborder.get", - "english_translation": "The world border is currently %s block(s) wide" - }, - { - "key": "commands.worldborder.set.failed.big", - "english_translation": "World border cannot be bigger than %s blocks wide" - }, - { - "key": "commands.worldborder.set.failed.far", - "english_translation": "World border cannot be further out than %s blocks" - }, - { - "key": "commands.worldborder.set.failed.nochange", - "english_translation": "Nothing changed. The world border is already that size" - }, - { - "key": "commands.worldborder.set.failed.small", - "english_translation": "World border cannot be smaller than 1 block wide" - }, - { - "key": "commands.worldborder.set.grow", - "english_translation": "Growing the world border to %s blocks wide over %s seconds" - }, - { - "key": "commands.worldborder.set.immediate", - "english_translation": "Set the world border to %s block(s) wide" - }, - { - "key": "commands.worldborder.set.shrink", - "english_translation": "Shrinking the world border to %s block(s) wide over %s second(s)" - }, - { - "key": "commands.worldborder.warning.distance.failed", - "english_translation": "Nothing changed. The world border warning is already that distance" - }, - { - "key": "commands.worldborder.warning.distance.success", - "english_translation": "Set the world border warning distance to %s block(s)" - }, - { - "key": "commands.worldborder.warning.time.failed", - "english_translation": "Nothing changed. The world border warning is already that amount of time" - }, - { - "key": "commands.worldborder.warning.time.success", - "english_translation": "Set the world border warning time to %s second(s)" - }, - { - "key": "compliance.playtime.greaterThan24Hours", - "english_translation": "You've been playing for greater than 24 hours" - }, - { - "key": "compliance.playtime.hours", - "english_translation": "You've been playing for %s hour(s)" - }, - { - "key": "compliance.playtime.message", - "english_translation": "Excessive gaming may interfere with normal daily life" - }, - { - "key": "connect.aborted", - "english_translation": "Aborted" - }, - { - "key": "connect.authorizing", - "english_translation": "Logging in..." - }, - { - "key": "connect.connecting", - "english_translation": "Connecting to the server..." - }, - { - "key": "connect.encrypting", - "english_translation": "Encrypting..." - }, - { - "key": "connect.failed", - "english_translation": "Failed to connect to the server" - }, - { - "key": "connect.joining", - "english_translation": "Joining world..." - }, - { - "key": "connect.negotiating", - "english_translation": "Negotiating..." - }, - { - "key": "container.barrel", - "english_translation": "Barrel" - }, - { - "key": "container.beacon", - "english_translation": "Beacon" - }, - { - "key": "container.blast_furnace", - "english_translation": "Blast Furnace" - }, - { - "key": "container.brewing", - "english_translation": "Brewing Stand" - }, - { - "key": "container.cartography_table", - "english_translation": "Cartography Table" - }, - { - "key": "container.chest", - "english_translation": "Chest" - }, - { - "key": "container.chestDouble", - "english_translation": "Large Chest" - }, - { - "key": "container.crafting", - "english_translation": "Crafting" - }, - { - "key": "container.creative", - "english_translation": "Item Selection" - }, - { - "key": "container.dispenser", - "english_translation": "Dispenser" - }, - { - "key": "container.dropper", - "english_translation": "Dropper" - }, - { - "key": "container.enchant", - "english_translation": "Enchant" - }, - { - "key": "container.enchant.clue", - "english_translation": "%s . . . ?" - }, - { - "key": "container.enchant.lapis.many", - "english_translation": "%s Lapis Lazuli" - }, - { - "key": "container.enchant.lapis.one", - "english_translation": "1 Lapis Lazuli" - }, - { - "key": "container.enchant.level.many", - "english_translation": "%s Enchantment Levels" - }, - { - "key": "container.enchant.level.one", - "english_translation": "1 Enchantment Level" - }, - { - "key": "container.enchant.level.requirement", - "english_translation": "Level Requirement: %s" - }, - { - "key": "container.enderchest", - "english_translation": "Ender Chest" - }, - { - "key": "container.furnace", - "english_translation": "Furnace" - }, - { - "key": "container.grindstone_title", - "english_translation": "Repair & Disenchant" - }, - { - "key": "container.hopper", - "english_translation": "Item Hopper" - }, - { - "key": "container.inventory", - "english_translation": "Inventory" - }, - { - "key": "container.isLocked", - "english_translation": "%s is locked!" - }, - { - "key": "container.lectern", - "english_translation": "Lectern" - }, - { - "key": "container.loom", - "english_translation": "Loom" - }, - { - "key": "container.repair", - "english_translation": "Repair & Name" - }, - { - "key": "container.repair.cost", - "english_translation": "Enchantment Cost: %1$s" - }, - { - "key": "container.repair.expensive", - "english_translation": "Too Expensive!" - }, - { - "key": "container.shulkerBox", - "english_translation": "Shulker Box" - }, - { - "key": "container.shulkerBox.more", - "english_translation": "and %s more..." - }, - { - "key": "container.smoker", - "english_translation": "Smoker" - }, - { - "key": "container.spectatorCantOpen", - "english_translation": "Unable to open. Loot not generated yet." - }, - { - "key": "container.stonecutter", - "english_translation": "Stonecutter" - }, - { - "key": "container.upgrade", - "english_translation": "Upgrade Gear" - }, - { - "key": "container.upgrade.error_tooltip", - "english_translation": "Your item cannot be upgraded in this way" - }, - { - "key": "container.upgrade.missing_template_tooltip", - "english_translation": "Put a Smithing Template here" - }, - { - "key": "controls.keybinds", - "english_translation": "Key Binds..." - }, - { - "key": "controls.keybinds.duplicateKeybinds", - "english_translation": "This key is also used for:\n%s" - }, - { - "key": "controls.keybinds.title", - "english_translation": "Key Binds" - }, - { - "key": "controls.reset", - "english_translation": "Reset" - }, - { - "key": "controls.resetAll", - "english_translation": "Reset Keys" - }, - { - "key": "controls.title", - "english_translation": "Controls" - }, - { - "key": "createWorld.customize.buffet.biome", - "english_translation": "Please select a biome" - }, - { - "key": "createWorld.customize.buffet.title", - "english_translation": "Buffet world customization" - }, - { - "key": "createWorld.customize.custom.baseSize", - "english_translation": "Depth Base Size" - }, - { - "key": "createWorld.customize.custom.biomeDepthOffset", - "english_translation": "Biome Depth Offset" - }, - { - "key": "createWorld.customize.custom.biomeDepthWeight", - "english_translation": "Biome Depth Weight" - }, - { - "key": "createWorld.customize.custom.biomeScaleOffset", - "english_translation": "Biome Scale Offset" + "key": "menu.preparingSpawn", + "english_translation": "Preparing spawn area: %s%%" }, { "key": "createWorld.customize.custom.biomeScaleWeight", "english_translation": "Biome Scale Weight" }, { - "key": "createWorld.customize.custom.biomeSize", - "english_translation": "Biome Size" + "key": "block.minecraft.end_stone", + "english_translation": "End Stone" }, { - "key": "createWorld.customize.custom.center", - "english_translation": "Center Height" + "key": "subtitles.entity.horse.armor", + "english_translation": "Horse armor equips" }, { - "key": "createWorld.customize.custom.confirm1", - "english_translation": "This will overwrite your current" + "key": "block.minecraft.potted_white_tulip", + "english_translation": "Potted White Tulip" }, { - "key": "createWorld.customize.custom.confirm2", - "english_translation": "settings and cannot be undone." + "key": "block.minecraft.warped_door", + "english_translation": "Warped Door" }, { - "key": "createWorld.customize.custom.confirmTitle", - "english_translation": "Warning!" + "key": "chat.cannotSend", + "english_translation": "Cannot send chat message" }, { - "key": "createWorld.customize.custom.coordinateScale", - "english_translation": "Coordinate Scale" + "key": "mco.download.title", + "english_translation": "Downloading latest world" }, { - "key": "createWorld.customize.custom.count", - "english_translation": "Spawn Tries" + "key": "item.minecraft.splash_potion.effect.fire_resistance", + "english_translation": "Splash Potion of Fire Resistance" + }, + { + "key": "block.minecraft.banner.half_vertical_right.pink", + "english_translation": "Pink Per Pale Inverted" + }, + { + "key": "block.minecraft.banner.triangles_bottom.light_gray", + "english_translation": "Light Gray Base Indented" + }, + { + "key": "selectWorld.edit.export_worldgen_settings.success", + "english_translation": "Exported" + }, + { + "key": "item.minecraft.mourner_pottery_sherd", + "english_translation": "Mourner Pottery Sherd" + }, + { + "key": "stat.minecraft.damage_dealt", + "english_translation": "Damage Dealt" + }, + { + "key": "createWorld.customize.presets.list", + "english_translation": "Alternatively, here's some we made earlier!" + }, + { + "key": "block.minecraft.stripped_bamboo_block", + "english_translation": "Block of Stripped Bamboo" + }, + { + "key": "item.minecraft.shield.red", + "english_translation": "Red Shield" + }, + { + "key": "block.minecraft.quartz_pillar", + "english_translation": "Quartz Pillar" + }, + { + "key": "commands.bossbar.get.visible.hidden", + "english_translation": "Custom bossbar %s is currently hidden" + }, + { + "key": "title.32bit.deprecation.realms.check", + "english_translation": "Do not show this screen again" + }, + { + "key": "argument.pos3d.incomplete", + "english_translation": "Incomplete (expected 3 coordinates)" + }, + { + "key": "item.minecraft.diamond_sword", + "english_translation": "Diamond Sword" + }, + { + "key": "mco.backup.entry.gameMode", + "english_translation": "Game Mode" + }, + { + "key": "block.minecraft.oak_planks", + "english_translation": "Oak Planks" + }, + { + "key": "item.minecraft.amethyst_shard", + "english_translation": "Amethyst Shard" + }, + { + "key": "subtitles.entity.piglin.celebrate", + "english_translation": "Piglin celebrates" + }, + { + "key": "block.minecraft.structure_void", + "english_translation": "Structure Void" + }, + { + "key": "tutorial.socialInteractions.title", + "english_translation": "Social Interactions" + }, + { + "key": "block.minecraft.purple_shulker_box", + "english_translation": "Purple Shulker Box" + }, + { + "key": "commands.item.source.not_a_container", + "english_translation": "Source position %s, %s, %s is not a container" + }, + { + "key": "jigsaw_block.pool", + "english_translation": "Target Pool:" + }, + { + "key": "block.minecraft.potatoes", + "english_translation": "Potatoes" + }, + { + "key": "subtitles.entity.camel.step_sand", + "english_translation": "Camel sands" + }, + { + "key": "datapackFailure.safeMode", + "english_translation": "Safe Mode" + }, + { + "key": "block.minecraft.light_blue_bed", + "english_translation": "Light Blue Bed" + }, + { + "key": "subtitles.block.sniffer_egg.crack", + "english_translation": "Sniffer Egg cracks" + }, + { + "key": "item.modifiers.head", + "english_translation": "When on Head:" + }, + { + "key": "options.on.composed", + "english_translation": "%s: ON" + }, + { + "key": "advancements.adventure.honey_block_slide.title", + "english_translation": "Sticky Situation" + }, + { + "key": "commands.worldborder.damage.buffer.success", + "english_translation": "Set the world border damage buffer to %s block(s)" + }, + { + "key": "subtitles.entity.player.levelup", + "english_translation": "Player dings" + }, + { + "key": "block.minecraft.glass_pane", + "english_translation": "Glass Pane" + }, + { + "key": "block.minecraft.banner.diagonal_right.cyan", + "english_translation": "Cyan Per Bend" + }, + { + "key": "subtitles.entity.camel.sit", + "english_translation": "Camel sits down" + }, + { + "key": "block.minecraft.cut_copper_slab", + "english_translation": "Cut Copper Slab" + }, + { + "key": "gui.chatReport.report_sent_msg", + "english_translation": "We’ve successfully received your report. Thank you!\n\nOur team will review it as soon as possible." + }, + { + "key": "gui.socialInteractions.blocking_hint", + "english_translation": "Manage with Microsoft account" + }, + { + "key": "options.telemetry.button.tooltip", + "english_translation": "\"%s\" includes only the required data.\n\"%s\" includes optional, as well as the required data." + }, + { + "key": "trim_pattern.minecraft.coast", + "english_translation": "Coast Armor Trim" + }, + { + "key": "biome.minecraft.warped_forest", + "english_translation": "Warped Forest" + }, + { + "key": "item.minecraft.splash_potion.effect.slow_falling", + "english_translation": "Splash Potion of Slow Falling" + }, + { + "key": "item.minecraft.book", + "english_translation": "Book" + }, + { + "key": "block.minecraft.banner.gradient.brown", + "english_translation": "Brown Gradient" + }, + { + "key": "entity.minecraft.magma_cube", + "english_translation": "Magma Cube" + }, + { + "key": "block.minecraft.banner.curly_border.gray", + "english_translation": "Gray Bordure Indented" + }, + { + "key": "options.particles.all", + "english_translation": "All" + }, + { + "key": "block.minecraft.black_shulker_box", + "english_translation": "Black Shulker Box" + }, + { + "key": "subtitles.block.amethyst_block.chime", + "english_translation": "Amethyst chimes" + }, + { + "key": "advancements.nether.root.description", + "english_translation": "Bring summer clothes" + }, + { + "key": "block.minecraft.banner.straight_cross.purple", + "english_translation": "Purple Cross" + }, + { + "key": "multiplayer.texturePrompt.serverPrompt", + "english_translation": "%s\n\nMessage from server:\n%s" + }, + { + "key": "key.forward", + "english_translation": "Walk Forwards" + }, + { + "key": "mco.template.trailer.tooltip", + "english_translation": "Map trailer" + }, + { + "key": "gamerule.showDeathMessages", + "english_translation": "Show death messages" + }, + { + "key": "commands.enchant.success.single", + "english_translation": "Applied enchantment %s to %s's item" + }, + { + "key": "advancements.end.find_end_city.title", + "english_translation": "The City at the End of the Game" + }, + { + "key": "item.minecraft.bamboo_chest_raft", + "english_translation": "Bamboo Raft with Chest" + }, + { + "key": "block.minecraft.banner.square_top_left.blue", + "english_translation": "Blue Chief Dexter Canton" + }, + { + "key": "block.minecraft.banner.stripe_center.yellow", + "english_translation": "Yellow Pale" + }, + { + "key": "mco.configure.world.invite.profile.name", + "english_translation": "Name" + }, + { + "key": "entity.minecraft.evoker", + "english_translation": "Evoker" + }, + { + "key": "item.minecraft.firework_star.cyan", + "english_translation": "Cyan" + }, + { + "key": "block.minecraft.brick_slab", + "english_translation": "Brick Slab" + }, + { + "key": "mco.errorMessage.generic", + "english_translation": "An error occurred: " + }, + { + "key": "subtitles.entity.slime.hurt", + "english_translation": "Slime hurts" + }, + { + "key": "advancements.adventure.throw_trident.title", + "english_translation": "A Throwaway Joke" + }, + { + "key": "block.minecraft.deepslate_emerald_ore", + "english_translation": "Deepslate Emerald Ore" + }, + { + "key": "commands.jfr.stopped", + "english_translation": "JFR profiling stopped and dumped to %s" + }, + { + "key": "block.minecraft.crimson_wall_sign", + "english_translation": "Crimson Wall Sign" + }, + { + "key": "block.minecraft.bamboo_slab", + "english_translation": "Bamboo Slab" + }, + { + "key": "gamerule.reducedDebugInfo.description", + "english_translation": "Limits contents of debug screen." + }, + { + "key": "item.minecraft.apple", + "english_translation": "Apple" + }, + { + "key": "block.minecraft.brown_wool", + "english_translation": "Brown Wool" + }, + { + "key": "subtitles.entity.ghast.ambient", + "english_translation": "Ghast cries" + }, + { + "key": "arguments.function.tag.unknown", + "english_translation": "Unknown function tag '%s'" + }, + { + "key": "subtitles.entity.ravager.stunned", + "english_translation": "Ravager stunned" + }, + { + "key": "entity.minecraft.turtle", + "english_translation": "Turtle" + }, + { + "key": "subtitles.entity.bee.loop", + "english_translation": "Bee buzzes" + }, + { + "key": "commands.datapack.list.available.success", + "english_translation": "There are %s data pack(s) available: %s" + }, + { + "key": "advancements.story.cure_zombie_villager.title", + "english_translation": "Zombie Doctor" + }, + { + "key": "item.minecraft.bone", + "english_translation": "Bone" + }, + { + "key": "advancements.husbandry.netherite_hoe.description", + "english_translation": "Use a Netherite Ingot to upgrade a Hoe, and then reevaluate your life choices" + }, + { + "key": "selectWorld.edit.save", + "english_translation": "Save" + }, + { + "key": "argument.angle.incomplete", + "english_translation": "Incomplete (expected 1 angle)" + }, + { + "key": "effect.minecraft.speed", + "english_translation": "Speed" + }, + { + "key": "subtitles.entity.tadpole.death", + "english_translation": "Tadpole dies" + }, + { + "key": "block.minecraft.polished_andesite", + "english_translation": "Polished Andesite" + }, + { + "key": "subtitles.block.sweet_berry_bush.pick_berries", + "english_translation": "Berries pop" + }, + { + "key": "chat.editBox", + "english_translation": "chat" + }, + { + "key": "gui.chatReport.read_info", + "english_translation": "Learn About Reporting" + }, + { + "key": "item.minecraft.lapis_lazuli", + "english_translation": "Lapis Lazuli" + }, + { + "key": "subtitles.entity.piglin.ambient", + "english_translation": "Piglin snorts" + }, + { + "key": "multiplayer.status.version.narration", + "english_translation": "Server version: %s" + }, + { + "key": "multiplayer.disconnect.too_many_pending_chats", + "english_translation": "Too many unacknowledged chat messages" + }, + { + "key": "block.minecraft.banner.diagonal_right.orange", + "english_translation": "Orange Per Bend" + }, + { + "key": "mco.configure.world.buttons.switchminigame", + "english_translation": "Switch minigame" + }, + { + "key": "biome.minecraft.small_end_islands", + "english_translation": "Small End Islands" + }, + { + "key": "block.minecraft.banner.base.green", + "english_translation": "Fully Green Field" + }, + { + "key": "commands.experience.add.levels.success.single", + "english_translation": "Gave %s experience levels to %s" + }, + { + "key": "subtitles.entity.guardian.attack", + "english_translation": "Guardian shoots" + }, + { + "key": "commands.effect.clear.specific.success.single", + "english_translation": "Removed effect %s from %s" + }, + { + "key": "block.minecraft.banner.square_top_left.lime", + "english_translation": "Lime Chief Dexter Canton" + }, + { + "key": "stat.minecraft.walk_one_cm", + "english_translation": "Distance Walked" + }, + { + "key": "outOfMemory.title", + "english_translation": "Out of memory!" + }, + { + "key": "subtitles.entity.generic.death", + "english_translation": "Dying" + }, + { + "key": "block.minecraft.banner.square_bottom_left.gray", + "english_translation": "Gray Base Dexter Canton" + }, + { + "key": "commands.scoreboard.objectives.display.set", + "english_translation": "Set display slot %s to show objective %s" + }, + { + "key": "advancements.nether.explore_nether.description", + "english_translation": "Explore all Nether biomes" + }, + { + "key": "itemGroup.tools", + "english_translation": "Tools & Utilities" + }, + { + "key": "commands.bossbar.set.visibility.unchanged.visible", + "english_translation": "Nothing changed. The bossbar is already visible" + }, + { + "key": "pack.source.builtin", + "english_translation": "built-in" + }, + { + "key": "commands.perf.reportFailed", + "english_translation": "Failed to create debug report" + }, + { + "key": "block.minecraft.cyan_stained_glass", + "english_translation": "Cyan Stained Glass" + }, + { + "key": "narrator.joining", + "english_translation": "Joining" + }, + { + "key": "item.minecraft.bee_spawn_egg", + "english_translation": "Bee Spawn Egg" + }, + { + "key": "commands.place.structure.success", + "english_translation": "Generated structure \"%s\" at %s, %s, %s" + }, + { + "key": "enchantment.minecraft.luck_of_the_sea", + "english_translation": "Luck of the Sea" + }, + { + "key": "item.minecraft.fox_spawn_egg", + "english_translation": "Fox Spawn Egg" + }, + { + "key": "commands.reload.success", + "english_translation": "Reloading!" + }, + { + "key": "mco.connect.connecting", + "english_translation": "Connecting to the realm..." + }, + { + "key": "block.minecraft.spruce_slab", + "english_translation": "Spruce Slab" + }, + { + "key": "painting.minecraft.bust.title", + "english_translation": "Bust" + }, + { + "key": "subtitles.entity.boat.paddle_land", + "english_translation": "Rowing" + }, + { + "key": "painting.minecraft.wind.title", + "english_translation": "Wind" + }, + { + "key": "pack.dropConfirm", + "english_translation": "Do you want to add the following packs to Minecraft?" + }, + { + "key": "block.minecraft.banner.border.magenta", + "english_translation": "Magenta Bordure" + }, + { + "key": "gui.chatReport.discard.content", + "english_translation": "If you leave, you'll lose this report and your comments.\nAre you sure you want to leave?" + }, + { + "key": "block.minecraft.banner.creeper.red", + "english_translation": "Red Creeper Charge" + }, + { + "key": "entity.minecraft.tropical_fish", + "english_translation": "Tropical Fish" + }, + { + "key": "options.autoJump", + "english_translation": "Auto-Jump" + }, + { + "key": "event.minecraft.raid.raiders_remaining", + "english_translation": "Raiders Remaining: %s" + }, + { + "key": "subtitles.entity.piglin.admiring_item", + "english_translation": "Piglin admires item" + }, + { + "key": "block.minecraft.oak_trapdoor", + "english_translation": "Oak Trapdoor" + }, + { + "key": "options.framerate", + "english_translation": "%s fps" + }, + { + "key": "block.minecraft.glass", + "english_translation": "Glass" + }, + { + "key": "subtitles.entity.elder_guardian.hurt", + "english_translation": "Elder Guardian hurts" + }, + { + "key": "gui.chatReport.title", + "english_translation": "Report Player" + }, + { + "key": "container.hopper", + "english_translation": "Item Hopper" + }, + { + "key": "entity.minecraft.bee", + "english_translation": "Bee" + }, + { + "key": "block.minecraft.budding_amethyst", + "english_translation": "Budding Amethyst" + }, + { + "key": "arguments.item.tag.unknown", + "english_translation": "Unknown item tag '%s'" + }, + { + "key": "block.minecraft.white_bed", + "english_translation": "White Bed" + }, + { + "key": "createWorld.customize.custom.presets.title", + "english_translation": "Customize World Presets" + }, + { + "key": "commands.debug.function.success.single", + "english_translation": "Traced %s command(s) from function '%s' to output file %s" + }, + { + "key": "subtitles.entity.pillager.ambient", + "english_translation": "Pillager murmurs" + }, + { + "key": "block.minecraft.banner.rhombus.red", + "english_translation": "Red Lozenge" + }, + { + "key": "mco.notification.visitUrl.buttonText.default", + "english_translation": "Open link" + }, + { + "key": "stat.minecraft.damage_dealt_resisted", + "english_translation": "Damage Dealt (Resisted)" }, { "key": "createWorld.customize.custom.defaults", "english_translation": "Defaults" }, { - "key": "createWorld.customize.custom.depthNoiseScaleExponent", - "english_translation": "Depth Noise Exponent" + "key": "entity.minecraft.item_frame", + "english_translation": "Item Frame" }, { - "key": "createWorld.customize.custom.depthNoiseScaleX", - "english_translation": "Depth Noise Scale X" + "key": "block.minecraft.brain_coral_block", + "english_translation": "Brain Coral Block" }, { - "key": "createWorld.customize.custom.depthNoiseScaleZ", - "english_translation": "Depth Noise Scale Z" + "key": "item.minecraft.tropical_fish", + "english_translation": "Tropical Fish" }, { - "key": "createWorld.customize.custom.dungeonChance", - "english_translation": "Dungeon Count" + "key": "stat.minecraft.mob_kills", + "english_translation": "Mob Kills" }, { - "key": "createWorld.customize.custom.fixedBiome", - "english_translation": "Biome" + "key": "death.attack.fall.player", + "english_translation": "%1$s hit the ground too hard whilst trying to escape %2$s" }, { - "key": "createWorld.customize.custom.heightScale", - "english_translation": "Height Scale" + "key": "mco.download.percent", + "english_translation": "%s %%" }, { - "key": "createWorld.customize.custom.lavaLakeChance", - "english_translation": "Lava Lake Rarity" + "key": "options.telemetry.state.minimal", + "english_translation": "Minimal" + }, + { + "key": "gui.socialInteractions.status_blocked_offline", + "english_translation": "Blocked - Offline" + }, + { + "key": "block.minecraft.banner.piglin.pink", + "english_translation": "Pink Snout" + }, + { + "key": "block.minecraft.banner.stripe_right.cyan", + "english_translation": "Cyan Pale Sinister" + }, + { + "key": "accessibility.onboarding.screen.title", + "english_translation": "Welcome to Minecraft!\n\nWould you like to enable the Narrator or visit the Accessibility Settings?" + }, + { + "key": "subtitles.entity.villager.work_toolsmith", + "english_translation": "Toolsmith works" + }, + { + "key": "block.minecraft.banner.border.white", + "english_translation": "White Bordure" + }, + { + "key": "item.minecraft.tipped_arrow.effect.harming", + "english_translation": "Arrow of Harming" + }, + { + "key": "stat.minecraft.animals_bred", + "english_translation": "Animals Bred" + }, + { + "key": "block.minecraft.dark_oak_slab", + "english_translation": "Dark Oak Slab" + }, + { + "key": "createWorld.customize.custom.riverSize", + "english_translation": "River Size" + }, + { + "key": "subtitles.block.respawn_anchor.ambient", + "english_translation": "Portal whooshes" + }, + { + "key": "block.minecraft.banner.triangle_bottom.light_blue", + "english_translation": "Light Blue Chevron" + }, + { + "key": "block.minecraft.cartography_table", + "english_translation": "Cartography Table" + }, + { + "key": "itemGroup.consumables", + "english_translation": "Consumables" + }, + { + "key": "permissions.requires.entity", + "english_translation": "An entity is required to run this command here" + }, + { + "key": "subtitles.block.bubble_column.whirlpool_ambient", + "english_translation": "Bubbles whirl" + }, + { + "key": "subtitles.entity.dolphin.ambient", + "english_translation": "Dolphin chirps" + }, + { + "key": "subtitles.entity.guardian.death", + "english_translation": "Guardian dies" + }, + { + "key": "entity.minecraft.bat", + "english_translation": "Bat" + }, + { + "key": "block.minecraft.stripped_birch_log", + "english_translation": "Stripped Birch Log" + }, + { + "key": "subtitles.entity.dolphin.death", + "english_translation": "Dolphin dies" + }, + { + "key": "death.attack.thrown.item", + "english_translation": "%1$s was pummeled by %2$s using %3$s" + }, + { + "key": "commands.enchant.success.multiple", + "english_translation": "Applied enchantment %s to %s entities" + }, + { + "key": "commands.advancement.grant.many.to.one.failure", + "english_translation": "Couldn't grant %s advancements to %s as they already have them" + }, + { + "key": "subtitles.entity.llama.spit", + "english_translation": "Llama spits" + }, + { + "key": "options.viewBobbing", + "english_translation": "View Bobbing" + }, + { + "key": "enchantment.minecraft.flame", + "english_translation": "Flame" + }, + { + "key": "commands.advancement.revoke.many.to.many.failure", + "english_translation": "Couldn't revoke %s advancements from %s players as they don't have them" + }, + { + "key": "advancements.adventure.hero_of_the_village.title", + "english_translation": "Hero of the Village" + }, + { + "key": "advancements.story.deflect_arrow.description", + "english_translation": "Deflect a projectile with a Shield" + }, + { + "key": "block.minecraft.pink_bed", + "english_translation": "Pink Bed" + }, + { + "key": "debug.creative_spectator.help", + "english_translation": "F3 + N = Cycle previous game mode <-> spectator" + }, + { + "key": "block.minecraft.glow_lichen", + "english_translation": "Glow Lichen" + }, + { + "key": "menu.options", + "english_translation": "Options..." + }, + { + "key": "block.minecraft.mangrove_hanging_sign", + "english_translation": "Mangrove Hanging Sign" + }, + { + "key": "stat_type.minecraft.killed.none", + "english_translation": "You have never killed %s" + }, + { + "key": "entity.minecraft.villager.butcher", + "english_translation": "Butcher" + }, + { + "key": "subtitles.entity.panda.death", + "english_translation": "Panda dies" + }, + { + "key": "block.minecraft.banner.bricks.black", + "english_translation": "Black Field Masoned" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.light_gray", + "english_translation": "Light Gray Per Fess Inverted" + }, + { + "key": "block.minecraft.raw_copper_block", + "english_translation": "Block of Raw Copper" + }, + { + "key": "mco.configure.world.subscription.recurring.daysleft", + "english_translation": "Renewed automatically in" + }, + { + "key": "block.minecraft.packed_mud", + "english_translation": "Packed Mud" + }, + { + "key": "entity.minecraft.mule", + "english_translation": "Mule" + }, + { + "key": "gamerule.doMobSpawning.description", + "english_translation": "Some entities might have separate rules." + }, + { + "key": "block.minecraft.gray_shulker_box", + "english_translation": "Gray Shulker Box" + }, + { + "key": "block.minecraft.skeleton_skull", + "english_translation": "Skeleton Skull" + }, + { + "key": "gui.chatReport.more_comments", + "english_translation": "Please describe what happened:" + }, + { + "key": "subtitles.block.shulker_box.close", + "english_translation": "Shulker closes" + }, + { + "key": "team.visibility.hideForOwnTeam", + "english_translation": "Hide for own team" + }, + { + "key": "options.customizeTitle", + "english_translation": "Customize World Settings" + }, + { + "key": "selectWorld.data_read", + "english_translation": "Reading world data..." + }, + { + "key": "gui.stats", + "english_translation": "Statistics" + }, + { + "key": "gui.abuseReport.reason.description", + "english_translation": "Description:" + }, + { + "key": "item.minecraft.golden_pickaxe", + "english_translation": "Golden Pickaxe" + }, + { + "key": "block.minecraft.banner.stripe_downright.yellow", + "english_translation": "Yellow Bend" + }, + { + "key": "block.minecraft.banner.stripe_left.pink", + "english_translation": "Pink Pale Dexter" + }, + { + "key": "entity.minecraft.chicken", + "english_translation": "Chicken" + }, + { + "key": "subtitles.entity.wolf.death", + "english_translation": "Wolf dies" + }, + { + "key": "potion.withDuration", + "english_translation": "%s (%s)" + }, + { + "key": "argument.literal.incorrect", + "english_translation": "Expected literal %s" + }, + { + "key": "block.minecraft.lilac", + "english_translation": "Lilac" + }, + { + "key": "gamerule.doLimitedCrafting", + "english_translation": "Require recipe for crafting" + }, + { + "key": "mco.upload.done", + "english_translation": "Upload done" + }, + { + "key": "block.minecraft.banner.base.black", + "english_translation": "Fully Black Field" + }, + { + "key": "item.minecraft.tipped_arrow.effect.leaping", + "english_translation": "Arrow of Leaping" + }, + { + "key": "item.minecraft.burn_pottery_sherd", + "english_translation": "Burn Pottery Sherd" + }, + { + "key": "item.minecraft.snort_pottery_sherd", + "english_translation": "Snort Pottery Sherd" + }, + { + "key": "mco.connect.success", + "english_translation": "Done" + }, + { + "key": "block.minecraft.banner.triangles_top.purple", + "english_translation": "Purple Chief Indented" + }, + { + "key": "commands.bossbar.get.visible.visible", + "english_translation": "Custom bossbar %s is currently shown" + }, + { + "key": "block.minecraft.oxidized_cut_copper_slab", + "english_translation": "Oxidized Cut Copper Slab" + }, + { + "key": "commands.data.entity.query", + "english_translation": "%s has the following entity data: %s" + }, + { + "key": "block.minecraft.bricks", + "english_translation": "Bricks" + }, + { + "key": "block.minecraft.warped_nylium", + "english_translation": "Warped Nylium" + }, + { + "key": "stats.tooltip.type.statistic", + "english_translation": "Statistic" + }, + { + "key": "block.minecraft.diorite_slab", + "english_translation": "Diorite Slab" + }, + { + "key": "block.minecraft.banner.border.black", + "english_translation": "Black Bordure" + }, + { + "key": "block.minecraft.banner.square_bottom_right.brown", + "english_translation": "Brown Base Sinister Canton" + }, + { + "key": "block.minecraft.banner.triangles_bottom.brown", + "english_translation": "Brown Base Indented" + }, + { + "key": "mco.account.privacy.info", + "english_translation": "Read more about Mojang and privacy laws" + }, + { + "key": "menu.respawning", + "english_translation": "Respawning" + }, + { + "key": "container.crafting", + "english_translation": "Crafting" + }, + { + "key": "pack.incompatible", + "english_translation": "Incompatible" + }, + { + "key": "debug.pause_focus.on", + "english_translation": "Pause on lost focus: enabled" + }, + { + "key": "tutorial.open_inventory.description", + "english_translation": "Press %s" + }, + { + "key": "block.minecraft.dark_oak_planks", + "english_translation": "Dark Oak Planks" + }, + { + "key": "argument.pos.missing.int", + "english_translation": "Expected a block position" + }, + { + "key": "item.minecraft.pig_spawn_egg", + "english_translation": "Pig Spawn Egg" + }, + { + "key": "item.minecraft.skull_pottery_shard", + "english_translation": "Skull Pottery Shard" + }, + { + "key": "advancements.end.root.description", + "english_translation": "Or the beginning?" + }, + { + "key": "block.minecraft.melon_stem", + "english_translation": "Melon Stem" + }, + { + "key": "argument.long.low", + "english_translation": "Long must not be less than %s, found %s" + }, + { + "key": "color.minecraft.yellow", + "english_translation": "Yellow" + }, + { + "key": "block.minecraft.banner.half_horizontal.light_gray", + "english_translation": "Light Gray Per Fess" + }, + { + "key": "multiplayer.status.unknown", + "english_translation": "???" + }, + { + "key": "item.minecraft.iron_pickaxe", + "english_translation": "Iron Pickaxe" + }, + { + "key": "block.minecraft.mossy_cobblestone_stairs", + "english_translation": "Mossy Cobblestone Stairs" + }, + { + "key": "block.minecraft.cobbled_deepslate_wall", + "english_translation": "Cobbled Deepslate Wall" + }, + { + "key": "enchantment.minecraft.fire_aspect", + "english_translation": "Fire Aspect" + }, + { + "key": "commands.whitelist.alreadyOn", + "english_translation": "Whitelist is already turned on" + }, + { + "key": "subtitles.entity.iron_golem.attack", + "english_translation": "Iron Golem attacks" + }, + { + "key": "commands.bossbar.create.failed", + "english_translation": "A bossbar already exists with the ID '%s'" + }, + { + "key": "mco.configure.world.spawnMonsters", + "english_translation": "Spawn monsters" + }, + { + "key": "disconnect.loginFailedInfo", + "english_translation": "Failed to log in: %s" + }, + { + "key": "subtitles.entity.villager.work_armorer", + "english_translation": "Armorer works" + }, + { + "key": "multiplayer.requiredTexturePrompt.disconnect", + "english_translation": "Server requires a custom resource pack" + }, + { + "key": "block.minecraft.potted_orange_tulip", + "english_translation": "Potted Orange Tulip" + }, + { + "key": "subtitles.entity.shulker_bullet.hurt", + "english_translation": "Shulker Bullet breaks" + }, + { + "key": "block.minecraft.bubble_coral_fan", + "english_translation": "Bubble Coral Fan" + }, + { + "key": "block.minecraft.deepslate_coal_ore", + "english_translation": "Deepslate Coal Ore" + }, + { + "key": "block.minecraft.dead_fire_coral", + "english_translation": "Dead Fire Coral" + }, + { + "key": "block.minecraft.banner.gradient.light_gray", + "english_translation": "Light Gray Gradient" + }, + { + "key": "tutorial.socialInteractions.description", + "english_translation": "Press %s to open" + }, + { + "key": "block.minecraft.brain_coral_fan", + "english_translation": "Brain Coral Fan" + }, + { + "key": "argument.entity.notfound.player", + "english_translation": "No player was found" + }, + { + "key": "sleep.skipping_night", + "english_translation": "Sleeping through this night" + }, + { + "key": "telemetry.property.server_modded.title", + "english_translation": "Server Modded" + }, + { + "key": "entity.minecraft.zombie_villager", + "english_translation": "Zombie Villager" + }, + { + "key": "container.enchant.lapis.many", + "english_translation": "%s Lapis Lazuli" + }, + { + "key": "item.minecraft.wandering_trader_spawn_egg", + "english_translation": "Wandering Trader Spawn Egg" + }, + { + "key": "subtitles.entity.parrot.imitate.witch", + "english_translation": "Parrot giggles" + }, + { + "key": "multiplayer.disconnect.missing_tags", + "english_translation": "Incomplete set of tags received from server.\nPlease contact server operator." + }, + { + "key": "options.chat.height.unfocused", + "english_translation": "Unfocused Height" + }, + { + "key": "subtitles.entity.stray.ambient", + "english_translation": "Stray rattles" + }, + { + "key": "argument.block.property.novalue", + "english_translation": "Expected value for property '%s' on block %s" + }, + { + "key": "block.minecraft.bed.not_safe", + "english_translation": "You may not rest now; there are monsters nearby" + }, + { + "key": "commands.kill.success.single", + "english_translation": "Killed %s" + }, + { + "key": "options.chat.links", + "english_translation": "Web Links" + }, + { + "key": "block.minecraft.banner.straight_cross.light_blue", + "english_translation": "Light Blue Cross" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.gray", + "english_translation": "Gray Per Bend Sinister Inverted" + }, + { + "key": "flat_world_preset.minecraft.desert", + "english_translation": "Desert" + }, + { + "key": "commands.place.template.failed", + "english_translation": "Failed to place template" + }, + { + "key": "advancements.end.find_end_city.description", + "english_translation": "Go on in, what could happen?" + }, + { + "key": "commands.drop.success.multiple", + "english_translation": "Dropped %s items" + }, + { + "key": "item.minecraft.cooked_salmon", + "english_translation": "Cooked Salmon" + }, + { + "key": "narrator.select", + "english_translation": "Selected: %s" + }, + { + "key": "selectWorld.gameMode.spectator.info", + "english_translation": "You can look but don't touch." + }, + { + "key": "block.minecraft.banner.globe.brown", + "english_translation": "Brown Globe" + }, + { + "key": "biome.minecraft.end_barrens", + "english_translation": "End Barrens" + }, + { + "key": "subtitles.block.anvil.land", + "english_translation": "Anvil landed" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.pink", + "english_translation": "Pink Per Bend Inverted" + }, + { + "key": "item.minecraft.iron_axe", + "english_translation": "Iron Axe" + }, + { + "key": "block.minecraft.banner.border.green", + "english_translation": "Green Bordure" + }, + { + "key": "mco.selectServer.openserver", + "english_translation": "Open realm" + }, + { + "key": "item.minecraft.archer_pottery_sherd", + "english_translation": "Archer Pottery Sherd" + }, + { + "key": "block.minecraft.iron_door", + "english_translation": "Iron Door" + }, + { + "key": "commands.team.option.collisionRule.unchanged", + "english_translation": "Nothing changed. Collision rule is already that value" + }, + { + "key": "options.vsync", + "english_translation": "VSync" + }, + { + "key": "gamerule.commandModificationBlockLimit.description", + "english_translation": "Number of blocks that can be changed at once by one command, such as fill or clone." + }, + { + "key": "block.minecraft.piston", + "english_translation": "Piston" + }, + { + "key": "block.minecraft.mangrove_fence_gate", + "english_translation": "Mangrove Fence Gate" + }, + { + "key": "narration.button.usage.hovered", + "english_translation": "Left click to activate" + }, + { + "key": "container.enchant.level.requirement", + "english_translation": "Level Requirement: %s" + }, + { + "key": "gamerule.forgiveDeadPlayers.description", + "english_translation": "Angered neutral mobs stop being angry when the targeted player dies nearby." + }, + { + "key": "subtitles.entity.piglin_brute.angry", + "english_translation": "Piglin Brute snorts angrily" + }, + { + "key": "commands.attribute.failed.no_modifier", + "english_translation": "Attribute %s for entity %s has no modifier %s" + }, + { + "key": "gamerule.doTileDrops", + "english_translation": "Drop blocks" + }, + { + "key": "painting.minecraft.skull_and_roses.title", + "english_translation": "Skull and Roses" + }, + { + "key": "entity.minecraft.llama_spit", + "english_translation": "Llama Spit" + }, + { + "key": "structure_block.show_air", + "english_translation": "Show Invisible Blocks:" + }, + { + "key": "item.minecraft.lingering_potion.effect.weakness", + "english_translation": "Lingering Potion of Weakness" + }, + { + "key": "subtitles.block.iron_trapdoor.open", + "english_translation": "Trapdoor opens" + }, + { + "key": "options.accessibility.text_background.chat", + "english_translation": "Chat" + }, + { + "key": "chat.type.text.narrate", + "english_translation": "%s says %s" + }, + { + "key": "block.minecraft.grass_block", + "english_translation": "Grass Block" + }, + { + "key": "narration.tab_navigation.usage", + "english_translation": "Press Ctrl and Tab to switch between tabs" + }, + { + "key": "commands.enchant.failed.level", + "english_translation": "%s is higher than the maximum level of %s supported by that enchantment" + }, + { + "key": "options.graphics.fabulous", + "english_translation": "Fabulous!" + }, + { + "key": "chat.link.confirmTrusted", + "english_translation": "Do you want to open this link or copy it to your clipboard?" + }, + { + "key": "block.minecraft.brown_bed", + "english_translation": "Brown Bed" + }, + { + "key": "subtitles.entity.dolphin.ambient_water", + "english_translation": "Dolphin whistles" + }, + { + "key": "translation.test.complex", + "english_translation": "Prefix, %s%2$s again %s and %1$s lastly %s and also %1$s again!" + }, + { + "key": "block.minecraft.banner.square_top_right.red", + "english_translation": "Red Chief Sinister Canton" + }, + { + "key": "commands.setidletimeout.success", + "english_translation": "The player idle timeout is now %s minute(s)" + }, + { + "key": "title.multiplayer.disabled.banned.temporary", + "english_translation": "Your account is temporarily suspended from online play" + }, + { + "key": "commands.team.option.friendlyfire.enabled", + "english_translation": "Enabled friendly fire for team %s" + }, + { + "key": "item.minecraft.lodestone_compass", + "english_translation": "Lodestone Compass" + }, + { + "key": "block.minecraft.banner.gradient_up.white", + "english_translation": "White Base Gradient" + }, + { + "key": "block.minecraft.banner.small_stripes.yellow", + "english_translation": "Yellow Paly" + }, + { + "key": "painting.minecraft.graham.title", + "english_translation": "Graham" + }, + { + "key": "subtitles.entity.witch.drink", + "english_translation": "Witch drinks" + }, + { + "key": "commands.banip.failed", + "english_translation": "Nothing changed. That IP is already banned" + }, + { + "key": "narrator.ready_to_play", + "english_translation": "Ready to play" + }, + { + "key": "block.minecraft.banner.bricks.green", + "english_translation": "Green Field Masoned" + }, + { + "key": "key.right", + "english_translation": "Strafe Right" + }, + { + "key": "subtitles.entity.villager.yes", + "english_translation": "Villager agrees" + }, + { + "key": "gui.multiLineEditBox.character_limit", + "english_translation": "%s/%s" + }, + { + "key": "block.minecraft.infested_chiseled_stone_bricks", + "english_translation": "Infested Chiseled Stone Bricks" + }, + { + "key": "advancements.adventure.totem_of_undying.description", + "english_translation": "Use a Totem of Undying to cheat death" + }, + { + "key": "options.darknessEffectScale", + "english_translation": "Darkness Pulsing" + }, + { + "key": "death.attack.lava", + "english_translation": "%1$s tried to swim in lava" + }, + { + "key": "block.minecraft.jungle_wall_hanging_sign", + "english_translation": "Jungle Wall Hanging Sign" + }, + { + "key": "gamerule.drowningDamage", + "english_translation": "Deal drowning damage" + }, + { + "key": "block.minecraft.banner.triangle_top.cyan", + "english_translation": "Cyan Inverted Chevron" + }, + { + "key": "subtitles.entity.zombie.infect", + "english_translation": "Zombie infects" + }, + { + "key": "subtitles.entity.generic.splash", + "english_translation": "Splashing" + }, + { + "key": "event.minecraft.raid.victory", + "english_translation": "Victory" + }, + { + "key": "item.minecraft.firework_star.red", + "english_translation": "Red" + }, + { + "key": "death.attack.fireball.item", + "english_translation": "%1$s was fireballed by %2$s using %3$s" + }, + { + "key": "key.keyboard.keypad.equal", + "english_translation": "Keypad =" + }, + { + "key": "subtitles.block.pressure_plate.click", + "english_translation": "Pressure Plate clicks" + }, + { + "key": "subtitles.entity.husk.ambient", + "english_translation": "Husk groans" + }, + { + "key": "options.difficulty", + "english_translation": "Difficulty" + }, + { + "key": "argument.uuid.invalid", + "english_translation": "Invalid UUID" + }, + { + "key": "death.attack.inFire", + "english_translation": "%1$s went up in flames" + }, + { + "key": "commands.scoreboard.players.set.success.single", + "english_translation": "Set %s for %s to %s" + }, + { + "key": "entity.minecraft.skeleton", + "english_translation": "Skeleton" + }, + { + "key": "item.minecraft.blaze_spawn_egg", + "english_translation": "Blaze Spawn Egg" + }, + { + "key": "multiplayerWarning.message", + "english_translation": "Caution: Online play is offered by third-party servers that are not owned, operated, or supervised by Mojang Studios or Microsoft. During online play, you may be exposed to unmoderated chat messages or other types of user-generated content that may not be suitable for everyone." + }, + { + "key": "block.minecraft.banner.triangle_bottom.black", + "english_translation": "Black Chevron" + }, + { + "key": "commands.advancement.grant.criterion.to.one.success", + "english_translation": "Granted criterion '%s' of advancement %s to %s" + }, + { + "key": "block.minecraft.warped_slab", + "english_translation": "Warped Slab" + }, + { + "key": "item.modifiers.offhand", + "english_translation": "When in Off Hand:" + }, + { + "key": "multiplayer.status.incompatible", + "english_translation": "Incompatible version!" + }, + { + "key": "commands.drop.no_loot_table", + "english_translation": "Entity %s has no loot table" + }, + { + "key": "item.dyed", + "english_translation": "Dyed" + }, + { + "key": "subtitles.entity.wandering_trader.yes", + "english_translation": "Wandering Trader agrees" + }, + { + "key": "entity.minecraft.tnt_minecart", + "english_translation": "Minecart with TNT" + }, + { + "key": "key.mouse.left", + "english_translation": "Left Button" + }, + { + "key": "block.minecraft.banner.stripe_middle.orange", + "english_translation": "Orange Fess" + }, + { + "key": "mco.configure.world.spawnAnimals", + "english_translation": "Spawn animals" + }, + { + "key": "block.minecraft.magma_block", + "english_translation": "Magma Block" + }, + { + "key": "block.minecraft.lime_candle_cake", + "english_translation": "Cake with Lime Candle" + }, + { + "key": "item.minecraft.splash_potion.effect.awkward", + "english_translation": "Awkward Splash Potion" + }, + { + "key": "block.minecraft.decorated_pot", + "english_translation": "Decorated Pot" + }, + { + "key": "block.minecraft.spruce_door", + "english_translation": "Spruce Door" + }, + { + "key": "tutorial.find_tree.title", + "english_translation": "Find a tree" + }, + { + "key": "block.minecraft.pumpkin", + "english_translation": "Pumpkin" + }, + { + "key": "subtitles.entity.mule.death", + "english_translation": "Mule dies" + }, + { + "key": "subtitles.block.candle.crackle", + "english_translation": "Candle crackles" + }, + { + "key": "commands.ride.already_riding", + "english_translation": "%s is already riding %s" + }, + { + "key": "block.minecraft.banner.circle.pink", + "english_translation": "Pink Roundel" + }, + { + "key": "subtitles.entity.chicken.egg", + "english_translation": "Chicken plops" + }, + { + "key": "painting.minecraft.creebet.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "block.minecraft.sponge", + "english_translation": "Sponge" + }, + { + "key": "options.online.title", + "english_translation": "Online Options" + }, + { + "key": "subtitles.entity.zoglin.death", + "english_translation": "Zoglin dies" + }, + { + "key": "block.minecraft.light_gray_candle", + "english_translation": "Light Gray Candle" + }, + { + "key": "advancements.nether.create_beacon.description", + "english_translation": "Construct and place a Beacon" + }, + { + "key": "subtitles.entity.warden.death", + "english_translation": "Warden dies" + }, + { + "key": "options.sounds", + "english_translation": "Music & Sounds..." + }, + { + "key": "stat.minecraft.player_kills", + "english_translation": "Player Kills" + }, + { + "key": "telemetry.property.advancement_id.title", + "english_translation": "Advancement ID" + }, + { + "key": "item.minecraft.golden_boots", + "english_translation": "Golden Boots" + }, + { + "key": "key.keyboard.delete", + "english_translation": "Delete" + }, + { + "key": "commands.advancement.revoke.many.to.many.success", + "english_translation": "Revoked %s advancements from %s players" + }, + { + "key": "gui.chatSelection.selected", + "english_translation": "%s/%s message(s) selected" + }, + { + "key": "advancements.nether.all_effects.title", + "english_translation": "How Did We Get Here?" + }, + { + "key": "item.minecraft.birch_chest_boat", + "english_translation": "Birch Boat with Chest" + }, + { + "key": "subtitles.entity.evoker.prepare_summon", + "english_translation": "Evoker prepares summoning" + }, + { + "key": "block.minecraft.bamboo_door", + "english_translation": "Bamboo Door" + }, + { + "key": "block.minecraft.banner.stripe_downright.light_blue", + "english_translation": "Light Blue Bend" + }, + { + "key": "menu.working", + "english_translation": "Working..." + }, + { + "key": "advMode.mode.auto", + "english_translation": "Repeat" + }, + { + "key": "narrator.controls.reset", + "english_translation": "Reset %s button" + }, + { + "key": "gui.socialInteractions.tooltip.report.not_reportable", + "english_translation": "This player can't be reported, because their chat messages can't be verified on this server" + }, + { + "key": "mco.template.title.minigame", + "english_translation": "Minigames" + }, + { + "key": "dataPack.validation.working", + "english_translation": "Validating selected data packs..." + }, + { + "key": "argument.entity.options.y.description", + "english_translation": "y position" + }, + { + "key": "block.minecraft.cocoa", + "english_translation": "Cocoa" + }, + { + "key": "advancements.adventure.sleep_in_bed.description", + "english_translation": "Sleep in a Bed to change your respawn point" + }, + { + "key": "block.minecraft.banner.cross.purple", + "english_translation": "Purple Saltire" + }, + { + "key": "gui.hours", + "english_translation": "%s hour(s)" + }, + { + "key": "block.minecraft.andesite_stairs", + "english_translation": "Andesite Stairs" + }, + { + "key": "item.minecraft.carrot", + "english_translation": "Carrot" + }, + { + "key": "block.minecraft.banner.skull.orange", + "english_translation": "Orange Skull Charge" + }, + { + "key": "block.minecraft.red_sand", + "english_translation": "Red Sand" + }, + { + "key": "death.attack.witherSkull.item", + "english_translation": "%1$s was shot by a skull from %2$s using %3$s" + }, + { + "key": "block.minecraft.banner.half_horizontal.gray", + "english_translation": "Gray Per Fess" + }, + { + "key": "painting.minecraft.wasteland.title", + "english_translation": "Wasteland" + }, + { + "key": "advancements.nether.return_to_sender.description", + "english_translation": "Destroy a Ghast with a fireball" + }, + { + "key": "gamerule.doWardenSpawning", + "english_translation": "Spawn Wardens" + }, + { + "key": "item.minecraft.iron_ingot", + "english_translation": "Iron Ingot" + }, + { + "key": "painting.minecraft.sea.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "subtitles.entity.cat.death", + "english_translation": "Cat dies" + }, + { + "key": "item.minecraft.snowball", + "english_translation": "Snowball" + }, + { + "key": "block.minecraft.banner.curly_border.yellow", + "english_translation": "Yellow Bordure Indented" + }, + { + "key": "subtitles.entity.illusioner.prepare_blindness", + "english_translation": "Illusioner prepares blindness" + }, + { + "key": "disconnect.endOfStream", + "english_translation": "End of stream" + }, + { + "key": "jigsaw_block.levels", + "english_translation": "Levels: %s" + }, + { + "key": "commands.locate.structure.not_found", + "english_translation": "Could not find a structure of type \"%s\" nearby" + }, + { + "key": "block.minecraft.wet_sponge", + "english_translation": "Wet Sponge" + }, + { + "key": "stat.minecraft.open_chest", + "english_translation": "Chests Opened" + }, + { + "key": "container.repair.cost", + "english_translation": "Enchantment Cost: %1$s" + }, + { + "key": "subtitles.entity.witch.death", + "english_translation": "Witch dies" + }, + { + "key": "block.minecraft.banner.triangles_top.light_blue", + "english_translation": "Light Blue Chief Indented" + }, + { + "key": "item.minecraft.music_disc_mall", + "english_translation": "Music Disc" + }, + { + "key": "subtitles.entity.warden.ambient", + "english_translation": "Warden whines" + }, + { + "key": "block.minecraft.quartz_stairs", + "english_translation": "Quartz Stairs" + }, + { + "key": "argument.resource_tag.not_found", + "english_translation": "Can't find tag '%s' of type '%s'" + }, + { + "key": "commands.advancement.grant.many.to.one.success", + "english_translation": "Granted %s advancements to %s" + }, + { + "key": "connect.joining", + "english_translation": "Joining world..." + }, + { + "key": "block.minecraft.banner.square_top_left.purple", + "english_translation": "Purple Chief Dexter Canton" + }, + { + "key": "item.minecraft.enchanted_book", + "english_translation": "Enchanted Book" + }, + { + "key": "pack.selected.title", + "english_translation": "Selected" + }, + { + "key": "commands.team.option.name.success", + "english_translation": "Updated the name of team %s" + }, + { + "key": "selectWorld.gameMode.adventure.line2", + "english_translation": "be added or removed" + }, + { + "key": "item.minecraft.oak_boat", + "english_translation": "Oak Boat" + }, + { + "key": "selectWorld.gameMode.adventure.line1", + "english_translation": "Same as Survival Mode, but blocks can't" + }, + { + "key": "clear.failed.multiple", + "english_translation": "No items were found on %s players" + }, + { + "key": "selectWorld.warning.deprecated.title", + "english_translation": "Warning! These settings are using deprecated features" + }, + { + "key": "key.left", + "english_translation": "Strafe Left" + }, + { + "key": "block.minecraft.banner.triangles_top.magenta", + "english_translation": "Magenta Chief Indented" + }, + { + "key": "entity.minecraft.spawner_minecart", + "english_translation": "Minecart with Monster Spawner" + }, + { + "key": "item.minecraft.stone_sword", + "english_translation": "Stone Sword" + }, + { + "key": "block.minecraft.white_shulker_box", + "english_translation": "White Shulker Box" + }, + { + "key": "options.off.composed", + "english_translation": "%s: OFF" + }, + { + "key": "advancements.husbandry.breed_all_animals.title", + "english_translation": "Two by Two" + }, + { + "key": "block.minecraft.flowering_azalea", + "english_translation": "Flowering Azalea" + }, + { + "key": "block.minecraft.chiseled_nether_bricks", + "english_translation": "Chiseled Nether Bricks" + }, + { + "key": "block.minecraft.melon", + "english_translation": "Melon" + }, + { + "key": "block.minecraft.acacia_planks", + "english_translation": "Acacia Planks" + }, + { + "key": "item.minecraft.music_disc_stal", + "english_translation": "Music Disc" + }, + { + "key": "entity.minecraft.villager.mason", + "english_translation": "Mason" + }, + { + "key": "block.minecraft.banner.globe.light_gray", + "english_translation": "Light Gray Globe" + }, + { + "key": "item.minecraft.flower_banner_pattern", + "english_translation": "Banner Pattern" + }, + { + "key": "mco.configure.world.subscription.extend", + "english_translation": "Extend subscription" + }, + { + "key": "container.repair", + "english_translation": "Repair & Name" + }, + { + "key": "connect.negotiating", + "english_translation": "Negotiating..." + }, + { + "key": "filled_map.monument", + "english_translation": "Ocean Explorer Map" + }, + { + "key": "narration.button.usage.focused", + "english_translation": "Press Enter to activate" + }, + { + "key": "block.minecraft.chipped_anvil", + "english_translation": "Chipped Anvil" + }, + { + "key": "argument.entity.options.type.invalid", + "english_translation": "Invalid or unknown entity type '%s'" + }, + { + "key": "options.chat.scale", + "english_translation": "Chat Text Size" + }, + { + "key": "biome.minecraft.end_midlands", + "english_translation": "End Midlands" + }, + { + "key": "block.minecraft.infested_deepslate", + "english_translation": "Infested Deepslate" + }, + { + "key": "mco.reset.world.experience", + "english_translation": "Experiences" + }, + { + "key": "subtitles.entity.warden.listening_angry", + "english_translation": "Warden takes notice angrily" + }, + { + "key": "effect.minecraft.bad_omen", + "english_translation": "Bad Omen" + }, + { + "key": "optimizeWorld.stage.finished", + "english_translation": "Finishing up..." + }, + { + "key": "subtitles.entity.experience_orb.pickup", + "english_translation": "Experience gained" + }, + { + "key": "gui.chatReport.select_reason", + "english_translation": "Select Report Category" + }, + { + "key": "subtitles.entity.ender_pearl.throw", + "english_translation": "Ender Pearl flies" + }, + { + "key": "commands.experience.query.levels", + "english_translation": "%s has %s experience levels" + }, + { + "key": "debug.inspect.client.entity", + "english_translation": "Copied client-side entity data to clipboard" + }, + { + "key": "mco.brokenworld.minigame.title", + "english_translation": "This minigame is no longer supported" + }, + { + "key": "subtitles.entity.turtle.hurt_baby", + "english_translation": "Turtle baby hurts" + }, + { + "key": "block.minecraft.stripped_mangrove_log", + "english_translation": "Stripped Mangrove Log" + }, + { + "key": "block.minecraft.banner.circle.yellow", + "english_translation": "Yellow Roundel" + }, + { + "key": "block.minecraft.banner.triangle_bottom.green", + "english_translation": "Green Chevron" + }, + { + "key": "editGamerule.default", + "english_translation": "Default: %s" + }, + { + "key": "item.minecraft.firework_star.fade_to", + "english_translation": "Fade to" + }, + { + "key": "item.minecraft.music_disc_cat", + "english_translation": "Music Disc" + }, + { + "key": "block.minecraft.banner.gradient_up.orange", + "english_translation": "Orange Base Gradient" + }, + { + "key": "block.minecraft.black_stained_glass_pane", + "english_translation": "Black Stained Glass Pane" + }, + { + "key": "subtitles.entity.ghast.death", + "english_translation": "Ghast dies" + }, + { + "key": "subtitles.entity.cow.ambient", + "english_translation": "Cow moos" + }, + { + "key": "block.minecraft.oak_wood", + "english_translation": "Oak Wood" + }, + { + "key": "block.minecraft.powered_rail", + "english_translation": "Powered Rail" + }, + { + "key": "datapackFailure.safeMode.failed.title", + "english_translation": "Failed to load world in Safe Mode." + }, + { + "key": "argument.dimension.invalid", + "english_translation": "Unknown dimension '%s'" + }, + { + "key": "debug.dump_dynamic_textures", + "english_translation": "Saved dynamic textures to %s" + }, + { + "key": "argument.entity.selector.self", + "english_translation": "Current entity" + }, + { + "key": "commands.team.option.prefix.success", + "english_translation": "Team prefix set to %s" + }, + { + "key": "entity.minecraft.husk", + "english_translation": "Husk" + }, + { + "key": "commands.worldborder.center.success", + "english_translation": "Set the center of the world border to %s, %s" + }, + { + "key": "block.minecraft.banner.half_vertical_right.yellow", + "english_translation": "Yellow Per Pale Inverted" + }, + { + "key": "block.minecraft.banner.mojang.light_blue", + "english_translation": "Light Blue Thing" + }, + { + "key": "title.multiplayer.disabled", + "english_translation": "Multiplayer is disabled. Please check your Microsoft account settings." + }, + { + "key": "biome.minecraft.windswept_gravelly_hills", + "english_translation": "Windswept Gravelly Hills" + }, + { + "key": "block.minecraft.green_shulker_box", + "english_translation": "Green Shulker Box" + }, + { + "key": "entity.minecraft.wither_skeleton", + "english_translation": "Wither Skeleton" + }, + { + "key": "selectWorld.seedInfo", + "english_translation": "Leave blank for a random seed" + }, + { + "key": "commands.bossbar.set.name.success", + "english_translation": "Custom bossbar %s has been renamed" + }, + { + "key": "argument.integer.big", + "english_translation": "Integer must not be more than %s, found %s" + }, + { + "key": "commands.reload.failure", + "english_translation": "Reload failed; keeping old data" + }, + { + "key": "item.minecraft.dark_oak_chest_boat", + "english_translation": "Dark Oak Boat with Chest" + }, + { + "key": "block.minecraft.petrified_oak_slab", + "english_translation": "Petrified Oak Slab" + }, + { + "key": "block.minecraft.banner.square_bottom_left.light_gray", + "english_translation": "Light Gray Base Dexter Canton" + }, + { + "key": "selectWorld.gameMode.adventure", + "english_translation": "Adventure" + }, + { + "key": "effect.minecraft.levitation", + "english_translation": "Levitation" + }, + { + "key": "advancements.adventure.arbalistic.description", + "english_translation": "Kill five unique mobs with one crossbow shot" + }, + { + "key": "subtitles.item.honeycomb.wax_on", + "english_translation": "Wax on" + }, + { + "key": "subtitles.entity.item.break", + "english_translation": "Item breaks" + }, + { + "key": "subtitles.entity.tadpole.grow_up", + "english_translation": "Tadpole grows up" + }, + { + "key": "item.minecraft.chest_minecart", + "english_translation": "Minecart with Chest" + }, + { + "key": "commands.defaultgamemode.success", + "english_translation": "The default game mode is now %s" + }, + { + "key": "block.minecraft.banner.half_vertical.pink", + "english_translation": "Pink Per Pale" + }, + { + "key": "argument.component.invalid", + "english_translation": "Invalid chat component: %s" + }, + { + "key": "block.minecraft.zombie_head", + "english_translation": "Zombie Head" + }, + { + "key": "commands.tag.remove.success.multiple", + "english_translation": "Removed tag '%s' from %s entities" + }, + { + "key": "block.minecraft.warped_roots", + "english_translation": "Warped Roots" + }, + { + "key": "telemetry.property.client_modded.title", + "english_translation": "Client Modded" + }, + { + "key": "commands.recipe.take.success.single", + "english_translation": "Took %s recipes from %s" + }, + { + "key": "biome.minecraft.ocean", + "english_translation": "Ocean" + }, + { + "key": "block.minecraft.piglin_head", + "english_translation": "Piglin Head" + }, + { + "key": "options.attack.hotbar", + "english_translation": "Hotbar" + }, + { + "key": "block.minecraft.banner.bricks.white", + "english_translation": "White Field Masoned" + }, + { + "key": "commands.message.display.outgoing", + "english_translation": "You whisper to %s: %s" + }, + { + "key": "effect.minecraft.weakness", + "english_translation": "Weakness" + }, + { + "key": "arguments.swizzle.invalid", + "english_translation": "Invalid swizzle, expected combination of 'x', 'y' and 'z'" + }, + { + "key": "menu.multiplayer", + "english_translation": "Multiplayer" + }, + { + "key": "mco.news", + "english_translation": "Realms news" + }, + { + "key": "subtitles.entity.arrow.hit", + "english_translation": "Arrow hits" + }, + { + "key": "item.minecraft.music_disc_relic.desc", + "english_translation": "Aaron Cherof - Relic" + }, + { + "key": "options.prioritizeChunkUpdates.nearby", + "english_translation": "Fully Blocking" + }, + { + "key": "advancements.adventure.fall_from_world_height.title", + "english_translation": "Caves & Cliffs" + }, + { + "key": "block.minecraft.banner.gradient.yellow", + "english_translation": "Yellow Gradient" + }, + { + "key": "enchantment.minecraft.soul_speed", + "english_translation": "Soul Speed" + }, + { + "key": "subtitles.entity.warden.dig", + "english_translation": "Warden digs" + }, + { + "key": "block.minecraft.sand", + "english_translation": "Sand" + }, + { + "key": "item.minecraft.zombified_piglin_spawn_egg", + "english_translation": "Zombified Piglin Spawn Egg" + }, + { + "key": "advancements.adventure.read_power_from_chiseled_bookshelf.description", + "english_translation": "Read the power signal of a Chiseled Bookshelf using a Comparator" + }, + { + "key": "selectWorld.versionUnknown", + "english_translation": "unknown" + }, + { + "key": "subtitles.block.sniffer_egg.hatch", + "english_translation": "Sniffer Egg hatches" + }, + { + "key": "biome.minecraft.bamboo_jungle", + "english_translation": "Bamboo Jungle" + }, + { + "key": "structure_block.integrity", + "english_translation": "Structure Integrity and Seed" + }, + { + "key": "block.minecraft.stripped_oak_log", + "english_translation": "Stripped Oak Log" + }, + { + "key": "selectWorld.import_worldgen_settings.select_file", + "english_translation": "Select settings file (.json)" + }, + { + "key": "debug.show_hitboxes.off", + "english_translation": "Hitboxes: hidden" + }, + { + "key": "block.minecraft.smooth_quartz_stairs", + "english_translation": "Smooth Quartz Stairs" + }, + { + "key": "block.minecraft.ender_chest", + "english_translation": "Ender Chest" + }, + { + "key": "commands.data.get.invalid", + "english_translation": "Can't get %s; only numeric tags are allowed" + }, + { + "key": "options.mouseWheelSensitivity", + "english_translation": "Scroll Sensitivity" + }, + { + "key": "argument.double.low", + "english_translation": "Double must not be less than %s, found %s" + }, + { + "key": "subtitles.block.end_portal_frame.fill", + "english_translation": "Eye of Ender attaches" + }, + { + "key": "subtitles.entity.puffer_fish.flop", + "english_translation": "Pufferfish flops" + }, + { + "key": "block.minecraft.bamboo_mosaic_slab", + "english_translation": "Bamboo Mosaic Slab" + }, + { + "key": "dataPack.update_1_20.description", + "english_translation": "New features and content for Minecraft 1.20" + }, + { + "key": "block.minecraft.azalea_leaves", + "english_translation": "Azalea Leaves" + }, + { + "key": "effect.duration.infinite", + "english_translation": "∞" + }, + { + "key": "structure_block.size_success", + "english_translation": "Size successfully detected for '%s'" + }, + { + "key": "item.minecraft.potion.effect.poison", + "english_translation": "Potion of Poison" + }, + { + "key": "block.minecraft.banner.bricks.blue", + "english_translation": "Blue Field Masoned" + }, + { + "key": "advancements.husbandry.safely_harvest_honey.title", + "english_translation": "Bee Our Guest" + }, + { + "key": "mco.configure.world.restore.download.question.line2", + "english_translation": "Do you want to continue?" + }, + { + "key": "mco.configure.world.restore.download.question.line1", + "english_translation": "The world will be downloaded and added to your single player worlds." + }, + { + "key": "options.multiplayer.title", + "english_translation": "Multiplayer Settings..." + }, + { + "key": "mco.create.world.wait", + "english_translation": "Creating the realm..." + }, + { + "key": "key.keyboard.right.alt", + "english_translation": "Right Alt" + }, + { + "key": "stat.minecraft.damage_absorbed", + "english_translation": "Damage Absorbed" + }, + { + "key": "translation.test.none", + "english_translation": "Hello, world!" + }, + { + "key": "gamerule.doMobSpawning", + "english_translation": "Spawn mobs" + }, + { + "key": "commands.op.failed", + "english_translation": "Nothing changed. The player already is an operator" + }, + { + "key": "selectWorld.gameMode.hardcore.line2", + "english_translation": "difficulty, and one life only" + }, + { + "key": "selectWorld.gameMode.hardcore.line1", + "english_translation": "Same as Survival Mode, locked at hardest" + }, + { + "key": "block.minecraft.acacia_slab", + "english_translation": "Acacia Slab" + }, + { + "key": "commands.attribute.modifier.remove.success", + "english_translation": "Removed modifier %s from attribute %s for entity %s" + }, + { + "key": "item.minecraft.tipped_arrow.effect.slowness", + "english_translation": "Arrow of Slowness" + }, + { + "key": "subtitles.entity.dolphin.jump", + "english_translation": "Dolphin jumps" + }, + { + "key": "item.minecraft.ender_pearl", + "english_translation": "Ender Pearl" + }, + { + "key": "subtitles.entity.piglin_brute.hurt", + "english_translation": "Piglin Brute hurts" + }, + { + "key": "painting.minecraft.match.title", + "english_translation": "Match" + }, + { + "key": "multiplayer.status.player_count.narration", + "english_translation": "%s out of %s players online" + }, + { + "key": "block.minecraft.banner.triangles_bottom.yellow", + "english_translation": "Yellow Base Indented" + }, + { + "key": "subtitles.item.bucket.fill_fish", + "english_translation": "Fish captured" + }, + { + "key": "item.minecraft.music_disc_otherside.desc", + "english_translation": "Lena Raine - otherside" + }, + { + "key": "block.minecraft.banner.base.light_blue", + "english_translation": "Fully Light Blue Field" + }, + { + "key": "mco.configure.world.buttons.delete", + "english_translation": "Delete" + }, + { + "key": "subtitles.entity.fox.sniff", + "english_translation": "Fox sniffs" + }, + { + "key": "item.minecraft.music_disc_5.desc", + "english_translation": "Samuel Åberg - 5" + }, + { + "key": "selectWorld.incompatible_series", + "english_translation": "Created by an incompatible version" + }, + { + "key": "soundCategory.voice", + "english_translation": "Voice/Speech" + }, + { + "key": "attribute.name.generic.knockback_resistance", + "english_translation": "Knockback Resistance" + }, + { + "key": "subtitles.entity.rabbit.attack", + "english_translation": "Rabbit attacks" }, { "key": "createWorld.customize.custom.lowerLimitScale", "english_translation": "Lower Limit Scale" }, + { + "key": "subtitles.entity.wolf.shake", + "english_translation": "Wolf shakes" + }, + { + "key": "advancements.story.root.description", + "english_translation": "The heart and story of the game" + }, + { + "key": "commands.stop.stopping", + "english_translation": "Stopping the server" + }, + { + "key": "biome.minecraft.old_growth_spruce_taiga", + "english_translation": "Old Growth Spruce Taiga" + }, + { + "key": "multiplayer.texturePrompt.failure.line1", + "english_translation": "Server resource pack couldn't be applied" + }, + { + "key": "multiplayer.texturePrompt.failure.line2", + "english_translation": "Any functionality that requires custom resources might not work as expected" + }, + { + "key": "advancements.adventure.trade_at_world_height.title", + "english_translation": "Star Trader" + }, + { + "key": "gui.abuseReport.reason.self_harm_or_suicide", + "english_translation": "Imminent harm - Self-harm or suicide" + }, + { + "key": "block.minecraft.light_gray_concrete_powder", + "english_translation": "Light Gray Concrete Powder" + }, + { + "key": "item.minecraft.splash_potion.effect.mundane", + "english_translation": "Mundane Splash Potion" + }, + { + "key": "block.minecraft.banner.gradient.pink", + "english_translation": "Pink Gradient" + }, + { + "key": "block.minecraft.activator_rail", + "english_translation": "Activator Rail" + }, + { + "key": "commands.list.players", + "english_translation": "There are %s of a max of %s players online: %s" + }, + { + "key": "createWorld.customize.custom.biomeDepthWeight", + "english_translation": "Biome Depth Weight" + }, + { + "key": "multiplayer.status.motd.narration", + "english_translation": "Message of the day: %s" + }, + { + "key": "block.minecraft.red_sandstone_wall", + "english_translation": "Red Sandstone Wall" + }, + { + "key": "item.minecraft.diamond_axe", + "english_translation": "Diamond Axe" + }, + { + "key": "argument.pos.unloaded", + "english_translation": "That position is not loaded" + }, + { + "key": "block.minecraft.mangrove_planks", + "english_translation": "Mangrove Planks" + }, + { + "key": "commands.scoreboard.players.list.success", + "english_translation": "There are %s tracked entity/entities: %s" + }, + { + "key": "book.byAuthor", + "english_translation": "by %1$s" + }, + { + "key": "options.percent_value", + "english_translation": "%s: %s%%" + }, + { + "key": "advancements.nether.all_potions.description", + "english_translation": "Have every potion effect applied at the same time" + }, + { + "key": "item.minecraft.diamond_helmet", + "english_translation": "Diamond Helmet" + }, + { + "key": "item.minecraft.fire_charge", + "english_translation": "Fire Charge" + }, + { + "key": "subtitles.entity.parrot.imitate.illusioner", + "english_translation": "Parrot murmurs" + }, + { + "key": "subtitles.item.book.put", + "english_translation": "Book thumps" + }, + { + "key": "subtitles.entity.zombified_piglin.angry", + "english_translation": "Zombified Piglin grunts angrily" + }, + { + "key": "block.minecraft.birch_leaves", + "english_translation": "Birch Leaves" + }, + { + "key": "block.minecraft.banner.square_bottom_right.pink", + "english_translation": "Pink Base Sinister Canton" + }, + { + "key": "item.minecraft.diamond_pickaxe", + "english_translation": "Diamond Pickaxe" + }, + { + "key": "block.minecraft.sea_pickle", + "english_translation": "Sea Pickle" + }, + { + "key": "entity.minecraft.sheep", + "english_translation": "Sheep" + }, + { + "key": "block.minecraft.dark_oak_door", + "english_translation": "Dark Oak Door" + }, + { + "key": "subtitles.entity.player.hurt_drown", + "english_translation": "Player drowning" + }, + { + "key": "block.minecraft.light_gray_carpet", + "english_translation": "Light Gray Carpet" + }, + { + "key": "selectWorld.delete", + "english_translation": "Delete" + }, + { + "key": "subtitles.entity.item.pickup", + "english_translation": "Item plops" + }, + { + "key": "mco.terms.buttons.disagree", + "english_translation": "Don't agree" + }, + { + "key": "biome.minecraft.snowy_plains", + "english_translation": "Snowy Plains" + }, + { + "key": "resourcepack.progress", + "english_translation": "Downloading file (%s MB)..." + }, + { + "key": "block.minecraft.light_blue_wool", + "english_translation": "Light Blue Wool" + }, + { + "key": "item.minecraft.netherite_hoe", + "english_translation": "Netherite Hoe" + }, + { + "key": "subtitles.entity.player.hurt_on_fire", + "english_translation": "Player burns" + }, + { + "key": "options.modelPart.cape", + "english_translation": "Cape" + }, + { + "key": "commands.whitelist.disabled", + "english_translation": "Whitelist is now turned off" + }, + { + "key": "options.generic_value", + "english_translation": "%s: %s" + }, + { + "key": "subtitles.entity.panda.bite", + "english_translation": "Panda bites" + }, + { + "key": "block.minecraft.banner.square_bottom_right.yellow", + "english_translation": "Yellow Base Sinister Canton" + }, + { + "key": "subtitles.block.portal.ambient", + "english_translation": "Portal whooshes" + }, + { + "key": "subtitles.entity.parrot.death", + "english_translation": "Parrot dies" + }, + { + "key": "block.minecraft.trapped_chest", + "english_translation": "Trapped Chest" + }, + { + "key": "block.minecraft.banner.triangles_top.gray", + "english_translation": "Gray Chief Indented" + }, + { + "key": "subtitles.entity.illusioner.ambient", + "english_translation": "Illusioner murmurs" + }, + { + "key": "commands.whitelist.reloaded", + "english_translation": "Reloaded the whitelist" + }, + { + "key": "block.minecraft.mud_bricks", + "english_translation": "Mud Bricks" + }, + { + "key": "commands.data.merge.failed", + "english_translation": "Nothing changed. The specified properties already have these values" + }, + { + "key": "subtitles.entity.axolotl.attack", + "english_translation": "Axolotl attacks" + }, + { + "key": "block.minecraft.potted_warped_fungus", + "english_translation": "Potted Warped Fungus" + }, + { + "key": "biome.minecraft.river", + "english_translation": "River" + }, + { + "key": "createWorld.customize.custom.stretchY", + "english_translation": "Height Stretch" + }, + { + "key": "subtitles.block.conduit.ambient", + "english_translation": "Conduit pulses" + }, + { + "key": "subtitles.item.axe.strip", + "english_translation": "Axe strips" + }, + { + "key": "subtitles.block.beehive.drip", + "english_translation": "Honey drips" + }, + { + "key": "subtitles.entity.bat.ambient", + "english_translation": "Bat screeches" + }, + { + "key": "commands.tag.add.success.multiple", + "english_translation": "Added tag '%s' to %s entities" + }, + { + "key": "entity.minecraft.spectral_arrow", + "english_translation": "Spectral Arrow" + }, + { + "key": "selectWorld.deleteQuestion", + "english_translation": "Are you sure you want to delete this world?" + }, + { + "key": "block.minecraft.cherry_pressure_plate", + "english_translation": "Cherry Pressure Plate" + }, + { + "key": "selectWorld.edit.export_worldgen_settings.failure", + "english_translation": "Export failed" + }, + { + "key": "createWorld.customize.custom.depthNoiseScaleZ", + "english_translation": "Depth Noise Scale Z" + }, + { + "key": "item.minecraft.netherite_pickaxe", + "english_translation": "Netherite Pickaxe" + }, + { + "key": "block.minecraft.mangrove_wood", + "english_translation": "Mangrove Wood" + }, + { + "key": "item.minecraft.husk_spawn_egg", + "english_translation": "Husk Spawn Egg" + }, + { + "key": "commands.recipe.give.success.single", + "english_translation": "Unlocked %s recipes for %s" + }, + { + "key": "subtitles.block.generic.footsteps", + "english_translation": "Footsteps" + }, + { + "key": "block.minecraft.mangrove_wall_hanging_sign", + "english_translation": "Mangrove Wall Hanging Sign" + }, + { + "key": "commands.attribute.modifier.add.success", + "english_translation": "Added modifier %s to attribute %s for entity %s" + }, + { + "key": "block.minecraft.orange_tulip", + "english_translation": "Orange Tulip" + }, + { + "key": "item.minecraft.disc_fragment_5", + "english_translation": "Disc Fragment" + }, + { + "key": "commands.title.show.actionbar.multiple", + "english_translation": "Showing new actionbar title for %s players" + }, + { + "key": "block.minecraft.banner.stripe_bottom.red", + "english_translation": "Red Base" + }, + { + "key": "block.minecraft.netherite_block", + "english_translation": "Block of Netherite" + }, + { + "key": "commands.debug.started", + "english_translation": "Started tick profiling" + }, + { + "key": "block.minecraft.infested_cracked_stone_bricks", + "english_translation": "Infested Cracked Stone Bricks" + }, + { + "key": "filled_map.unknown", + "english_translation": "Unknown Map" + }, + { + "key": "item.minecraft.tipped_arrow.effect.thick", + "english_translation": "Tipped Arrow" + }, + { + "key": "subtitles.entity.guardian.ambient", + "english_translation": "Guardian moans" + }, + { + "key": "commands.team.list.teams.empty", + "english_translation": "There are no teams" + }, + { + "key": "item.minecraft.goat_spawn_egg", + "english_translation": "Goat Spawn Egg" + }, + { + "key": "block.minecraft.oak_hanging_sign", + "english_translation": "Oak Hanging Sign" + }, + { + "key": "block.minecraft.banner.piglin.light_gray", + "english_translation": "Light Gray Snout" + }, + { + "key": "subtitles.block.dispenser.dispense", + "english_translation": "Dispensed item" + }, + { + "key": "subtitles.block.sculk_sensor.clicking_stop", + "english_translation": "Sculk Sensor stops clicking" + }, + { + "key": "block.minecraft.banner.gradient_up.brown", + "english_translation": "Brown Base Gradient" + }, + { + "key": "stat.itemsButton", + "english_translation": "Items" + }, + { + "key": "block.minecraft.banner.stripe_downleft.brown", + "english_translation": "Brown Bend Sinister" + }, + { + "key": "subtitles.entity.panda.ambient", + "english_translation": "Panda pants" + }, + { + "key": "item.minecraft.lingering_potion.effect.fire_resistance", + "english_translation": "Lingering Potion of Fire Resistance" + }, + { + "key": "telemetry.property.render_distance.title", + "english_translation": "Render Distance" + }, + { + "key": "block.minecraft.repeater", + "english_translation": "Redstone Repeater" + }, + { + "key": "block.minecraft.tuff", + "english_translation": "Tuff" + }, + { + "key": "options.graphics.warning.accept", + "english_translation": "Continue Without Support" + }, + { + "key": "createWorld.customize.custom.depthNoiseScaleX", + "english_translation": "Depth Noise Scale X" + }, + { + "key": "subtitles.block.chorus_flower.grow", + "english_translation": "Chorus Flower grows" + }, + { + "key": "advancements.adventure.salvage_sherd.title", + "english_translation": "Respecting the Remnants" + }, + { + "key": "debug.chunk_boundaries.help", + "english_translation": "F3 + G = Show chunk boundaries" + }, + { + "key": "container.dispenser", + "english_translation": "Dispenser" + }, + { + "key": "painting.minecraft.creebet.title", + "english_translation": "Creebet" + }, + { + "key": "block.minecraft.potted_flowering_azalea_bush", + "english_translation": "Potted Flowering Azalea" + }, + { + "key": "subtitles.entity.turtle.ambient_land", + "english_translation": "Turtle chirps" + }, + { + "key": "container.chestDouble", + "english_translation": "Large Chest" + }, + { + "key": "flat_world_preset.minecraft.classic_flat", + "english_translation": "Classic Flat" + }, + { + "key": "advancements.husbandry.wax_on.title", + "english_translation": "Wax On" + }, + { + "key": "painting.minecraft.aztec2.title", + "english_translation": "de_aztec" + }, + { + "key": "gui.abuseReport.send.generic_error", + "english_translation": "Encountered an unexpected error while sending your report." + }, + { + "key": "item.minecraft.splash_potion.effect.weakness", + "english_translation": "Splash Potion of Weakness" + }, + { + "key": "multiplayer.disconnect.illegal_characters", + "english_translation": "Illegal characters in chat" + }, + { + "key": "subtitles.entity.bee.hurt", + "english_translation": "Bee hurts" + }, + { + "key": "subtitles.entity.warden.step", + "english_translation": "Warden steps" + }, + { + "key": "item.minecraft.ghast_tear", + "english_translation": "Ghast Tear" + }, + { + "key": "commands.worldborder.set.failed.big", + "english_translation": "World border cannot be bigger than %s blocks wide" + }, + { + "key": "block.minecraft.red_sandstone_stairs", + "english_translation": "Red Sandstone Stairs" + }, + { + "key": "commands.debug.notRunning", + "english_translation": "The tick profiler hasn't started" + }, + { + "key": "block.minecraft.banner.bricks.light_blue", + "english_translation": "Light Blue Field Masoned" + }, + { + "key": "block.minecraft.cobbled_deepslate", + "english_translation": "Cobbled Deepslate" + }, + { + "key": "argument.id.unknown", + "english_translation": "Unknown ID: %s" + }, + { + "key": "selectWorld.moreWorldOptions", + "english_translation": "More World Options..." + }, + { + "key": "painting.minecraft.stage.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "subtitles.entity.allay.item_given", + "english_translation": "Allay chortles" + }, + { + "key": "subtitles.entity.stray.hurt", + "english_translation": "Stray hurts" + }, + { + "key": "advancements.story.enter_the_end.title", + "english_translation": "The End?" + }, + { + "key": "block.minecraft.lime_banner", + "english_translation": "Lime Banner" + }, + { + "key": "selectWorld.edit.backupFailed", + "english_translation": "Backup failed" + }, + { + "key": "container.smoker", + "english_translation": "Smoker" + }, + { + "key": "block.minecraft.banner.half_vertical.light_blue", + "english_translation": "Light Blue Per Pale" + }, + { + "key": "block.minecraft.brown_carpet", + "english_translation": "Brown Carpet" + }, + { + "key": "quickplay.error.realm_connect", + "english_translation": "Could not connect to Realm" + }, + { + "key": "advancements.story.enter_the_nether.title", + "english_translation": "We Need to Go Deeper" + }, + { + "key": "block.minecraft.dark_oak_wall_hanging_sign", + "english_translation": "Dark Oak Wall Hanging Sign" + }, + { + "key": "selectWorld.bonusItems", + "english_translation": "Bonus Chest" + }, + { + "key": "block.minecraft.brain_coral_wall_fan", + "english_translation": "Brain Coral Wall Fan" + }, + { + "key": "mco.minigame.world.stopButton", + "english_translation": "End minigame" + }, + { + "key": "selectWorld.edit.openFolder", + "english_translation": "Open World Folder" + }, + { + "key": "block.minecraft.cake", + "english_translation": "Cake" + }, + { + "key": "entity.minecraft.frog", + "english_translation": "Frog" + }, + { + "key": "commands.worldborder.warning.distance.failed", + "english_translation": "Nothing changed. The world border warning is already that distance" + }, + { + "key": "mco.selectServer.popup", + "english_translation": "Realms is a safe, simple way to enjoy an online Minecraft world with up to ten friends at a time. It supports loads of minigames and plenty of custom worlds! Only the owner of the realm needs to pay." + }, + { + "key": "block.minecraft.end_stone_bricks", + "english_translation": "End Stone Bricks" + }, + { + "key": "mco.create.world.reset.title", + "english_translation": "Creating world..." + }, + { + "key": "fabric-registry-sync-v0.unknown-remote.subtitle.2", + "english_translation": " See the client logs for more details.\nThe following registry entry namespaces may be related:\n\n" + }, + { + "key": "fabric-registry-sync-v0.unknown-remote.subtitle.1", + "english_translation": "This is usually caused by a mismatched mod set between the client and server." + }, + { + "key": "stat_type.minecraft.killed", + "english_translation": "You killed %s %s" + }, + { + "key": "block.minecraft.banner.diagonal_right.gray", + "english_translation": "Gray Per Bend" + }, + { + "key": "item.minecraft.splash_potion", + "english_translation": "Splash Potion" + }, + { + "key": "block.minecraft.jungle_log", + "english_translation": "Jungle Log" + }, + { + "key": "argument.float.big", + "english_translation": "Float must not be more than %s, found %s" + }, + { + "key": "arguments.nbtpath.too_large", + "english_translation": "Resulting NBT too large" + }, + { + "key": "item.minecraft.mangrove_chest_boat", + "english_translation": "Mangrove Boat with Chest" + }, + { + "key": "block.minecraft.gray_glazed_terracotta", + "english_translation": "Gray Glazed Terracotta" + }, + { + "key": "gui.all", + "english_translation": "All" + }, + { + "key": "death.attack.stalagmite", + "english_translation": "%1$s was impaled on a stalagmite" + }, + { + "key": "subtitles.entity.witch.celebrate", + "english_translation": "Witch cheers" + }, + { + "key": "block.minecraft.chiseled_polished_blackstone", + "english_translation": "Chiseled Polished Blackstone" + }, + { + "key": "container.dropper", + "english_translation": "Dropper" + }, + { + "key": "commands.particle.success", + "english_translation": "Displaying particle %s" + }, + { + "key": "advancements.story.deflect_arrow.title", + "english_translation": "Not Today, Thank You" + }, + { + "key": "flat_world_preset.unknown", + "english_translation": "???" + }, + { + "key": "block.minecraft.black_terracotta", + "english_translation": "Black Terracotta" + }, + { + "key": "instrument.minecraft.admire_goat_horn", + "english_translation": "Admire" + }, + { + "key": "block.minecraft.lily_pad", + "english_translation": "Lily Pad" + }, + { + "key": "commands.data.block.invalid", + "english_translation": "The target block is not a block entity" + }, + { + "key": "trim_pattern.minecraft.rib", + "english_translation": "Rib Armor Trim" + }, + { + "key": "subtitles.entity.chicken.ambient", + "english_translation": "Chicken clucks" + }, + { + "key": "commands.forceload.added.none", + "english_translation": "No force loaded chunks were found in %s" + }, + { + "key": "item.minecraft.smithing_template.armor_trim.applies_to", + "english_translation": "Armor" + }, + { + "key": "advancements.husbandry.balanced_diet.description", + "english_translation": "Eat everything that is edible, even if it's not good for you" + }, + { + "key": "subtitles.block.bubble_column.bubble_pop", + "english_translation": "Bubbles pop" + }, + { + "key": "key.saveToolbarActivator", + "english_translation": "Save Hotbar Activator" + }, + { + "key": "item.minecraft.netherite_boots", + "english_translation": "Netherite Boots" + }, + { + "key": "argument.entity.options.nbt.description", + "english_translation": "Entities with NBT" + }, + { + "key": "block.minecraft.banner.square_bottom_left.pink", + "english_translation": "Pink Base Dexter Canton" + }, + { + "key": "block.minecraft.warped_trapdoor", + "english_translation": "Warped Trapdoor" + }, + { + "key": "advMode.triggering", + "english_translation": "Triggering" + }, + { + "key": "key.keyboard.right.shift", + "english_translation": "Right Shift" + }, + { + "key": "subtitles.entity.villager.work_fletcher", + "english_translation": "Fletcher works" + }, + { + "key": "enchantment.minecraft.vanishing_curse", + "english_translation": "Curse of Vanishing" + }, + { + "key": "options.mainHand", + "english_translation": "Main Hand" + }, + { + "key": "item.minecraft.pumpkin_seeds", + "english_translation": "Pumpkin Seeds" + }, + { + "key": "block.minecraft.nether_brick_wall", + "english_translation": "Nether Brick Wall" + }, + { + "key": "item.minecraft.plenty_pottery_sherd", + "english_translation": "Plenty Pottery Sherd" + }, + { + "key": "item.minecraft.firework_star.trail", + "english_translation": "Trail" + }, + { + "key": "block.minecraft.banner.creeper.magenta", + "english_translation": "Magenta Creeper Charge" + }, + { + "key": "advMode.allEntities", + "english_translation": "Use \"@e\" to target all entities" + }, + { + "key": "subtitles.entity.zombified_piglin.ambient", + "english_translation": "Zombified Piglin grunts" + }, + { + "key": "item.minecraft.armor_stand", + "english_translation": "Armor Stand" + }, + { + "key": "death.attack.fall", + "english_translation": "%1$s hit the ground too hard" + }, + { + "key": "disconnect.spam", + "english_translation": "Kicked for spamming" + }, + { + "key": "key.keyboard.insert", + "english_translation": "Insert" + }, + { + "key": "block.minecraft.banner.creeper.green", + "english_translation": "Green Creeper Charge" + }, + { + "key": "block.minecraft.dragon_wall_head", + "english_translation": "Dragon Wall Head" + }, + { + "key": "advancements.husbandry.breed_an_animal.title", + "english_translation": "The Parrots and the Bats" + }, + { + "key": "block.minecraft.cyan_glazed_terracotta", + "english_translation": "Cyan Glazed Terracotta" + }, + { + "key": "block.minecraft.potted_spruce_sapling", + "english_translation": "Potted Spruce Sapling" + }, + { + "key": "item.minecraft.cave_spider_spawn_egg", + "english_translation": "Cave Spider Spawn Egg" + }, + { + "key": "subtitles.entity.parrot.imitate.hoglin", + "english_translation": "Parrot growls" + }, + { + "key": "block.minecraft.banner.gradient.magenta", + "english_translation": "Magenta Gradient" + }, + { + "key": "block.minecraft.deepslate_tile_wall", + "english_translation": "Deepslate Tile Wall" + }, + { + "key": "multiplayer.status.request_handled", + "english_translation": "Status request has been handled" + }, + { + "key": "item.minecraft.splash_potion.effect.swiftness", + "english_translation": "Splash Potion of Swiftness" + }, + { + "key": "subtitles.entity.pig.saddle", + "english_translation": "Saddle equips" + }, + { + "key": "block.minecraft.banner.circle.magenta", + "english_translation": "Magenta Roundel" + }, + { + "key": "item.minecraft.trader_llama_spawn_egg", + "english_translation": "Trader Llama Spawn Egg" + }, + { + "key": "gui.abuseReport.error.title", + "english_translation": "Problem sending your report" + }, + { + "key": "commands.worldborder.warning.distance.success", + "english_translation": "Set the world border warning distance to %s block(s)" + }, + { + "key": "block.minecraft.banner.stripe_bottom.yellow", + "english_translation": "Yellow Base" + }, + { + "key": "block.minecraft.cut_sandstone_slab", + "english_translation": "Cut Sandstone Slab" + }, + { + "key": "options.accessibility.high_contrast.tooltip", + "english_translation": "Enhances the contrast of UI elements" + }, + { + "key": "block.minecraft.potted_cherry_sapling", + "english_translation": "Potted Cherry Sapling" + }, + { + "key": "block.minecraft.dark_oak_sapling", + "english_translation": "Dark Oak Sapling" + }, + { + "key": "block.minecraft.banner.cross.cyan", + "english_translation": "Cyan Saltire" + }, + { + "key": "selectServer.delete", + "english_translation": "Delete" + }, + { + "key": "commands.spreadplayers.success.entities", + "english_translation": "Spread %s player(s) around %s, %s with an average distance of %s blocks apart" + }, + { + "key": "biome.minecraft.deep_lukewarm_ocean", + "english_translation": "Deep Lukewarm Ocean" + }, + { + "key": "createWorld.customize.custom.preset.goodLuck", + "english_translation": "Good Luck" + }, + { + "key": "mco.download.downloading", + "english_translation": "Downloading" + }, + { + "key": "commands.execute.conditional.pass_count", + "english_translation": "Test passed, count: %s" + }, + { + "key": "block.minecraft.potted_poppy", + "english_translation": "Potted Poppy" + }, + { + "key": "advancements.nether.find_fortress.description", + "english_translation": "Break your way into a Nether Fortress" + }, + { + "key": "mco.selectServer.expires.day", + "english_translation": "Expires in a day" + }, + { + "key": "subtitles.entity.mooshroom.convert", + "english_translation": "Mooshroom transforms" + }, + { + "key": "subtitles.entity.sheep.hurt", + "english_translation": "Sheep hurts" + }, + { + "key": "subtitles.item.bottle.fill", + "english_translation": "Bottle fills" + }, + { + "key": "block.minecraft.dead_tube_coral_block", + "english_translation": "Dead Tube Coral Block" + }, + { + "key": "block.minecraft.banner.stripe_downright.magenta", + "english_translation": "Magenta Bend" + }, + { + "key": "block.minecraft.spruce_sapling", + "english_translation": "Spruce Sapling" + }, + { + "key": "block.minecraft.sticky_piston", + "english_translation": "Sticky Piston" + }, + { + "key": "item.minecraft.birch_boat", + "english_translation": "Birch Boat" + }, + { + "key": "subtitles.block.amethyst_block.resonate", + "english_translation": "Amethyst resonates" + }, + { + "key": "block.minecraft.banner.skull.pink", + "english_translation": "Pink Skull Charge" + }, + { + "key": "item.minecraft.wooden_sword", + "english_translation": "Wooden Sword" + }, + { + "key": "jigsaw_block.generate", + "english_translation": "Generate" + }, + { + "key": "commands.banlist.entry", + "english_translation": "%s was banned by %s: %s" + }, + { + "key": "gui.socialInteractions.search_empty", + "english_translation": "Couldn't find any players with that name" + }, + { + "key": "subtitles.entity.llama.chest", + "english_translation": "Llama Chest equips" + }, + { + "key": "mco.errorMessage.realmsService", + "english_translation": "An error occurred (%s):" + }, + { + "key": "painting.minecraft.pigscene.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "block.minecraft.magenta_concrete_powder", + "english_translation": "Magenta Concrete Powder" + }, + { + "key": "screenshot.success", + "english_translation": "Saved screenshot as %s" + }, + { + "key": "commands.effect.give.success.multiple", + "english_translation": "Applied effect %s to %s targets" + }, + { + "key": "advMode.mode.redstone", + "english_translation": "Impulse" + }, + { + "key": "block.minecraft.black_concrete", + "english_translation": "Black Concrete" + }, + { + "key": "block.minecraft.banner.globe.yellow", + "english_translation": "Yellow Globe" + }, + { + "key": "selectServer.title", + "english_translation": "Select Server" + }, + { + "key": "block.minecraft.prismarine_wall", + "english_translation": "Prismarine Wall" + }, + { + "key": "subtitles.entity.evoker.prepare_attack", + "english_translation": "Evoker prepares attack" + }, + { + "key": "block.minecraft.banner.diagonal_left.gray", + "english_translation": "Gray Per Bend Sinister" + }, + { + "key": "block.minecraft.banner.gradient_up.black", + "english_translation": "Black Base Gradient" + }, + { + "key": "block.minecraft.spruce_button", + "english_translation": "Spruce Button" + }, + { + "key": "commands.bossbar.set.players.success.none", + "english_translation": "Custom bossbar %s no longer has any players" + }, + { + "key": "options.fullscreen.unavailable", + "english_translation": "Setting unavailable" + }, + { + "key": "argument.scoreboardDisplaySlot.invalid", + "english_translation": "Unknown display slot '%s'" + }, + { + "key": "item.unbreakable", + "english_translation": "Unbreakable" + }, + { + "key": "telemetry.property.new_world.title", + "english_translation": "New World" + }, + { + "key": "block.minecraft.tinted_glass", + "english_translation": "Tinted Glass" + }, + { + "key": "block.minecraft.banner.triangle_bottom.pink", + "english_translation": "Pink Chevron" + }, + { + "key": "commands.team.join.success.multiple", + "english_translation": "Added %s members to team %s" + }, + { + "key": "death.attack.sonic_boom", + "english_translation": "%1$s was obliterated by a sonically-charged shriek" + }, + { + "key": "multiplayer.disconnect.invalid_entity_attacked", + "english_translation": "Attempting to attack an invalid entity" + }, + { + "key": "spectatorMenu.next_page", + "english_translation": "Next Page" + }, + { + "key": "block.minecraft.banner.skull.black", + "english_translation": "Black Skull Charge" + }, + { + "key": "block.minecraft.blue_ice", + "english_translation": "Blue Ice" + }, + { + "key": "demo.help.jump", + "english_translation": "Jump by pressing the %1$s key" + }, + { + "key": "subtitles.entity.ender_eye.death", + "english_translation": "Eye of Ender falls" + }, + { + "key": "lanServer.scanning", + "english_translation": "Scanning for games on your local network" + }, + { + "key": "parsing.double.expected", + "english_translation": "Expected double" + }, + { + "key": "commands.gamemode.success.self", + "english_translation": "Set own game mode to %s" + }, + { + "key": "mco.configure.world.slot.tooltip.minigame", + "english_translation": "Switch to minigame" + }, + { + "key": "menu.sendFeedback", + "english_translation": "Give Feedback" + }, + { + "key": "entity.minecraft.parrot", + "english_translation": "Parrot" + }, + { + "key": "gui.abuseReport.reason.non_consensual_intimate_imagery.description", + "english_translation": "Someone is talking about, sharing, or otherwise promoting private and intimate images." + }, + { + "key": "argument.entity.options.sort.irreversible", + "english_translation": "Invalid or unknown sort type '%s'" + }, + { + "key": "block.minecraft.acacia_log", + "english_translation": "Acacia Log" + }, + { + "key": "subtitles.entity.slime.squish", + "english_translation": "Slime squishes" + }, + { + "key": "subtitles.entity.donkey.death", + "english_translation": "Donkey dies" + }, + { + "key": "block.minecraft.orange_glazed_terracotta", + "english_translation": "Orange Glazed Terracotta" + }, + { + "key": "item.minecraft.shield.lime", + "english_translation": "Lime Shield" + }, + { + "key": "parsing.quote.expected.start", + "english_translation": "Expected quote to start a string" + }, + { + "key": "entity.minecraft.phantom", + "english_translation": "Phantom" + }, + { + "key": "item.minecraft.egg", + "english_translation": "Egg" + }, + { + "key": "commands.worldborder.set.failed.far", + "english_translation": "World border cannot be further out than %s blocks" + }, + { + "key": "item.minecraft.music_disc_blocks.desc", + "english_translation": "C418 - blocks" + }, + { + "key": "entity.minecraft.dolphin", + "english_translation": "Dolphin" + }, + { + "key": "biome.minecraft.plains", + "english_translation": "Plains" + }, + { + "key": "item.minecraft.honey_bottle", + "english_translation": "Honey Bottle" + }, + { + "key": "gui.entity_tooltip.type", + "english_translation": "Type: %s" + }, + { + "key": "block.minecraft.banner.creeper.black", + "english_translation": "Black Creeper Charge" + }, + { + "key": "commands.advancement.grant.criterion.to.one.failure", + "english_translation": "Couldn't grant criterion '%s' of advancement %s to %s as they already have it" + }, + { + "key": "block.minecraft.banner.bricks.lime", + "english_translation": "Lime Field Masoned" + }, + { + "key": "subtitles.entity.wandering_trader.drink_potion", + "english_translation": "Wandering Trader drinks potion" + }, + { + "key": "commands.scoreboard.objectives.list.empty", + "english_translation": "There are no objectives" + }, + { + "key": "item.minecraft.glow_berries", + "english_translation": "Glow Berries" + }, + { + "key": "block.minecraft.bed.occupied", + "english_translation": "This bed is occupied" + }, + { + "key": "structure_block.hover.load", + "english_translation": "Load: %s" + }, + { + "key": "item.minecraft.dragon_breath", + "english_translation": "Dragon's Breath" + }, + { + "key": "subtitles.block.bubble_column.whirlpool_inside", + "english_translation": "Bubbles zoom" + }, + { + "key": "chat.filtered", + "english_translation": "Filtered by the server." + }, + { + "key": "block.minecraft.banner.stripe_left.gray", + "english_translation": "Gray Pale Dexter" + }, + { + "key": "subtitles.entity.parrot.imitate.drowned", + "english_translation": "Parrot gurgles" + }, + { + "key": "block.minecraft.banner.rhombus.cyan", + "english_translation": "Cyan Lozenge" + }, + { + "key": "color.minecraft.lime", + "english_translation": "Lime" + }, + { + "key": "gamerule.category.updates", + "english_translation": "World Updates" + }, + { + "key": "block.minecraft.yellow_stained_glass_pane", + "english_translation": "Yellow Stained Glass Pane" + }, + { + "key": "block.minecraft.banner.stripe_downleft.light_gray", + "english_translation": "Light Gray Bend Sinister" + }, + { + "key": "commands.locate.biome.not_found", + "english_translation": "Could not find a biome of type \"%s\" within reasonable distance" + }, + { + "key": "attribute.modifier.equals.2", + "english_translation": "%s%% %s" + }, + { + "key": "attribute.modifier.equals.1", + "english_translation": "%s%% %s" + }, + { + "key": "attribute.modifier.equals.0", + "english_translation": "%s %s" + }, + { + "key": "block.minecraft.polished_blackstone_bricks", + "english_translation": "Polished Blackstone Bricks" + }, + { + "key": "options.accessibility.high_contrast.error.tooltip", + "english_translation": "High Contrast resource pack is not available" + }, + { + "key": "attribute.name.zombie.spawn_reinforcements", + "english_translation": "Zombie Reinforcements" + }, + { + "key": "subtitles.entity.panda.sneeze", + "english_translation": "Panda sneezes" + }, + { + "key": "block.minecraft.banner.gradient_up.green", + "english_translation": "Green Base Gradient" + }, + { + "key": "block.minecraft.banner.globe.lime", + "english_translation": "Lime Globe" + }, + { + "key": "telemetry.property.world_session_id.title", + "english_translation": "World Session ID" + }, + { + "key": "block.minecraft.warped_hanging_sign", + "english_translation": "Warped Hanging Sign" + }, + { + "key": "subtitles.entity.villager.work_fisherman", + "english_translation": "Fisherman works" + }, + { + "key": "enchantment.minecraft.fire_protection", + "english_translation": "Fire Protection" + }, + { + "key": "chat.type.advancement.goal", + "english_translation": "%s has reached the goal %s" + }, + { + "key": "block.minecraft.cherry_planks", + "english_translation": "Cherry Planks" + }, + { + "key": "argument.range.empty", + "english_translation": "Expected value or range of values" + }, + { + "key": "multiplayer.disconnect.server_shutdown", + "english_translation": "Server closed" + }, + { + "key": "multiplayer.disconnect.banned_ip.reason", + "english_translation": "Your IP address is banned from this server.\nReason: %s" + }, + { + "key": "key.use", + "english_translation": "Use Item/Place Block" + }, + { + "key": "resourcepack.downloading", + "english_translation": "Downloading Resource Pack" + }, + { + "key": "generator.single_biome_floating_islands", + "english_translation": "Floating Islands" + }, + { + "key": "commands.enchant.failed.itemless", + "english_translation": "%s is not holding any item" + }, + { + "key": "createWorld.customize.presets.share", + "english_translation": "Want to share your preset with someone? Use the box below!" + }, + { + "key": "sleep.not_possible", + "english_translation": "No amount of rest can pass this night" + }, + { + "key": "block.minecraft.brown_candle", + "english_translation": "Brown Candle" + }, + { + "key": "structure_block.show_boundingbox", + "english_translation": "Show Bounding Box:" + }, + { + "key": "gui.chatReport.discard.title", + "english_translation": "Discard report and comments?" + }, + { + "key": "stat.minecraft.clean_banner", + "english_translation": "Banners Cleaned" + }, + { + "key": "block.minecraft.banner.straight_cross.black", + "english_translation": "Black Cross" + }, + { + "key": "item.minecraft.firework_star.purple", + "english_translation": "Purple" + }, + { + "key": "item.minecraft.shield.yellow", + "english_translation": "Yellow Shield" + }, + { + "key": "key.keyboard.backspace", + "english_translation": "Backspace" + }, + { + "key": "block.minecraft.banner.stripe_middle.red", + "english_translation": "Red Fess" + }, + { + "key": "block.minecraft.stripped_birch_wood", + "english_translation": "Stripped Birch Wood" + }, + { + "key": "item.minecraft.firework_star.flicker", + "english_translation": "Twinkle" + }, + { + "key": "item.minecraft.creeper_banner_pattern.desc", + "english_translation": "Creeper Charge" + }, + { + "key": "gameMode.spectator", + "english_translation": "Spectator Mode" + }, + { + "key": "subtitles.entity.shulker.shoot", + "english_translation": "Shulker shoots" + }, + { + "key": "menu.modded", + "english_translation": " (Modded)" + }, + { + "key": "block.minecraft.banner.curly_border.cyan", + "english_translation": "Cyan Bordure Indented" + }, + { + "key": "subtitles.item.shears.shear", + "english_translation": "Shears click" + }, + { + "key": "stat.generalButton", + "english_translation": "General" + }, + { + "key": "block.minecraft.banner.square_top_right.light_blue", + "english_translation": "Light Blue Chief Sinister Canton" + }, + { + "key": "structure_block.hover.save", + "english_translation": "Save: %s" + }, + { + "key": "argument.angle.invalid", + "english_translation": "Invalid angle" + }, + { + "key": "item.minecraft.echo_shard", + "english_translation": "Echo Shard" + }, + { + "key": "block.minecraft.stonecutter", + "english_translation": "Stonecutter" + }, + { + "key": "painting.minecraft.earth.title", + "english_translation": "Earth" + }, + { + "key": "block.minecraft.jukebox", + "english_translation": "Jukebox" + }, + { + "key": "block.minecraft.potted_mangrove_propagule", + "english_translation": "Potted Mangrove Propagule" + }, + { + "key": "entity.minecraft.command_block_minecart", + "english_translation": "Minecart with Command Block" + }, + { + "key": "effect.minecraft.nausea", + "english_translation": "Nausea" + }, + { + "key": "block.minecraft.gold_block", + "english_translation": "Block of Gold" + }, + { + "key": "block.minecraft.lime_concrete_powder", + "english_translation": "Lime Concrete Powder" + }, + { + "key": "telemetry.property.platform.title", + "english_translation": "Platform" + }, + { + "key": "advancements.adventure.lightning_rod_with_villager_no_fire.title", + "english_translation": "Surge Protector" + }, + { + "key": "block.minecraft.banner.square_top_left.magenta", + "english_translation": "Magenta Chief Dexter Canton" + }, + { + "key": "subtitles.entity.zoglin.attack", + "english_translation": "Zoglin attacks" + }, + { + "key": "enchantment.minecraft.looting", + "english_translation": "Looting" + }, + { + "key": "key.chat", + "english_translation": "Open Chat" + }, + { + "key": "block.minecraft.ancient_debris", + "english_translation": "Ancient Debris" + }, + { + "key": "block.minecraft.banner.stripe_right.black", + "english_translation": "Black Pale Sinister" + }, + { + "key": "disconnect.kicked", + "english_translation": "Was kicked from the game" + }, + { + "key": "block.minecraft.banner.skull.green", + "english_translation": "Green Skull Charge" + }, + { + "key": "block.minecraft.banner.square_top_right.magenta", + "english_translation": "Magenta Chief Sinister Canton" + }, + { + "key": "advancements.nether.ride_strider_in_overworld_lava.description", + "english_translation": "Take a Strider for a loooong ride on a lava lake in the Overworld" + }, + { + "key": "gui.none", + "english_translation": "None" + }, + { + "key": "commands.schedule.cleared.failure", + "english_translation": "No schedules with id %s" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.cyan", + "english_translation": "Cyan Per Bend Sinister Inverted" + }, + { + "key": "color.minecraft.blue", + "english_translation": "Blue" + }, + { + "key": "block.minecraft.banner.gradient_up.light_blue", + "english_translation": "Light Blue Base Gradient" + }, + { + "key": "enchantment.minecraft.efficiency", + "english_translation": "Efficiency" + }, + { + "key": "demo.help.later", + "english_translation": "Continue Playing!" + }, + { + "key": "block.minecraft.exposed_copper", + "english_translation": "Exposed Copper" + }, + { + "key": "selectWorld.edit.backupCreated", + "english_translation": "Backed up: %s" + }, + { + "key": "options.hideMatchedNames", + "english_translation": "Hide Matched Names" + }, + { + "key": "compliance.playtime.message", + "english_translation": "Excessive gaming may interfere with normal daily life" + }, + { + "key": "block.minecraft.banner.square_bottom_left.green", + "english_translation": "Green Base Dexter Canton" + }, + { + "key": "advancements.husbandry.plant_any_sniffer_seed.description", + "english_translation": "Plant any Sniffer seed" + }, + { + "key": "effect.minecraft.unluck", + "english_translation": "Bad Luck" + }, + { + "key": "commands.data.storage.modified", + "english_translation": "Modified storage %s" + }, + { + "key": "block.minecraft.dead_horn_coral_fan", + "english_translation": "Dead Horn Coral Fan" + }, + { + "key": "narrator.select.world_info", + "english_translation": "Selected %s, last played: %s, %s" + }, + { + "key": "mco.configure.world.subscription.days", + "english_translation": "days" + }, + { + "key": "subtitles.entity.vindicator.hurt", + "english_translation": "Vindicator hurts" + }, + { + "key": "block.minecraft.banner.globe.blue", + "english_translation": "Blue Globe" + }, + { + "key": "createWorld.customize.custom.preset.drought", + "english_translation": "Drought" + }, + { + "key": "block.minecraft.iron_trapdoor", + "english_translation": "Iron Trapdoor" + }, + { + "key": "item.minecraft.music_disc_11.desc", + "english_translation": "C418 - 11" + }, + { + "key": "item.minecraft.polar_bear_spawn_egg", + "english_translation": "Polar Bear Spawn Egg" + }, + { + "key": "arguments.item.overstacked", + "english_translation": "%s can only stack up to %s" + }, + { + "key": "block.minecraft.banner.diagonal_right.brown", + "english_translation": "Brown Per Bend" + }, + { + "key": "death.attack.fallingBlock", + "english_translation": "%1$s was squashed by a falling block" + }, + { + "key": "block.minecraft.banner.flower.magenta", + "english_translation": "Magenta Flower Charge" + }, + { + "key": "block.minecraft.black_glazed_terracotta", + "english_translation": "Black Glazed Terracotta" + }, + { + "key": "mco.invites.title", + "english_translation": "Pending Invites" + }, + { + "key": "mco.account.update", + "english_translation": "Update account" + }, + { + "key": "block.minecraft.light_blue_candle", + "english_translation": "Light Blue Candle" + }, + { + "key": "item.minecraft.firework_star", + "english_translation": "Firework Star" + }, { "key": "createWorld.customize.custom.mainNoiseScaleX", "english_translation": "Main Noise Scale X" }, + { + "key": "block.minecraft.cherry_trapdoor", + "english_translation": "Cherry Trapdoor" + }, { "key": "createWorld.customize.custom.mainNoiseScaleY", "english_translation": "Main Noise Scale Y" @@ -10780,1820 +4372,1576 @@ "english_translation": "Main Noise Scale Z" }, { - "key": "createWorld.customize.custom.maxHeight", - "english_translation": "Max. Height" + "key": "key.categories.ui", + "english_translation": "Game Interface" }, { - "key": "createWorld.customize.custom.minHeight", - "english_translation": "Min. Height" + "key": "options.gamma.min", + "english_translation": "Moody" }, { - "key": "createWorld.customize.custom.next", - "english_translation": "Next Page" + "key": "mco.configure.world.subscription.unknown", + "english_translation": "Unknown" }, { - "key": "createWorld.customize.custom.page0", - "english_translation": "Basic Settings" + "key": "block.minecraft.banner.half_vertical.orange", + "english_translation": "Orange Per Pale" }, { - "key": "createWorld.customize.custom.page1", - "english_translation": "Ore Settings" + "key": "mco.minigame.world.startButton", + "english_translation": "Switch" }, { - "key": "createWorld.customize.custom.page2", - "english_translation": "Advanced Settings (Expert Users Only!)" + "key": "commands.data.modify.invalid_index", + "english_translation": "Invalid list index: %s" }, { - "key": "createWorld.customize.custom.page3", - "english_translation": "Extra Advanced Settings (Expert Users Only!)" + "key": "block.minecraft.banner.square_bottom_left.black", + "english_translation": "Black Base Dexter Canton" }, { - "key": "createWorld.customize.custom.preset.caveChaos", - "english_translation": "Caves of Chaos" + "key": "block.minecraft.spruce_wall_hanging_sign", + "english_translation": "Spruce Wall Hanging Sign" }, { - "key": "createWorld.customize.custom.preset.caveDelight", - "english_translation": "Caver's Delight" + "key": "biome.minecraft.wooded_badlands", + "english_translation": "Wooded Badlands" }, { - "key": "createWorld.customize.custom.preset.drought", - "english_translation": "Drought" + "key": "block.minecraft.cornflower", + "english_translation": "Cornflower" }, { - "key": "createWorld.customize.custom.preset.goodLuck", - "english_translation": "Good Luck" + "key": "options.discrete_mouse_scroll", + "english_translation": "Discrete Scrolling" }, { - "key": "createWorld.customize.custom.preset.isleLand", - "english_translation": "Isle Land" + "key": "chat_screen.title", + "english_translation": "Chat screen" }, { - "key": "createWorld.customize.custom.preset.mountains", - "english_translation": "Mountain Madness" + "key": "structure_block.mode_info.corner", + "english_translation": "Corner Mode - Placement and Size Marker" }, { - "key": "createWorld.customize.custom.preset.waterWorld", - "english_translation": "Water World" - }, - { - "key": "createWorld.customize.custom.presets", - "english_translation": "Presets" - }, - { - "key": "createWorld.customize.custom.presets.title", - "english_translation": "Customize World Presets" - }, - { - "key": "createWorld.customize.custom.prev", - "english_translation": "Previous Page" - }, - { - "key": "createWorld.customize.custom.randomize", - "english_translation": "Randomize" - }, - { - "key": "createWorld.customize.custom.riverSize", - "english_translation": "River Size" - }, - { - "key": "createWorld.customize.custom.seaLevel", - "english_translation": "Sea Level" - }, - { - "key": "createWorld.customize.custom.size", - "english_translation": "Spawn Size" - }, - { - "key": "createWorld.customize.custom.spread", - "english_translation": "Spread Height" - }, - { - "key": "createWorld.customize.custom.stretchY", - "english_translation": "Height Stretch" - }, - { - "key": "createWorld.customize.custom.upperLimitScale", - "english_translation": "Upper Limit Scale" - }, - { - "key": "createWorld.customize.custom.useCaves", - "english_translation": "Caves" - }, - { - "key": "createWorld.customize.custom.useDungeons", - "english_translation": "Dungeons" - }, - { - "key": "createWorld.customize.custom.useLavaLakes", - "english_translation": "Lava Lakes" - }, - { - "key": "createWorld.customize.custom.useLavaOceans", - "english_translation": "Lava Oceans" - }, - { - "key": "createWorld.customize.custom.useMansions", - "english_translation": "Woodland Mansions" - }, - { - "key": "createWorld.customize.custom.useMineShafts", - "english_translation": "Mineshafts" - }, - { - "key": "createWorld.customize.custom.useMonuments", - "english_translation": "Ocean Monuments" - }, - { - "key": "createWorld.customize.custom.useOceanRuins", - "english_translation": "Ocean Ruins" - }, - { - "key": "createWorld.customize.custom.useRavines", - "english_translation": "Ravines" - }, - { - "key": "createWorld.customize.custom.useStrongholds", - "english_translation": "Strongholds" - }, - { - "key": "createWorld.customize.custom.useTemples", - "english_translation": "Temples" - }, - { - "key": "createWorld.customize.custom.useVillages", - "english_translation": "Villages" - }, - { - "key": "createWorld.customize.custom.useWaterLakes", - "english_translation": "Water Lakes" - }, - { - "key": "createWorld.customize.custom.waterLakeChance", - "english_translation": "Water Lake Rarity" - }, - { - "key": "createWorld.customize.flat.height", - "english_translation": "Height" - }, - { - "key": "createWorld.customize.flat.layer", - "english_translation": "%s" - }, - { - "key": "createWorld.customize.flat.layer.bottom", - "english_translation": "Bottom - %s" - }, - { - "key": "createWorld.customize.flat.layer.top", - "english_translation": "Top - %s" - }, - { - "key": "createWorld.customize.flat.removeLayer", - "english_translation": "Remove Layer" - }, - { - "key": "createWorld.customize.flat.tile", - "english_translation": "Layer Material" - }, - { - "key": "createWorld.customize.flat.title", - "english_translation": "Superflat Customization" - }, - { - "key": "createWorld.customize.presets", - "english_translation": "Presets" - }, - { - "key": "createWorld.customize.presets.list", - "english_translation": "Alternatively, here's some we made earlier!" - }, - { - "key": "createWorld.customize.presets.select", - "english_translation": "Use Preset" - }, - { - "key": "createWorld.customize.presets.share", - "english_translation": "Want to share your preset with someone? Use the box below!" - }, - { - "key": "createWorld.customize.presets.title", - "english_translation": "Select a Preset" - }, - { - "key": "createWorld.preparing", - "english_translation": "Preparing for world creation..." - }, - { - "key": "createWorld.tab.game.title", - "english_translation": "Game" - }, - { - "key": "createWorld.tab.more.title", - "english_translation": "More" - }, - { - "key": "createWorld.tab.world.title", - "english_translation": "World" - }, - { - "key": "credits_and_attribution.button.attribution", - "english_translation": "Attribution" - }, - { - "key": "credits_and_attribution.button.credits", - "english_translation": "Credits" - }, - { - "key": "credits_and_attribution.button.licenses", - "english_translation": "Licenses" - }, - { - "key": "credits_and_attribution.screen.title", - "english_translation": "Credits and Attribution" - }, - { - "key": "dataPack.bundle.description", - "english_translation": "Enables experimental Bundle item" - }, - { - "key": "dataPack.bundle.name", - "english_translation": "Bundles" - }, - { - "key": "dataPack.title", - "english_translation": "Select Data Packs" - }, - { - "key": "dataPack.update_1_20.description", - "english_translation": "New features and content for Minecraft 1.20" - }, - { - "key": "dataPack.update_1_20.name", - "english_translation": "Update 1.20" - }, - { - "key": "dataPack.validation.back", - "english_translation": "Go Back" - }, - { - "key": "dataPack.validation.failed", - "english_translation": "Data pack validation failed!" - }, - { - "key": "dataPack.validation.reset", - "english_translation": "Reset to Default" - }, - { - "key": "dataPack.validation.working", - "english_translation": "Validating selected data packs..." - }, - { - "key": "dataPack.vanilla.description", - "english_translation": "The default data for Minecraft" - }, - { - "key": "dataPack.vanilla.name", - "english_translation": "Default" - }, - { - "key": "datapackFailure.safeMode", - "english_translation": "Safe Mode" - }, - { - "key": "datapackFailure.safeMode.failed.title", - "english_translation": "Failed to load world in Safe Mode." - }, - { - "key": "datapackFailure.safeMode.failed.description", - "english_translation": "This world contains invalid or corrupted save data." - }, - { - "key": "datapackFailure.title", - "english_translation": "Errors in currently selected datapacks prevented the world from loading.\nYou can either try to load it with only the vanilla data pack (\"safe mode\"), or go back to the title screen and fix it manually." - }, - { - "key": "death.attack.anvil", - "english_translation": "%1$s was squashed by a falling anvil" - }, - { - "key": "death.attack.anvil.player", - "english_translation": "%1$s was squashed by a falling anvil whilst fighting %2$s" - }, - { - "key": "death.attack.arrow", - "english_translation": "%1$s was shot by %2$s" - }, - { - "key": "death.attack.arrow.item", - "english_translation": "%1$s was shot by %2$s using %3$s" - }, - { - "key": "death.attack.badRespawnPoint.link", - "english_translation": "Intentional Game Design" - }, - { - "key": "death.attack.badRespawnPoint.message", - "english_translation": "%1$s was killed by %2$s" - }, - { - "key": "death.attack.cactus", - "english_translation": "%1$s was pricked to death" - }, - { - "key": "death.attack.cactus.player", - "english_translation": "%1$s walked into a cactus whilst trying to escape %2$s" - }, - { - "key": "death.attack.cramming", - "english_translation": "%1$s was squished too much" - }, - { - "key": "death.attack.cramming.player", - "english_translation": "%1$s was squashed by %2$s" - }, - { - "key": "death.attack.dragonBreath", - "english_translation": "%1$s was roasted in dragon's breath" - }, - { - "key": "death.attack.dragonBreath.player", - "english_translation": "%1$s was roasted in dragon's breath by %2$s" - }, - { - "key": "death.attack.drown", - "english_translation": "%1$s drowned" - }, - { - "key": "death.attack.drown.player", - "english_translation": "%1$s drowned whilst trying to escape %2$s" - }, - { - "key": "death.attack.dryout", - "english_translation": "%1$s died from dehydration" - }, - { - "key": "death.attack.dryout.player", - "english_translation": "%1$s died from dehydration whilst trying to escape %2$s" - }, - { - "key": "death.attack.even_more_magic", - "english_translation": "%1$s was killed by even more magic" - }, - { - "key": "death.attack.explosion", - "english_translation": "%1$s blew up" - }, - { - "key": "death.attack.explosion.player", - "english_translation": "%1$s was blown up by %2$s" - }, - { - "key": "death.attack.explosion.player.item", - "english_translation": "%1$s was blown up by %2$s using %3$s" - }, - { - "key": "death.attack.fall", - "english_translation": "%1$s hit the ground too hard" - }, - { - "key": "death.attack.fall.player", - "english_translation": "%1$s hit the ground too hard whilst trying to escape %2$s" - }, - { - "key": "death.attack.fallingBlock", - "english_translation": "%1$s was squashed by a falling block" - }, - { - "key": "death.attack.fallingBlock.player", - "english_translation": "%1$s was squashed by a falling block whilst fighting %2$s" - }, - { - "key": "death.attack.fallingStalactite", - "english_translation": "%1$s was skewered by a falling stalactite" - }, - { - "key": "death.attack.fallingStalactite.player", - "english_translation": "%1$s was skewered by a falling stalactite whilst fighting %2$s" - }, - { - "key": "death.attack.fireball", - "english_translation": "%1$s was fireballed by %2$s" - }, - { - "key": "death.attack.fireball.item", - "english_translation": "%1$s was fireballed by %2$s using %3$s" - }, - { - "key": "death.attack.fireworks", - "english_translation": "%1$s went off with a bang" - }, - { - "key": "death.attack.fireworks.item", - "english_translation": "%1$s went off with a bang due to a firework fired from %3$s by %2$s" - }, - { - "key": "death.attack.fireworks.player", - "english_translation": "%1$s went off with a bang whilst fighting %2$s" - }, - { - "key": "death.attack.flyIntoWall", - "english_translation": "%1$s experienced kinetic energy" - }, - { - "key": "death.attack.flyIntoWall.player", - "english_translation": "%1$s experienced kinetic energy whilst trying to escape %2$s" - }, - { - "key": "death.attack.freeze", - "english_translation": "%1$s froze to death" - }, - { - "key": "death.attack.freeze.player", - "english_translation": "%1$s was frozen to death by %2$s" - }, - { - "key": "death.attack.generic", - "english_translation": "%1$s died" - }, - { - "key": "death.attack.generic.player", - "english_translation": "%1$s died because of %2$s" - }, - { - "key": "death.attack.hotFloor", - "english_translation": "%1$s discovered the floor was lava" - }, - { - "key": "death.attack.hotFloor.player", - "english_translation": "%1$s walked into the danger zone due to %2$s" - }, - { - "key": "death.attack.indirectMagic", - "english_translation": "%1$s was killed by %2$s using magic" - }, - { - "key": "death.attack.indirectMagic.item", - "english_translation": "%1$s was killed by %2$s using %3$s" - }, - { - "key": "death.attack.inFire", - "english_translation": "%1$s went up in flames" - }, - { - "key": "death.attack.inFire.player", - "english_translation": "%1$s walked into fire whilst fighting %2$s" - }, - { - "key": "death.attack.inWall", - "english_translation": "%1$s suffocated in a wall" - }, - { - "key": "death.attack.inWall.player", - "english_translation": "%1$s suffocated in a wall whilst fighting %2$s" - }, - { - "key": "death.attack.lava", - "english_translation": "%1$s tried to swim in lava" - }, - { - "key": "death.attack.lava.player", - "english_translation": "%1$s tried to swim in lava to escape %2$s" - }, - { - "key": "death.attack.lightningBolt", - "english_translation": "%1$s was struck by lightning" - }, - { - "key": "death.attack.lightningBolt.player", - "english_translation": "%1$s was struck by lightning whilst fighting %2$s" - }, - { - "key": "death.attack.magic", - "english_translation": "%1$s was killed by magic" - }, - { - "key": "death.attack.magic.player", - "english_translation": "%1$s was killed by magic whilst trying to escape %2$s" - }, - { - "key": "death.attack.message_too_long", - "english_translation": "Actually, the message was too long to deliver fully. Sorry! Here's stripped version: %s" - }, - { - "key": "death.attack.mob", - "english_translation": "%1$s was slain by %2$s" - }, - { - "key": "death.attack.mob.item", - "english_translation": "%1$s was slain by %2$s using %3$s" - }, - { - "key": "death.attack.onFire", - "english_translation": "%1$s burned to death" - }, - { - "key": "death.attack.onFire.item", - "english_translation": "%1$s was burnt to a crisp whilst fighting %2$s wielding %3$s" - }, - { - "key": "death.attack.onFire.player", - "english_translation": "%1$s was burnt to a crisp whilst fighting %2$s" - }, - { - "key": "death.attack.outOfWorld", - "english_translation": "%1$s fell out of the world" - }, - { - "key": "death.attack.outOfWorld.player", - "english_translation": "%1$s didn't want to live in the same world as %2$s" - }, - { - "key": "death.attack.player", - "english_translation": "%1$s was slain by %2$s" - }, - { - "key": "death.attack.player.item", - "english_translation": "%1$s was slain by %2$s using %3$s" - }, - { - "key": "death.attack.sonic_boom", - "english_translation": "%1$s was obliterated by a sonically-charged shriek" - }, - { - "key": "death.attack.sonic_boom.item", - "english_translation": "%1$s was obliterated by a sonically-charged shriek whilst trying to escape %2$s wielding %3$s" - }, - { - "key": "death.attack.sonic_boom.player", - "english_translation": "%1$s was obliterated by a sonically-charged shriek whilst trying to escape %2$s" - }, - { - "key": "death.attack.stalagmite", - "english_translation": "%1$s was impaled on a stalagmite" - }, - { - "key": "death.attack.stalagmite.player", - "english_translation": "%1$s was impaled on a stalagmite whilst fighting %2$s" - }, - { - "key": "death.attack.starve", - "english_translation": "%1$s starved to death" - }, - { - "key": "death.attack.starve.player", - "english_translation": "%1$s starved to death whilst fighting %2$s" - }, - { - "key": "death.attack.sting", - "english_translation": "%1$s was stung to death" - }, - { - "key": "death.attack.sting.item", - "english_translation": "%1$s was stung to death by %2$s using %3$s" - }, - { - "key": "death.attack.sting.player", - "english_translation": "%1$s was stung to death by %2$s" - }, - { - "key": "death.attack.sweetBerryBush", - "english_translation": "%1$s was poked to death by a sweet berry bush" - }, - { - "key": "death.attack.sweetBerryBush.player", - "english_translation": "%1$s was poked to death by a sweet berry bush whilst trying to escape %2$s" - }, - { - "key": "death.attack.thorns", - "english_translation": "%1$s was killed trying to hurt %2$s" - }, - { - "key": "death.attack.thorns.item", - "english_translation": "%1$s was killed by %3$s trying to hurt %2$s" - }, - { - "key": "death.attack.thrown", - "english_translation": "%1$s was pummeled by %2$s" - }, - { - "key": "death.attack.thrown.item", - "english_translation": "%1$s was pummeled by %2$s using %3$s" - }, - { - "key": "death.attack.trident", - "english_translation": "%1$s was impaled by %2$s" - }, - { - "key": "death.attack.trident.item", - "english_translation": "%1$s was impaled by %2$s with %3$s" - }, - { - "key": "death.attack.wither", - "english_translation": "%1$s withered away" - }, - { - "key": "death.attack.wither.player", - "english_translation": "%1$s withered away whilst fighting %2$s" - }, - { - "key": "death.attack.witherSkull", - "english_translation": "%1$s was shot by a skull from %2$s" - }, - { - "key": "death.attack.witherSkull.item", - "english_translation": "%1$s was shot by a skull from %2$s using %3$s" - }, - { - "key": "death.fell.accident.generic", - "english_translation": "%1$s fell from a high place" - }, - { - "key": "death.fell.accident.ladder", - "english_translation": "%1$s fell off a ladder" - }, - { - "key": "death.fell.accident.other_climbable", - "english_translation": "%1$s fell while climbing" - }, - { - "key": "death.fell.accident.scaffolding", - "english_translation": "%1$s fell off scaffolding" - }, - { - "key": "death.fell.accident.twisting_vines", - "english_translation": "%1$s fell off some twisting vines" - }, - { - "key": "death.fell.accident.vines", - "english_translation": "%1$s fell off some vines" - }, - { - "key": "death.fell.accident.weeping_vines", - "english_translation": "%1$s fell off some weeping vines" - }, - { - "key": "death.fell.assist", - "english_translation": "%1$s was doomed to fall by %2$s" - }, - { - "key": "death.fell.assist.item", - "english_translation": "%1$s was doomed to fall by %2$s using %3$s" - }, - { - "key": "death.fell.finish", - "english_translation": "%1$s fell too far and was finished by %2$s" - }, - { - "key": "death.fell.finish.item", - "english_translation": "%1$s fell too far and was finished by %2$s using %3$s" - }, - { - "key": "death.fell.killer", - "english_translation": "%1$s was doomed to fall" - }, - { - "key": "deathScreen.quit.confirm", - "english_translation": "Are you sure you want to quit?" - }, - { - "key": "deathScreen.respawn", - "english_translation": "Respawn" - }, - { - "key": "deathScreen.score", - "english_translation": "Score" - }, - { - "key": "deathScreen.spectate", - "english_translation": "Spectate World" - }, - { - "key": "deathScreen.title", - "english_translation": "You Died!" - }, - { - "key": "deathScreen.title.hardcore", - "english_translation": "Game Over!" - }, - { - "key": "deathScreen.titleScreen", - "english_translation": "Title Screen" - }, - { - "key": "debug.advanced_tooltips.help", - "english_translation": "F3 + H = Advanced tooltips" - }, - { - "key": "debug.advanced_tooltips.off", - "english_translation": "Advanced tooltips: hidden" - }, - { - "key": "debug.advanced_tooltips.on", - "english_translation": "Advanced tooltips: shown" - }, - { - "key": "debug.chunk_boundaries.help", - "english_translation": "F3 + G = Show chunk boundaries" - }, - { - "key": "debug.chunk_boundaries.off", - "english_translation": "Chunk borders: hidden" - }, - { - "key": "debug.chunk_boundaries.on", - "english_translation": "Chunk borders: shown" - }, - { - "key": "debug.clear_chat.help", - "english_translation": "F3 + D = Clear chat" - }, - { - "key": "debug.copy_location.help", - "english_translation": "F3 + C = Copy location as /tp command, hold F3 + C to crash the game" - }, - { - "key": "debug.copy_location.message", - "english_translation": "Copied location to clipboard" - }, - { - "key": "debug.crash.message", - "english_translation": "F3 + C is held down. This will crash the game unless released." - }, - { - "key": "debug.crash.warning", - "english_translation": "Crashing in %s..." - }, - { - "key": "debug.creative_spectator.error", - "english_translation": "Unable to switch gamemode; no permission" - }, - { - "key": "debug.creative_spectator.help", - "english_translation": "F3 + N = Cycle previous gamemode <-> spectator" - }, - { - "key": "debug.dump_dynamic_textures", - "english_translation": "Saved dynamic textures to %s" - }, - { - "key": "debug.dump_dynamic_textures.help", - "english_translation": "F3 + S = Dump dynamic textures" - }, - { - "key": "debug.gamemodes.error", - "english_translation": "Unable to open game mode switcher; no permission" - }, - { - "key": "debug.gamemodes.help", - "english_translation": "F3 + F4 = Open game mode switcher" - }, - { - "key": "debug.gamemodes.press_f4", - "english_translation": "[ F4 ]" - }, - { - "key": "debug.gamemodes.select_next", - "english_translation": "%s Next" - }, - { - "key": "debug.help.help", - "english_translation": "F3 + Q = Show this list" - }, - { - "key": "debug.help.message", - "english_translation": "Key bindings:" + "key": "block.minecraft.bamboo_fence", + "english_translation": "Bamboo Fence" }, { "key": "debug.inspect.client.block", "english_translation": "Copied client-side block data to clipboard" }, { - "key": "debug.inspect.client.entity", - "english_translation": "Copied client-side entity data to clipboard" + "key": "dataPack.validation.failed", + "english_translation": "Data pack validation failed!" }, { - "key": "debug.inspect.help", - "english_translation": "F3 + I = Copy entity or block data to clipboard" + "key": "mco.activity.noactivity", + "english_translation": "No activity for the past %s day(s)" }, { - "key": "debug.inspect.server.block", - "english_translation": "Copied server-side block data to clipboard" + "key": "entity.minecraft.villager.weaponsmith", + "english_translation": "Weaponsmith" }, { - "key": "debug.inspect.server.entity", - "english_translation": "Copied server-side entity data to clipboard" + "key": "block.minecraft.purple_glazed_terracotta", + "english_translation": "Purple Glazed Terracotta" }, { - "key": "debug.pause_focus.help", - "english_translation": "F3 + P = Pause on lost focus" + "key": "menu.paused", + "english_translation": "Game Paused" }, { - "key": "debug.pause_focus.off", - "english_translation": "Pause on lost focus: disabled" + "key": "mco.selectServer.play", + "english_translation": "Play" }, { - "key": "debug.pause_focus.on", - "english_translation": "Pause on lost focus: enabled" + "key": "block.minecraft.spawner.desc2", + "english_translation": "Sets Mob Type" }, { - "key": "debug.pause.help", - "english_translation": "F3 + Esc = Pause without pause menu (if pausing is possible)" + "key": "block.minecraft.spawner.desc1", + "english_translation": "Interact with Spawn Egg:" }, { - "key": "debug.prefix", - "english_translation": "[Debug]:" + "key": "subtitles.entity.magma_cube.hurt", + "english_translation": "Magma Cube hurts" }, { - "key": "debug.profiling.help", - "english_translation": "F3 + L = Start/stop profiling" + "key": "advancements.story.cure_zombie_villager.description", + "english_translation": "Weaken and then cure a Zombie Villager" }, { - "key": "debug.profiling.start", - "english_translation": "Profiling started for %s seconds. Use F3 + L to stop early" + "key": "commands.trigger.failed.unprimed", + "english_translation": "You cannot trigger this objective yet" }, { - "key": "debug.profiling.stop", - "english_translation": "Profiling ended. Saved results to %s" + "key": "advancements.husbandry.complete_catalogue.title", + "english_translation": "A Complete Catalogue" }, { - "key": "debug.reload_chunks.help", - "english_translation": "F3 + A = Reload chunks" + "key": "selectWorld.unable_to_load", + "english_translation": "Unable to load worlds" }, { - "key": "debug.reload_chunks.message", - "english_translation": "Reloading all chunks" + "key": "subtitles.entity.goat.screaming.ambient", + "english_translation": "Goat bellows" }, { - "key": "debug.reload_resourcepacks.help", - "english_translation": "F3 + T = Reload resource packs" + "key": "options.language", + "english_translation": "Language..." }, { - "key": "debug.reload_resourcepacks.message", - "english_translation": "Reloaded resource packs" + "key": "block.minecraft.vine", + "english_translation": "Vines" }, { - "key": "debug.show_hitboxes.help", - "english_translation": "F3 + B = Show hitboxes" + "key": "block.minecraft.banner.diagonal_left.yellow", + "english_translation": "Yellow Per Bend Sinister" }, { - "key": "debug.show_hitboxes.off", - "english_translation": "Hitboxes: hidden" + "key": "block.minecraft.orange_concrete", + "english_translation": "Orange Concrete" }, { - "key": "debug.show_hitboxes.on", - "english_translation": "Hitboxes: shown" + "key": "subtitles.entity.illusioner.mirror_move", + "english_translation": "Illusioner displaces" }, { - "key": "demo.day.1", - "english_translation": "This demo will last five game days. Do your best!" + "key": "block.minecraft.infested_stone_bricks", + "english_translation": "Infested Stone Bricks" }, { - "key": "demo.day.2", - "english_translation": "Day Two" + "key": "commands.playsound.failed", + "english_translation": "The sound is too far away to be heard" }, { - "key": "demo.day.3", - "english_translation": "Day Three" + "key": "block.minecraft.banner.flower.lime", + "english_translation": "Lime Flower Charge" }, { - "key": "demo.day.4", - "english_translation": "Day Four" + "key": "commands.whitelist.enabled", + "english_translation": "Whitelist is now turned on" }, { - "key": "demo.day.5", - "english_translation": "This is your last day!" + "key": "block.minecraft.magenta_wool", + "english_translation": "Magenta Wool" }, { - "key": "demo.day.6", - "english_translation": "You have passed your fifth day. Use %s to save a screenshot of your creation." + "key": "entity.minecraft.villager.fletcher", + "english_translation": "Fletcher" }, { - "key": "demo.day.warning", - "english_translation": "Your time is almost up!" + "key": "debug.gamemodes.select_next", + "english_translation": "%s Next" }, { - "key": "demo.demoExpired", - "english_translation": "Demo time's up!" + "key": "subtitles.entity.goat.hurt", + "english_translation": "Goat hurts" }, { - "key": "demo.help.buy", - "english_translation": "Purchase Now!" + "key": "block.minecraft.brown_concrete_powder", + "english_translation": "Brown Concrete Powder" }, { - "key": "demo.help.fullWrapped", - "english_translation": "This demo will last 5 in-game days (about 1 hour and 40 minutes of real time). Check the advancements for hints! Have fun!" + "key": "subtitles.entity.wither_skeleton.ambient", + "english_translation": "Wither Skeleton rattles" }, { - "key": "demo.help.inventory", - "english_translation": "Use the %1$s key to open your inventory" + "key": "trim_pattern.minecraft.silence", + "english_translation": "Silence Armor Trim" }, { - "key": "demo.help.jump", - "english_translation": "Jump by pressing the %1$s key" + "key": "block.minecraft.acacia_trapdoor", + "english_translation": "Acacia Trapdoor" }, { - "key": "demo.help.later", - "english_translation": "Continue Playing!" + "key": "commands.spectate.success.stopped", + "english_translation": "No longer spectating an entity" }, { - "key": "demo.help.movement", - "english_translation": "Use the %1$s, %2$s, %3$s, %4$s keys and the mouse to move around" + "key": "block.minecraft.stripped_cherry_log", + "english_translation": "Stripped Cherry Log" }, { - "key": "demo.help.movementMouse", - "english_translation": "Look around using the mouse" + "key": "createWorld.customize.custom.depthNoiseScaleExponent", + "english_translation": "Depth Noise Exponent" }, { - "key": "demo.help.movementShort", - "english_translation": "Move by pressing the %1$s, %2$s, %3$s, %4$s keys" + "key": "tutorial.move.description", + "english_translation": "Jump with %s" }, { - "key": "demo.help.title", - "english_translation": "Minecraft Demo Mode" + "key": "block.minecraft.amethyst_cluster", + "english_translation": "Amethyst Cluster" }, { - "key": "demo.remainingTime", - "english_translation": "Remaining time: %s" + "key": "block.minecraft.banner.straight_cross.green", + "english_translation": "Green Cross" }, { - "key": "demo.reminder", - "english_translation": "The demo time has expired. Buy the game to continue or start a new world!" + "key": "commands.bossbar.set.style.unchanged", + "english_translation": "Nothing changed. That's already the style of this bossbar" }, { - "key": "difficulty.lock.question", - "english_translation": "Are you sure you want to lock the difficulty of this world? This will set this world to always be %1$s, and you will never be able to change that again." + "key": "gui.days", + "english_translation": "%s day(s)" }, { - "key": "difficulty.lock.title", - "english_translation": "Lock World Difficulty" + "key": "subtitles.block.fire.extinguish", + "english_translation": "Fire extinguished" }, { - "key": "disconnect.closed", - "english_translation": "Connection closed" + "key": "resourcePack.vanilla.name", + "english_translation": "Default" }, { - "key": "disconnect.disconnected", - "english_translation": "Disconnected by Server" + "key": "mco.configure.world.slot", + "english_translation": "World %s" }, { - "key": "disconnect.endOfStream", - "english_translation": "End of stream" + "key": "block.minecraft.waxed_cut_copper", + "english_translation": "Waxed Cut Copper" }, { - "key": "disconnect.exceeded_packet_rate", - "english_translation": "Kicked for exceeding packet rate limit" + "key": "block.minecraft.birch_slab", + "english_translation": "Birch Slab" }, { - "key": "disconnect.genericReason", - "english_translation": "%s" + "key": "gui.chatSelection.fold", + "english_translation": "%s message(s) hidden" }, { - "key": "disconnect.kicked", - "english_translation": "Was kicked from the game" + "key": "painting.minecraft.alban.title", + "english_translation": "Albanian" }, { - "key": "disconnect.loginFailed", - "english_translation": "Failed to log in" + "key": "mco.upload.failed", + "english_translation": "Upload failed! (%s)" }, { - "key": "disconnect.loginFailedInfo", - "english_translation": "Failed to log in: %s" + "key": "biome.minecraft.cold_ocean", + "english_translation": "Cold Ocean" }, { - "key": "disconnect.loginFailedInfo.insufficientPrivileges", - "english_translation": "Multiplayer is disabled. Please check your Microsoft account settings." + "key": "block.minecraft.banner.half_horizontal_bottom.pink", + "english_translation": "Pink Per Fess Inverted" }, { - "key": "disconnect.loginFailedInfo.invalidSession", - "english_translation": "Invalid session (Try restarting your game and the launcher)" + "key": "options.framerateLimit", + "english_translation": "Max Framerate" }, { - "key": "disconnect.loginFailedInfo.serversUnavailable", - "english_translation": "The authentication servers are currently not reachable. Please try again." + "key": "trim_material.minecraft.amethyst", + "english_translation": "Amethyst Material" }, { - "key": "disconnect.loginFailedInfo.userBanned", - "english_translation": "You are banned from playing online" + "key": "narrator.button.difficulty_lock.unlocked", + "english_translation": "Unlocked" }, { - "key": "disconnect.lost", - "english_translation": "Connection Lost" - }, - { - "key": "disconnect.overflow", - "english_translation": "Buffer overflow" - }, - { - "key": "disconnect.quitting", - "english_translation": "Quitting" - }, - { - "key": "disconnect.spam", - "english_translation": "Kicked for spamming" - }, - { - "key": "disconnect.timeout", - "english_translation": "Timed out" - }, - { - "key": "disconnect.unknownHost", - "english_translation": "Unknown host" - }, - { - "key": "editGamerule.default", - "english_translation": "Default: %s" - }, - { - "key": "editGamerule.title", - "english_translation": "Edit Game Rules" - }, - { - "key": "effect.duration.infinite", - "english_translation": "∞" - }, - { - "key": "effect.minecraft.absorption", - "english_translation": "Absorption" - }, - { - "key": "effect.minecraft.bad_omen", - "english_translation": "Bad Omen" - }, - { - "key": "effect.minecraft.blindness", - "english_translation": "Blindness" - }, - { - "key": "effect.minecraft.conduit_power", - "english_translation": "Conduit Power" - }, - { - "key": "effect.minecraft.darkness", - "english_translation": "Darkness" - }, - { - "key": "effect.minecraft.dolphins_grace", - "english_translation": "Dolphin's Grace" - }, - { - "key": "effect.minecraft.fire_resistance", - "english_translation": "Fire Resistance" - }, - { - "key": "effect.minecraft.glowing", - "english_translation": "Glowing" - }, - { - "key": "effect.minecraft.haste", - "english_translation": "Haste" - }, - { - "key": "effect.minecraft.health_boost", - "english_translation": "Health Boost" - }, - { - "key": "effect.minecraft.hero_of_the_village", - "english_translation": "Hero of the Village" - }, - { - "key": "effect.minecraft.hunger", - "english_translation": "Hunger" - }, - { - "key": "effect.minecraft.instant_damage", - "english_translation": "Instant Damage" - }, - { - "key": "effect.minecraft.instant_health", - "english_translation": "Instant Health" - }, - { - "key": "effect.minecraft.invisibility", - "english_translation": "Invisibility" - }, - { - "key": "effect.minecraft.jump_boost", - "english_translation": "Jump Boost" - }, - { - "key": "effect.minecraft.levitation", - "english_translation": "Levitation" - }, - { - "key": "effect.minecraft.luck", - "english_translation": "Luck" - }, - { - "key": "effect.minecraft.mining_fatigue", - "english_translation": "Mining Fatigue" - }, - { - "key": "effect.minecraft.nausea", - "english_translation": "Nausea" - }, - { - "key": "effect.minecraft.night_vision", - "english_translation": "Night Vision" - }, - { - "key": "effect.minecraft.poison", - "english_translation": "Poison" - }, - { - "key": "effect.minecraft.regeneration", - "english_translation": "Regeneration" - }, - { - "key": "effect.minecraft.resistance", - "english_translation": "Resistance" - }, - { - "key": "effect.minecraft.saturation", - "english_translation": "Saturation" - }, - { - "key": "effect.minecraft.slow_falling", - "english_translation": "Slow Falling" - }, - { - "key": "effect.minecraft.slowness", - "english_translation": "Slowness" - }, - { - "key": "effect.minecraft.speed", - "english_translation": "Speed" - }, - { - "key": "effect.minecraft.strength", - "english_translation": "Strength" - }, - { - "key": "effect.minecraft.unluck", - "english_translation": "Bad Luck" - }, - { - "key": "effect.minecraft.water_breathing", - "english_translation": "Water Breathing" - }, - { - "key": "effect.minecraft.weakness", - "english_translation": "Weakness" - }, - { - "key": "effect.minecraft.wither", - "english_translation": "Wither" - }, - { - "key": "effect.none", - "english_translation": "No Effects" - }, - { - "key": "enchantment.level.1", - "english_translation": "I" - }, - { - "key": "enchantment.level.2", - "english_translation": "II" - }, - { - "key": "enchantment.level.3", - "english_translation": "III" - }, - { - "key": "enchantment.level.4", - "english_translation": "IV" - }, - { - "key": "enchantment.level.5", - "english_translation": "V" - }, - { - "key": "enchantment.level.6", - "english_translation": "VI" - }, - { - "key": "enchantment.level.7", - "english_translation": "VII" - }, - { - "key": "enchantment.level.8", - "english_translation": "VIII" - }, - { - "key": "enchantment.level.9", - "english_translation": "IX" - }, - { - "key": "enchantment.level.10", - "english_translation": "X" - }, - { - "key": "enchantment.minecraft.aqua_affinity", - "english_translation": "Aqua Affinity" - }, - { - "key": "enchantment.minecraft.bane_of_arthropods", - "english_translation": "Bane of Arthropods" - }, - { - "key": "enchantment.minecraft.binding_curse", - "english_translation": "Curse of Binding" - }, - { - "key": "enchantment.minecraft.blast_protection", - "english_translation": "Blast Protection" - }, - { - "key": "enchantment.minecraft.channeling", - "english_translation": "Channeling" - }, - { - "key": "enchantment.minecraft.depth_strider", - "english_translation": "Depth Strider" - }, - { - "key": "enchantment.minecraft.efficiency", - "english_translation": "Efficiency" - }, - { - "key": "enchantment.minecraft.feather_falling", - "english_translation": "Feather Falling" - }, - { - "key": "enchantment.minecraft.fire_aspect", - "english_translation": "Fire Aspect" - }, - { - "key": "enchantment.minecraft.fire_protection", - "english_translation": "Fire Protection" - }, - { - "key": "enchantment.minecraft.flame", - "english_translation": "Flame" - }, - { - "key": "enchantment.minecraft.fortune", - "english_translation": "Fortune" - }, - { - "key": "enchantment.minecraft.frost_walker", - "english_translation": "Frost Walker" - }, - { - "key": "enchantment.minecraft.impaling", - "english_translation": "Impaling" - }, - { - "key": "enchantment.minecraft.infinity", - "english_translation": "Infinity" - }, - { - "key": "enchantment.minecraft.knockback", - "english_translation": "Knockback" - }, - { - "key": "enchantment.minecraft.looting", - "english_translation": "Looting" - }, - { - "key": "enchantment.minecraft.loyalty", - "english_translation": "Loyalty" - }, - { - "key": "enchantment.minecraft.luck_of_the_sea", - "english_translation": "Luck of the Sea" - }, - { - "key": "enchantment.minecraft.lure", - "english_translation": "Lure" - }, - { - "key": "enchantment.minecraft.mending", - "english_translation": "Mending" - }, - { - "key": "enchantment.minecraft.multishot", - "english_translation": "Multishot" - }, - { - "key": "enchantment.minecraft.piercing", - "english_translation": "Piercing" - }, - { - "key": "enchantment.minecraft.power", - "english_translation": "Power" - }, - { - "key": "enchantment.minecraft.projectile_protection", - "english_translation": "Projectile Protection" - }, - { - "key": "enchantment.minecraft.protection", - "english_translation": "Protection" - }, - { - "key": "enchantment.minecraft.punch", - "english_translation": "Punch" - }, - { - "key": "enchantment.minecraft.quick_charge", - "english_translation": "Quick Charge" - }, - { - "key": "enchantment.minecraft.respiration", - "english_translation": "Respiration" + "key": "commands.datapack.list.available.none", + "english_translation": "There are no more data packs available" }, { "key": "enchantment.minecraft.riptide", "english_translation": "Riptide" }, { - "key": "enchantment.minecraft.sharpness", - "english_translation": "Sharpness" + "key": "selectWorld.warning.deprecated.question", + "english_translation": "Some features used are deprecated and will stop working in the future. Do you wish to proceed?" }, { - "key": "enchantment.minecraft.silk_touch", - "english_translation": "Silk Touch" + "key": "argument.nbt.array.mixed", + "english_translation": "Can't insert %s into %s" }, { - "key": "enchantment.minecraft.smite", - "english_translation": "Smite" + "key": "block.minecraft.banner.triangle_top.gray", + "english_translation": "Gray Inverted Chevron" }, { - "key": "enchantment.minecraft.soul_speed", - "english_translation": "Soul Speed" + "key": "commands.kill.success.multiple", + "english_translation": "Killed %s entities" }, { - "key": "enchantment.minecraft.sweeping", - "english_translation": "Sweeping Edge" + "key": "block.minecraft.brown_concrete", + "english_translation": "Brown Concrete" }, { - "key": "enchantment.minecraft.swift_sneak", - "english_translation": "Swift Sneak" + "key": "disconnect.loginFailedInfo.userBanned", + "english_translation": "You are banned from playing online" }, { - "key": "enchantment.minecraft.thorns", - "english_translation": "Thorns" + "key": "block.minecraft.potted_bamboo", + "english_translation": "Potted Bamboo" }, { - "key": "enchantment.minecraft.unbreaking", - "english_translation": "Unbreaking" + "key": "block.minecraft.blackstone_wall", + "english_translation": "Blackstone Wall" }, { - "key": "enchantment.minecraft.vanishing_curse", - "english_translation": "Curse of Vanishing" + "key": "advMode.command", + "english_translation": "Console Command" }, { - "key": "entity.minecraft.allay", - "english_translation": "Allay" + "key": "subtitles.entity.parrot.imitate.warden", + "english_translation": "Parrot whines" }, { - "key": "entity.minecraft.area_effect_cloud", - "english_translation": "Area Effect Cloud" + "key": "options.chat.line_spacing", + "english_translation": "Line Spacing" }, { - "key": "entity.minecraft.armor_stand", - "english_translation": "Armor Stand" + "key": "block.minecraft.banner.flower.blue", + "english_translation": "Blue Flower Charge" }, { - "key": "entity.minecraft.arrow", - "english_translation": "Arrow" + "key": "datapackFailure.title", + "english_translation": "Errors in currently selected data packs prevented the world from loading.\nYou can either try to load it with only the vanilla data pack (\"safe mode\"), or go back to the title screen and fix it manually." }, { - "key": "entity.minecraft.axolotl", - "english_translation": "Axolotl" + "key": "biome.minecraft.frozen_peaks", + "english_translation": "Frozen Peaks" }, { - "key": "entity.minecraft.bat", - "english_translation": "Bat" + "key": "key.keyboard.keypad.divide", + "english_translation": "Keypad /" }, { - "key": "entity.minecraft.bee", - "english_translation": "Bee" + "key": "block.minecraft.sugar_cane", + "english_translation": "Sugar Cane" }, { - "key": "entity.minecraft.blaze", - "english_translation": "Blaze" + "key": "item.color", + "english_translation": "Color: %s" }, { - "key": "entity.minecraft.block_display", - "english_translation": "Block Display" + "key": "block.minecraft.end_gateway", + "english_translation": "End Gateway" }, { - "key": "entity.minecraft.boat", - "english_translation": "Boat" + "key": "advancements.nether.summon_wither.description", + "english_translation": "Summon the Wither" }, { - "key": "entity.minecraft.camel", - "english_translation": "Camel" + "key": "block.minecraft.deepslate_copper_ore", + "english_translation": "Deepslate Copper Ore" }, { - "key": "entity.minecraft.cat", - "english_translation": "Cat" + "key": "item.minecraft.shelter_pottery_sherd", + "english_translation": "Shelter Pottery Sherd" }, { - "key": "entity.minecraft.cave_spider", - "english_translation": "Cave Spider" + "key": "resourcePack.server.name", + "english_translation": "World Specific Resources" }, { - "key": "entity.minecraft.chest_boat", - "english_translation": "Boat with Chest" + "key": "block.minecraft.cracked_deepslate_bricks", + "english_translation": "Cracked Deepslate Bricks" }, { - "key": "entity.minecraft.chest_minecart", - "english_translation": "Minecart with Chest" + "key": "subtitles.block.door.toggle", + "english_translation": "Door creaks" }, { - "key": "entity.minecraft.chicken", - "english_translation": "Chicken" + "key": "multiplayer.disconnect.outdated_client", + "english_translation": "Incompatible client! Please use %s" }, { - "key": "entity.minecraft.cod", - "english_translation": "Cod" + "key": "block.minecraft.horn_coral_wall_fan", + "english_translation": "Horn Coral Wall Fan" }, { - "key": "entity.minecraft.command_block_minecart", - "english_translation": "Minecart with Command Block" + "key": "entity.minecraft.warden", + "english_translation": "Warden" }, { - "key": "entity.minecraft.cow", - "english_translation": "Cow" + "key": "mco.selectServer.mapOnlySupportedForVersion", + "english_translation": "This map is unsupported in %s" }, { - "key": "entity.minecraft.creeper", - "english_translation": "Creeper" + "key": "item.minecraft.golden_axe", + "english_translation": "Golden Axe" }, { - "key": "entity.minecraft.dolphin", - "english_translation": "Dolphin" + "key": "item.minecraft.skull_pottery_sherd", + "english_translation": "Skull Pottery Sherd" }, { - "key": "entity.minecraft.donkey", - "english_translation": "Donkey" + "key": "block.minecraft.deepslate_tiles", + "english_translation": "Deepslate Tiles" }, { - "key": "entity.minecraft.dragon_fireball", - "english_translation": "Dragon Fireball" + "key": "commands.execute.conditional.pass", + "english_translation": "Test passed" }, { - "key": "entity.minecraft.drowned", - "english_translation": "Drowned" + "key": "gui.abuseReport.reason.defamation_impersonation_false_information.description", + "english_translation": "Someone is damaging someone else's reputation, pretending to be someone they're not, or sharing false information with the aim to exploit or mislead others." }, { - "key": "entity.minecraft.egg", - "english_translation": "Thrown Egg" + "key": "block.minecraft.banner.gradient_up.cyan", + "english_translation": "Cyan Base Gradient" }, { - "key": "entity.minecraft.elder_guardian", - "english_translation": "Elder Guardian" + "key": "mco.backup.entry.undefined", + "english_translation": "Undefined Change" }, { - "key": "entity.minecraft.end_crystal", - "english_translation": "End Crystal" + "key": "subtitles.entity.turtle.shamble_baby", + "english_translation": "Turtle baby shambles" }, { - "key": "entity.minecraft.ender_dragon", - "english_translation": "Ender Dragon" + "key": "biome.minecraft.snowy_slopes", + "english_translation": "Snowy Slopes" }, { - "key": "entity.minecraft.ender_pearl", - "english_translation": "Thrown Ender Pearl" + "key": "death.attack.fallingStalactite", + "english_translation": "%1$s was skewered by a falling stalactite" }, { - "key": "entity.minecraft.enderman", - "english_translation": "Enderman" + "key": "block.minecraft.blue_concrete", + "english_translation": "Blue Concrete" }, { - "key": "entity.minecraft.endermite", - "english_translation": "Endermite" + "key": "block.minecraft.banner.creeper.white", + "english_translation": "White Creeper Charge" }, { - "key": "entity.minecraft.evoker", - "english_translation": "Evoker" + "key": "selectWorld.import_worldgen_settings", + "english_translation": "Import Settings" }, { - "key": "entity.minecraft.evoker_fangs", - "english_translation": "Evoker Fangs" + "key": "block.minecraft.banner.triangles_bottom.lime", + "english_translation": "Lime Base Indented" }, { - "key": "entity.minecraft.experience_bottle", - "english_translation": "Thrown Bottle o' Enchanting" + "key": "item.minecraft.smithing_template.ingredients", + "english_translation": "Ingredients:" }, { - "key": "entity.minecraft.experience_orb", - "english_translation": "Experience Orb" + "key": "mco.terms.title", + "english_translation": "Realms Terms of Service" }, { - "key": "entity.minecraft.eye_of_ender", - "english_translation": "Eye of Ender" + "key": "item.minecraft.light_gray_dye", + "english_translation": "Light Gray Dye" }, { - "key": "entity.minecraft.falling_block", - "english_translation": "Falling Block" + "key": "block.minecraft.banner.border.brown", + "english_translation": "Brown Bordure" }, { - "key": "entity.minecraft.falling_block_type", - "english_translation": "Falling %s" + "key": "block.minecraft.fire_coral_wall_fan", + "english_translation": "Fire Coral Wall Fan" }, { - "key": "entity.minecraft.fireball", - "english_translation": "Fireball" + "key": "block.minecraft.dispenser", + "english_translation": "Dispenser" }, { - "key": "entity.minecraft.firework_rocket", - "english_translation": "Firework Rocket" + "key": "subtitles.item.armor.equip", + "english_translation": "Gear equips" }, { - "key": "entity.minecraft.fishing_bobber", - "english_translation": "Fishing Bobber" + "key": "biome.minecraft.meadow", + "english_translation": "Meadow" }, { - "key": "entity.minecraft.fox", - "english_translation": "Fox" + "key": "subtitles.entity.parrot.imitate.skeleton", + "english_translation": "Parrot rattles" }, { - "key": "entity.minecraft.frog", - "english_translation": "Frog" + "key": "argument.entity.toomany", + "english_translation": "Only one entity is allowed, but the provided selector allows more than one" }, { - "key": "entity.minecraft.furnace_minecart", - "english_translation": "Minecart with Furnace" + "key": "item.minecraft.heartbreak_pottery_shard", + "english_translation": "Heartbreak Pottery Shard" }, { - "key": "entity.minecraft.ghast", - "english_translation": "Ghast" + "key": "commands.playsound.success.single", + "english_translation": "Played sound %s to %s" }, { - "key": "entity.minecraft.giant", - "english_translation": "Giant" + "key": "subtitles.entity.ravager.celebrate", + "english_translation": "Ravager cheers" }, { - "key": "entity.minecraft.glow_item_frame", - "english_translation": "Glow Item Frame" + "key": "lanServer.start", + "english_translation": "Start LAN World" }, { - "key": "entity.minecraft.glow_squid", - "english_translation": "Glow Squid" + "key": "subtitles.entity.player.attack.sweep", + "english_translation": "Sweeping attack" }, { - "key": "entity.minecraft.goat", - "english_translation": "Goat" + "key": "block.minecraft.emerald_ore", + "english_translation": "Emerald Ore" }, { - "key": "entity.minecraft.guardian", - "english_translation": "Guardian" + "key": "mco.template.select.narrate.version", + "english_translation": "version %s" }, { - "key": "entity.minecraft.hoglin", - "english_translation": "Hoglin" + "key": "subtitles.entity.elder_guardian.ambient", + "english_translation": "Elder Guardian moans" }, { - "key": "entity.minecraft.hopper_minecart", - "english_translation": "Minecart with Hopper" + "key": "advancements.nether.brew_potion.description", + "english_translation": "Brew a Potion" }, { - "key": "entity.minecraft.horse", - "english_translation": "Horse" + "key": "chat.disabled.launcher", + "english_translation": "Chat disabled by launcher option. Cannot send message." }, { - "key": "entity.minecraft.husk", - "english_translation": "Husk" + "key": "subtitles.entity.magma_cube.squish", + "english_translation": "Magma Cube squishes" }, { - "key": "entity.minecraft.illusioner", - "english_translation": "Illusioner" + "key": "block.minecraft.dead_tube_coral_wall_fan", + "english_translation": "Dead Tube Coral Wall Fan" }, { - "key": "entity.minecraft.interaction", - "english_translation": "Interaction" + "key": "subtitles.block.beehive.exit", + "english_translation": "Bee leaves hive" }, { - "key": "entity.minecraft.iron_golem", - "english_translation": "Iron Golem" + "key": "options.gamma.max", + "english_translation": "Bright" }, { - "key": "entity.minecraft.item", - "english_translation": "Item" + "key": "block.minecraft.polished_blackstone_pressure_plate", + "english_translation": "Polished Blackstone Pressure Plate" }, { - "key": "entity.minecraft.item_display", - "english_translation": "Item Display" + "key": "commands.enchant.failed.entity", + "english_translation": "%s is not a valid entity for this command" }, { - "key": "entity.minecraft.item_frame", - "english_translation": "Item Frame" + "key": "subtitles.block.chest.open", + "english_translation": "Chest opens" }, { - "key": "entity.minecraft.killer_bunny", - "english_translation": "The Killer Bunny" + "key": "block.minecraft.banner.border.orange", + "english_translation": "Orange Bordure" }, { - "key": "entity.minecraft.leash_knot", - "english_translation": "Leash Knot" + "key": "subtitles.entity.husk.converted_to_zombie", + "english_translation": "Husk converts to Zombie" }, { - "key": "entity.minecraft.lightning_bolt", - "english_translation": "Lightning Bolt" + "key": "subtitles.entity.pig.death", + "english_translation": "Pig dies" }, { - "key": "entity.minecraft.llama", - "english_translation": "Llama" + "key": "argument.id.invalid", + "english_translation": "Invalid ID" }, { - "key": "entity.minecraft.llama_spit", - "english_translation": "Llama Spit" + "key": "block.minecraft.purple_bed", + "english_translation": "Purple Bed" }, { - "key": "entity.minecraft.magma_cube", - "english_translation": "Magma Cube" + "key": "options.credits_and_attribution", + "english_translation": "Credits & Attribution..." }, { - "key": "entity.minecraft.marker", - "english_translation": "Marker" + "key": "mco.create.world.subtitle", + "english_translation": "Optionally, select what world to put on your new realm" }, { - "key": "entity.minecraft.minecart", - "english_translation": "Minecart" + "key": "options.screenEffectScale", + "english_translation": "Distortion Effects" }, { - "key": "entity.minecraft.mooshroom", - "english_translation": "Mooshroom" + "key": "block.minecraft.banner.flower.purple", + "english_translation": "Purple Flower Charge" }, { - "key": "entity.minecraft.mule", - "english_translation": "Mule" - }, - { - "key": "entity.minecraft.ocelot", - "english_translation": "Ocelot" - }, - { - "key": "entity.minecraft.painting", - "english_translation": "Painting" - }, - { - "key": "entity.minecraft.panda", - "english_translation": "Panda" - }, - { - "key": "entity.minecraft.parrot", - "english_translation": "Parrot" - }, - { - "key": "entity.minecraft.phantom", - "english_translation": "Phantom" - }, - { - "key": "entity.minecraft.pig", - "english_translation": "Pig" - }, - { - "key": "entity.minecraft.piglin", - "english_translation": "Piglin" - }, - { - "key": "entity.minecraft.piglin_brute", - "english_translation": "Piglin Brute" - }, - { - "key": "entity.minecraft.pillager", - "english_translation": "Pillager" - }, - { - "key": "entity.minecraft.player", - "english_translation": "Player" - }, - { - "key": "entity.minecraft.polar_bear", - "english_translation": "Polar Bear" - }, - { - "key": "entity.minecraft.potion", - "english_translation": "Potion" - }, - { - "key": "entity.minecraft.pufferfish", - "english_translation": "Pufferfish" - }, - { - "key": "entity.minecraft.rabbit", - "english_translation": "Rabbit" - }, - { - "key": "entity.minecraft.ravager", - "english_translation": "Ravager" - }, - { - "key": "entity.minecraft.salmon", - "english_translation": "Salmon" - }, - { - "key": "entity.minecraft.sheep", - "english_translation": "Sheep" - }, - { - "key": "entity.minecraft.shulker", - "english_translation": "Shulker" - }, - { - "key": "entity.minecraft.shulker_bullet", - "english_translation": "Shulker Bullet" - }, - { - "key": "entity.minecraft.silverfish", - "english_translation": "Silverfish" - }, - { - "key": "entity.minecraft.skeleton", - "english_translation": "Skeleton" - }, - { - "key": "entity.minecraft.skeleton_horse", - "english_translation": "Skeleton Horse" - }, - { - "key": "entity.minecraft.slime", - "english_translation": "Slime" + "key": "mco.configure.world.edit.subscreen.inspiration", + "english_translation": "Some settings are disabled since your current world is an inspiration" }, { "key": "entity.minecraft.small_fireball", "english_translation": "Small Fireball" }, { - "key": "entity.minecraft.sniffer", - "english_translation": "Sniffer" + "key": "advancements.toast.goal", + "english_translation": "Goal Reached!" }, { - "key": "entity.minecraft.snow_golem", - "english_translation": "Snow Golem" + "key": "block.minecraft.banner.circle.light_blue", + "english_translation": "Light Blue Roundel" }, { - "key": "entity.minecraft.snowball", - "english_translation": "Snowball" + "key": "item.minecraft.bundle", + "english_translation": "Bundle" }, { - "key": "entity.minecraft.spawner_minecart", - "english_translation": "Minecart with Monster Spawner" + "key": "block.minecraft.banner.stripe_top.red", + "english_translation": "Red Chief" }, { - "key": "entity.minecraft.spectral_arrow", - "english_translation": "Spectral Arrow" + "key": "key.categories.movement", + "english_translation": "Movement" }, { - "key": "entity.minecraft.spider", - "english_translation": "Spider" + "key": "block.minecraft.magenta_glazed_terracotta", + "english_translation": "Magenta Glazed Terracotta" }, { - "key": "entity.minecraft.squid", - "english_translation": "Squid" + "key": "subtitles.entity.puffer_fish.hurt", + "english_translation": "Pufferfish hurts" }, { - "key": "entity.minecraft.stray", - "english_translation": "Stray" + "key": "advancements.adventure.lightning_rod_with_villager_no_fire.description", + "english_translation": "Protect a Villager from an undesired shock without starting a fire" }, { - "key": "entity.minecraft.strider", - "english_translation": "Strider" + "key": "commands.bossbar.set.players.unchanged", + "english_translation": "Nothing changed. Those players are already on the bossbar with nobody to add or remove" }, { - "key": "entity.minecraft.tadpole", - "english_translation": "Tadpole" + "key": "block.minecraft.moving_piston", + "english_translation": "Moving Piston" }, { - "key": "entity.minecraft.text_display", - "english_translation": "Text Display" + "key": "subtitles.entity.squid.ambient", + "english_translation": "Squid swims" + }, + { + "key": "block.minecraft.fire", + "english_translation": "Fire" + }, + { + "key": "block.minecraft.banner.stripe_downleft.yellow", + "english_translation": "Yellow Bend Sinister" + }, + { + "key": "block.minecraft.birch_door", + "english_translation": "Birch Door" + }, + { + "key": "block.minecraft.cyan_shulker_box", + "english_translation": "Cyan Shulker Box" + }, + { + "key": "advancements.nether.obtain_blaze_rod.description", + "english_translation": "Relieve a Blaze of its rod" + }, + { + "key": "block.minecraft.smooth_sandstone_stairs", + "english_translation": "Smooth Sandstone Stairs" + }, + { + "key": "subtitles.entity.spider.death", + "english_translation": "Spider dies" + }, + { + "key": "block.minecraft.lime_glazed_terracotta", + "english_translation": "Lime Glazed Terracotta" + }, + { + "key": "subtitles.entity.ender_dragon.death", + "english_translation": "Dragon dies" + }, + { + "key": "key.keyboard.down", + "english_translation": "Down Arrow" + }, + { + "key": "stat.minecraft.open_barrel", + "english_translation": "Barrels Opened" + }, + { + "key": "debug.creative_spectator.error", + "english_translation": "Unable to switch game mode; no permission" + }, + { + "key": "mco.brokenworld.nonowner.title", + "english_translation": "World is out of date" + }, + { + "key": "block.minecraft.heavy_weighted_pressure_plate", + "english_translation": "Heavy Weighted Pressure Plate" + }, + { + "key": "telemetry.property.frame_rate_samples.title", + "english_translation": "Frame Rate Samples (FPS)" + }, + { + "key": "block.minecraft.banner.half_vertical.gray", + "english_translation": "Gray Per Pale" + }, + { + "key": "gui.socialInteractions.search_hint", + "english_translation": "Search..." + }, + { + "key": "entity.minecraft.cod", + "english_translation": "Cod" + }, + { + "key": "argument.entity.options.sort.description", + "english_translation": "Sort the entities" + }, + { + "key": "commands.banlist.list", + "english_translation": "There are %s ban(s):" + }, + { + "key": "entity.minecraft.hoglin", + "english_translation": "Hoglin" + }, + { + "key": "biome.minecraft.basalt_deltas", + "english_translation": "Basalt Deltas" + }, + { + "key": "block.minecraft.banner.stripe_right.green", + "english_translation": "Green Pale Sinister" + }, + { + "key": "argument.block.tag.disallowed", + "english_translation": "Tags aren't allowed here, only actual blocks" + }, + { + "key": "options.videoTitle", + "english_translation": "Video Settings" + }, + { + "key": "entity.minecraft.cow", + "english_translation": "Cow" + }, + { + "key": "generator.minecraft.debug_all_block_states", + "english_translation": "Debug Mode" + }, + { + "key": "block.minecraft.pink_glazed_terracotta", + "english_translation": "Pink Glazed Terracotta" + }, + { + "key": "painting.minecraft.bust.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "telemetry.property.ticks_since_load.title", + "english_translation": "Time Since Load (Ticks)" + }, + { + "key": "subtitles.entity.hoglin.retreat", + "english_translation": "Hoglin retreats" + }, + { + "key": "commands.forceload.removed.single", + "english_translation": "Unmarked chunk %s in %s for force loading" + }, + { + "key": "block.minecraft.light_blue_carpet", + "english_translation": "Light Blue Carpet" + }, + { + "key": "subtitles.entity.axolotl.death", + "english_translation": "Axolotl dies" + }, + { + "key": "chat.disabled.chain_broken", + "english_translation": "Chat disabled due to broken chain. Please try reconnecting." + }, + { + "key": "enchantment.minecraft.piercing", + "english_translation": "Piercing" + }, + { + "key": "entity.minecraft.ravager", + "english_translation": "Ravager" + }, + { + "key": "mco.configure.world.invited", + "english_translation": "Invited" + }, + { + "key": "options.glintStrength.tooltip", + "english_translation": "Controls how transparent the visual glint is on enchanted items." + }, + { + "key": "death.attack.thrown", + "english_translation": "%1$s was pummeled by %2$s" }, { "key": "entity.minecraft.tnt", "english_translation": "Primed TNT" }, { - "key": "entity.minecraft.tnt_minecart", - "english_translation": "Minecart with TNT" + "key": "item.minecraft.potion.effect.slowness", + "english_translation": "Potion of Slowness" }, { - "key": "entity.minecraft.trader_llama", - "english_translation": "Trader Llama" + "key": "block.minecraft.mossy_stone_brick_slab", + "english_translation": "Mossy Stone Brick Slab" }, { - "key": "entity.minecraft.trident", - "english_translation": "Trident" + "key": "createWorld.customize.custom.useLavaOceans", + "english_translation": "Lava Oceans" }, { - "key": "entity.minecraft.tropical_fish", - "english_translation": "Tropical Fish" + "key": "biome.minecraft.stony_peaks", + "english_translation": "Stony Peaks" + }, + { + "key": "color.minecraft.light_gray", + "english_translation": "Light Gray" + }, + { + "key": "subtitles.entity.slime.death", + "english_translation": "Slime dies" + }, + { + "key": "subtitles.entity.firework_rocket.blast", + "english_translation": "Firework blasts" + }, + { + "key": "addServer.title", + "english_translation": "Edit Server Info" + }, + { + "key": "key.keyboard.grave.accent", + "english_translation": "`" + }, + { + "key": "block.minecraft.lime_candle", + "english_translation": "Lime Candle" + }, + { + "key": "subtitles.particle.soul_escape", + "english_translation": "Soul escapes" + }, + { + "key": "mco.selectServer.expired", + "english_translation": "Expired realm" + }, + { + "key": "color.minecraft.white", + "english_translation": "White" + }, + { + "key": "commands.datapack.enable.failed", + "english_translation": "Pack '%s' is already enabled!" + }, + { + "key": "block.minecraft.enchanting_table", + "english_translation": "Enchanting Table" + }, + { + "key": "block.minecraft.barrel", + "english_translation": "Barrel" + }, + { + "key": "narrator.button.language", + "english_translation": "Language" + }, + { + "key": "gui.recipebook.toggleRecipes.blastable", + "english_translation": "Showing Blastable" + }, + { + "key": "mco.configure.world.leave.question.line2", + "english_translation": "Are you sure you want to continue?" + }, + { + "key": "mco.configure.world.leave.question.line1", + "english_translation": "If you leave this realm you won't see it unless you are invited again" + }, + { + "key": "subtitles.item.crossbow.charge", + "english_translation": "Crossbow charges up" + }, + { + "key": "block.minecraft.chain", + "english_translation": "Chain" + }, + { + "key": "painting.minecraft.plant.title", + "english_translation": "Paradisträd" + }, + { + "key": "item.minecraft.potion.effect.regeneration", + "english_translation": "Potion of Regeneration" + }, + { + "key": "subtitles.entity.villager.death", + "english_translation": "Villager dies" + }, + { + "key": "subtitles.entity.phantom.bite", + "english_translation": "Phantom bites" + }, + { + "key": "block.minecraft.banner.triangle_top.red", + "english_translation": "Red Inverted Chevron" + }, + { + "key": "stat.minecraft.interact_with_smithing_table", + "english_translation": "Interactions with Smithing Table" + }, + { + "key": "item.minecraft.tipped_arrow.effect.fire_resistance", + "english_translation": "Arrow of Fire Resistance" + }, + { + "key": "block.minecraft.cave_vines_plant", + "english_translation": "Cave Vines Plant" + }, + { + "key": "subtitles.entity.glow_item_frame.remove_item", + "english_translation": "Glow Item Frame empties" + }, + { + "key": "block.minecraft.quartz_block", + "english_translation": "Block of Quartz" + }, + { + "key": "subtitles.block.shulker_box.open", + "english_translation": "Shulker opens" + }, + { + "key": "commands.bossbar.set.max.unchanged", + "english_translation": "Nothing changed. That's already the max of this bossbar" + }, + { + "key": "block.minecraft.banner.gradient.gray", + "english_translation": "Gray Gradient" + }, + { + "key": "key.mouse", + "english_translation": "Button %1$s" + }, + { + "key": "block.minecraft.cut_copper_stairs", + "english_translation": "Cut Copper Stairs" + }, + { + "key": "block.minecraft.banner.triangles_bottom.blue", + "english_translation": "Blue Base Indented" + }, + { + "key": "block.minecraft.stripped_dark_oak_wood", + "english_translation": "Stripped Dark Oak Wood" + }, + { + "key": "commands.worldborder.warning.time.success", + "english_translation": "Set the world border warning time to %s second(s)" + }, + { + "key": "block.minecraft.banner.border.pink", + "english_translation": "Pink Bordure" + }, + { + "key": "mco.configure.world.restore.question.line2", + "english_translation": "Are you sure you want to continue?" + }, + { + "key": "subtitles.entity.strider.idle", + "english_translation": "Strider chirps" + }, + { + "key": "mco.configure.world.restore.question.line1", + "english_translation": "Your world will be restored to date '%s' (%s)" + }, + { + "key": "dataPack.update_1_20.name", + "english_translation": "Update 1.20" + }, + { + "key": "selectWorld.edit.resetIcon", + "english_translation": "Reset Icon" + }, + { + "key": "disconnect.genericReason", + "english_translation": "%s" + }, + { + "key": "block.minecraft.bamboo_mosaic_stairs", + "english_translation": "Bamboo Mosaic Stairs" + }, + { + "key": "biome.minecraft.flower_forest", + "english_translation": "Flower Forest" + }, + { + "key": "subtitles.chiseled_bookshelf.take", + "english_translation": "Book taken" + }, + { + "key": "stat.minecraft.bell_ring", + "english_translation": "Bells Rung" + }, + { + "key": "subtitles.entity.bat.hurt", + "english_translation": "Bat hurts" + }, + { + "key": "subtitles.entity.squid.death", + "english_translation": "Squid dies" + }, + { + "key": "menu.playdemo", + "english_translation": "Play Demo World" + }, + { + "key": "fabric-registry-sync-v0.unknown-remote.footer", + "english_translation": "And %s more..." + }, + { + "key": "block.minecraft.big_dripleaf_stem", + "english_translation": "Big Dripleaf Stem" + }, + { + "key": "options.allowServerListing.tooltip", + "english_translation": "Servers may list online players as part of their public status.\nWith this option off your name will not show up in such lists." + }, + { + "key": "block.minecraft.stone_pressure_plate", + "english_translation": "Stone Pressure Plate" + }, + { + "key": "biome.minecraft.mangrove_swamp", + "english_translation": "Mangrove Swamp" + }, + { + "key": "block.minecraft.bamboo_button", + "english_translation": "Bamboo Button" + }, + { + "key": "block.minecraft.banner.straight_cross.white", + "english_translation": "White Cross" + }, + { + "key": "advancements.husbandry.breed_an_animal.description", + "english_translation": "Breed two animals together" + }, + { + "key": "block.minecraft.banner.mojang.yellow", + "english_translation": "Yellow Thing" + }, + { + "key": "narrator.loading", + "english_translation": "Loading: %s" + }, + { + "key": "block.minecraft.campfire", + "english_translation": "Campfire" + }, + { + "key": "argument.entity.options.distance.negative", + "english_translation": "Distance cannot be negative" + }, + { + "key": "item.minecraft.oak_chest_boat", + "english_translation": "Oak Boat with Chest" + }, + { + "key": "demo.help.inventory", + "english_translation": "Use the %1$s key to open your inventory" + }, + { + "key": "gui.abuseReport.reason.imminent_harm.description", + "english_translation": "Someone is threatening to harm you or someone else in real life." + }, + { + "key": "subtitles.entity.skeleton_horse.death", + "english_translation": "Skeleton Horse dies" + }, + { + "key": "block.minecraft.spawner", + "english_translation": "Monster Spawner" + }, + { + "key": "commands.enchant.failed", + "english_translation": "Nothing changed. Targets either have no item in their hands or the enchantment could not be applied" + }, + { + "key": "parsing.long.invalid", + "english_translation": "Invalid long '%s'" + }, + { + "key": "mco.selectServer.buy", + "english_translation": "Buy a realm!" + }, + { + "key": "block.minecraft.spruce_wall_sign", + "english_translation": "Spruce Wall Sign" + }, + { + "key": "block.minecraft.banner.gradient_up.red", + "english_translation": "Red Base Gradient" + }, + { + "key": "gamerule.category.drops", + "english_translation": "Drops" + }, + { + "key": "item.minecraft.music_disc_pigstep.desc", + "english_translation": "Lena Raine - Pigstep" + }, + { + "key": "subtitles.entity.zombie_horse.hurt", + "english_translation": "Zombie Horse hurts" + }, + { + "key": "advancements.adventure.arbalistic.title", + "english_translation": "Arbalistic" + }, + { + "key": "subtitles.entity.glow_squid.squirt", + "english_translation": "Glow Squid shoots ink" + }, + { + "key": "item.minecraft.splash_potion.effect.slowness", + "english_translation": "Splash Potion of Slowness" + }, + { + "key": "painting.minecraft.sunset.title", + "english_translation": "sunset_dense" + }, + { + "key": "item.minecraft.music_disc_mall.desc", + "english_translation": "C418 - mall" + }, + { + "key": "item.minecraft.shield.blue", + "english_translation": "Blue Shield" + }, + { + "key": "death.attack.player", + "english_translation": "%1$s was slain by %2$s" + }, + { + "key": "createWorld.customize.custom.confirm2", + "english_translation": "settings and cannot be undone." + }, + { + "key": "mco.worldSlot.minigame", + "english_translation": "Minigame" + }, + { + "key": "createWorld.customize.custom.confirm1", + "english_translation": "This will overwrite your current" + }, + { + "key": "block.minecraft.cherry_button", + "english_translation": "Cherry Button" + }, + { + "key": "block.minecraft.andesite_wall", + "english_translation": "Andesite Wall" + }, + { + "key": "options.gamma", + "english_translation": "Brightness" + }, + { + "key": "subtitles.entity.warden.roar", + "english_translation": "Warden roars" + }, + { + "key": "advancements.adventure.fall_from_world_height.description", + "english_translation": "Free fall from the top of the world (build limit) to the bottom of the world and survive" + }, + { + "key": "parsing.int.invalid", + "english_translation": "Invalid integer '%s'" + }, + { + "key": "chat.tag.system_single_player", + "english_translation": "Server message." + }, + { + "key": "commands.data.get.unknown", + "english_translation": "Can't get %s; tag doesn't exist" + }, + { + "key": "advancements.story.follow_ender_eye.description", + "english_translation": "Follow an Eye of Ender" + }, + { + "key": "block.minecraft.birch_trapdoor", + "english_translation": "Birch Trapdoor" + }, + { + "key": "gamerule.logAdminCommands", + "english_translation": "Broadcast admin commands" + }, + { + "key": "item.minecraft.blue_dye", + "english_translation": "Blue Dye" + }, + { + "key": "block.minecraft.moss_block", + "english_translation": "Moss Block" + }, + { + "key": "block.minecraft.banner.stripe_top.pink", + "english_translation": "Pink Chief" + }, + { + "key": "block.minecraft.torch", + "english_translation": "Torch" + }, + { + "key": "advancements.story.smelt_iron.title", + "english_translation": "Acquire Hardware" + }, + { + "key": "block.minecraft.light_gray_shulker_box", + "english_translation": "Light Gray Shulker Box" + }, + { + "key": "block.minecraft.orange_candle_cake", + "english_translation": "Cake with Orange Candle" + }, + { + "key": "color.minecraft.green", + "english_translation": "Green" + }, + { + "key": "advancements.story.enchant_item.title", + "english_translation": "Enchanter" + }, + { + "key": "mco.upload.select.world.subtitle", + "english_translation": "Please select a singleplayer world to upload" + }, + { + "key": "recipe.notFound", + "english_translation": "Unknown recipe: %s" + }, + { + "key": "options.difficulty.easy", + "english_translation": "Easy" + }, + { + "key": "advMode.mode.redstoneTriggered", + "english_translation": "Needs Redstone" + }, + { + "key": "options.darknessEffectScale.tooltip", + "english_translation": "Controls how much the Darkness effect pulses when a Warden or Sculk Shrieker gives it to you." + }, + { + "key": "subtitles.entity.parrot.imitate.silverfish", + "english_translation": "Parrot hisses" + }, + { + "key": "language.code", + "english_translation": "en_us" + }, + { + "key": "commands.teammsg.failed.noteam", + "english_translation": "You must be on a team to message your team" + }, + { + "key": "block.minecraft.banner.stripe_middle.cyan", + "english_translation": "Cyan Fess" + }, + { + "key": "painting.minecraft.void.title", + "english_translation": "The void" + }, + { + "key": "block.minecraft.dark_oak_button", + "english_translation": "Dark Oak Button" + }, + { + "key": "block.minecraft.large_amethyst_bud", + "english_translation": "Large Amethyst Bud" + }, + { + "key": "trim_pattern.minecraft.spire", + "english_translation": "Spire Armor Trim" + }, + { + "key": "item.minecraft.golden_helmet", + "english_translation": "Golden Helmet" + }, + { + "key": "block.minecraft.soul_lantern", + "english_translation": "Soul Lantern" + }, + { + "key": "block.minecraft.banner.stripe_bottom.pink", + "english_translation": "Pink Base" + }, + { + "key": "commands.team.option.seeFriendlyInvisibles.alreadyDisabled", + "english_translation": "Nothing changed. That team already can't see invisible teammates" + }, + { + "key": "block.minecraft.chiseled_stone_bricks", + "english_translation": "Chiseled Stone Bricks" + }, + { + "key": "block.minecraft.bamboo_planks", + "english_translation": "Bamboo Planks" + }, + { + "key": "block.minecraft.banner.small_stripes.purple", + "english_translation": "Purple Paly" + }, + { + "key": "gamerule.category.chat", + "english_translation": "Chat" + }, + { + "key": "block.minecraft.banner.stripe_right.white", + "english_translation": "White Pale Sinister" + }, + { + "key": "block.minecraft.potted_warped_roots", + "english_translation": "Potted Warped Roots" + }, + { + "key": "painting.minecraft.wind.author", + "english_translation": "Mojang" + }, + { + "key": "entity.minecraft.cat", + "english_translation": "Cat" + }, + { + "key": "item.minecraft.lingering_potion.effect.night_vision", + "english_translation": "Lingering Potion of Night Vision" + }, + { + "key": "argument.entity.selector.randomPlayer", + "english_translation": "Random player" + }, + { + "key": "commands.bossbar.set.players.success.some", + "english_translation": "Custom bossbar %s now has %s player(s): %s" + }, + { + "key": "gamerule.playersSleepingPercentage", + "english_translation": "Sleep percentage" + }, + { + "key": "commands.clear.success.multiple", + "english_translation": "Removed %s item(s) from %s players" + }, + { + "key": "block.minecraft.warped_sign", + "english_translation": "Warped Sign" + }, + { + "key": "block.minecraft.banner.stripe_top.brown", + "english_translation": "Brown Chief" + }, + { + "key": "death.attack.sonic_boom.player", + "english_translation": "%1$s was obliterated by a sonically-charged shriek whilst trying to escape %2$s" + }, + { + "key": "block.minecraft.bamboo", + "english_translation": "Bamboo" + }, + { + "key": "death.attack.thorns.item", + "english_translation": "%1$s was killed by %3$s trying to hurt %2$s" + }, + { + "key": "item.minecraft.cooked_porkchop", + "english_translation": "Cooked Porkchop" + }, + { + "key": "commands.experience.set.points.success.single", + "english_translation": "Set %s experience points on %s" + }, + { + "key": "subtitles.entity.llama.ambient", + "english_translation": "Llama bleats" + }, + { + "key": "block.minecraft.banner.square_bottom_left.red", + "english_translation": "Red Base Dexter Canton" + }, + { + "key": "block.minecraft.sculk", + "english_translation": "Sculk" + }, + { + "key": "painting.minecraft.water.title", + "english_translation": "Water" + }, + { + "key": "selectWorld.gameMode.creative.line1", + "english_translation": "Unlimited resources, free flying and" + }, + { + "key": "block.minecraft.potted_dandelion", + "english_translation": "Potted Dandelion" + }, + { + "key": "options.chat.visibility.full", + "english_translation": "Shown" + }, + { + "key": "advancements.adventure.shoot_arrow.title", + "english_translation": "Take Aim" + }, + { + "key": "mco.configure.world.buttons.subscription", + "english_translation": "Subscription" + }, + { + "key": "subtitles.entity.parrot.imitate.creeper", + "english_translation": "Parrot hisses" + }, + { + "key": "advancements.adventure.adventuring_time.title", + "english_translation": "Adventuring Time" + }, + { + "key": "gui.abuseReport.reason.non_consensual_intimate_imagery", + "english_translation": "Non-consensual intimate imagery" + }, + { + "key": "commands.advancement.grant.many.to.many.failure", + "english_translation": "Couldn't grant %s advancements to %s players as they already have them" + }, + { + "key": "selectWorld.mapFeatures.info", + "english_translation": "Villages, Shipwrecks, etc." + }, + { + "key": "entity.minecraft.tropical_fish.type.snooper", + "english_translation": "Snooper" + }, + { + "key": "item.minecraft.firework_star.shape.small_ball", + "english_translation": "Small Ball" + }, + { + "key": "entity.minecraft.interaction", + "english_translation": "Interaction" + }, + { + "key": "item.minecraft.firework_star.light_blue", + "english_translation": "Light Blue" + }, + { + "key": "effect.minecraft.strength", + "english_translation": "Strength" + }, + { + "key": "block.minecraft.banner.stripe_downright.blue", + "english_translation": "Blue Bend" + }, + { + "key": "item.minecraft.tipped_arrow.effect.water_breathing", + "english_translation": "Arrow of Water Breathing" + }, + { + "key": "block.minecraft.lectern", + "english_translation": "Lectern" + }, + { + "key": "selectWorld.gameMode.creative.line2", + "english_translation": "destroy blocks instantly" + }, + { + "key": "selectWorld.allowCommands", + "english_translation": "Allow Cheats" + }, + { + "key": "advancements.nether.all_potions.title", + "english_translation": "A Furious Cocktail" + }, + { + "key": "painting.minecraft.fire.author", + "english_translation": "Mojang" + }, + { + "key": "block.minecraft.dead_fire_coral_fan", + "english_translation": "Dead Fire Coral Fan" + }, + { + "key": "subtitles.entity.pillager.hurt", + "english_translation": "Pillager hurts" + }, + { + "key": "parsing.long.expected", + "english_translation": "Expected long" + }, + { + "key": "item.minecraft.prize_pottery_shard", + "english_translation": "Prize Pottery Shard" + }, + { + "key": "options.mipmapLevels", + "english_translation": "Mipmap Levels" + }, + { + "key": "block.minecraft.banner.rhombus.purple", + "english_translation": "Purple Lozenge" + }, + { + "key": "createWorld.customize.custom.useStrongholds", + "english_translation": "Strongholds" + }, + { + "key": "block.minecraft.red_stained_glass_pane", + "english_translation": "Red Stained Glass Pane" + }, + { + "key": "commands.data.block.modified", + "english_translation": "Modified block data of %s, %s, %s" + }, + { + "key": "commands.bossbar.unknown", + "english_translation": "No bossbar exists with the ID '%s'" + }, + { + "key": "block.minecraft.smooth_sandstone_slab", + "english_translation": "Smooth Sandstone Slab" }, { "key": "entity.minecraft.tropical_fish.predefined.0", "english_translation": "Anemone" }, { - "key": "entity.minecraft.tropical_fish.predefined.1", - "english_translation": "Black Tang" + "key": "commands.advancement.grant.many.to.many.success", + "english_translation": "Granted %s advancements to %s players" }, { - "key": "entity.minecraft.tropical_fish.predefined.2", - "english_translation": "Blue Tang" + "key": "subtitles.entity.fox.hurt", + "english_translation": "Fox hurts" + }, + { + "key": "advancements.adventure.trade.title", + "english_translation": "What a Deal!" + }, + { + "key": "block.minecraft.orange_banner", + "english_translation": "Orange Banner" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.9", + "english_translation": "Goatfish" + }, + { + "key": "block.minecraft.stripped_oak_wood", + "english_translation": "Stripped Oak Wood" + }, + { + "key": "entity.minecraft.salmon", + "english_translation": "Salmon" + }, + { + "key": "stat.minecraft.interact_with_crafting_table", + "english_translation": "Interactions with Crafting Table" }, { "key": "entity.minecraft.tropical_fish.predefined.3", @@ -12604,12 +5952,12 @@ "english_translation": "Cichlid" }, { - "key": "entity.minecraft.tropical_fish.predefined.5", - "english_translation": "Clownfish" + "key": "entity.minecraft.tropical_fish.predefined.1", + "english_translation": "Black Tang" }, { - "key": "entity.minecraft.tropical_fish.predefined.6", - "english_translation": "Cotton Candy Betta" + "key": "entity.minecraft.tropical_fish.predefined.2", + "english_translation": "Blue Tang" }, { "key": "entity.minecraft.tropical_fish.predefined.7", @@ -12620,3868 +5968,536 @@ "english_translation": "Emperor Red Snapper" }, { - "key": "entity.minecraft.tropical_fish.predefined.9", - "english_translation": "Goatfish" + "key": "block.minecraft.mangrove_roots", + "english_translation": "Mangrove Roots" }, { - "key": "entity.minecraft.tropical_fish.predefined.10", - "english_translation": "Moorish Idol" + "key": "entity.minecraft.tropical_fish.predefined.5", + "english_translation": "Clownfish" }, { - "key": "entity.minecraft.tropical_fish.predefined.11", - "english_translation": "Ornate Butterflyfish" + "key": "team.collision.pushOwnTeam", + "english_translation": "Push own team" }, { - "key": "entity.minecraft.tropical_fish.predefined.12", - "english_translation": "Parrotfish" + "key": "entity.minecraft.tropical_fish.predefined.6", + "english_translation": "Cotton Candy Betta" }, { - "key": "entity.minecraft.tropical_fish.predefined.13", - "english_translation": "Queen Angelfish" + "key": "multiplayer.disconnect.slow_login", + "english_translation": "Took too long to log in" }, { - "key": "entity.minecraft.tropical_fish.predefined.14", - "english_translation": "Red Cichlid" + "key": "block.minecraft.banner.stripe_top.yellow", + "english_translation": "Yellow Chief" }, { - "key": "entity.minecraft.tropical_fish.predefined.15", - "english_translation": "Red Lipped Blenny" + "key": "block.minecraft.redstone_ore", + "english_translation": "Redstone Ore" }, { - "key": "entity.minecraft.tropical_fish.predefined.16", - "english_translation": "Red Snapper" - }, - { - "key": "entity.minecraft.tropical_fish.predefined.17", - "english_translation": "Threadfin" - }, - { - "key": "entity.minecraft.tropical_fish.predefined.18", - "english_translation": "Tomato Clownfish" - }, - { - "key": "entity.minecraft.tropical_fish.predefined.19", - "english_translation": "Triggerfish" - }, - { - "key": "entity.minecraft.tropical_fish.predefined.20", - "english_translation": "Yellowtail Parrotfish" - }, - { - "key": "entity.minecraft.tropical_fish.predefined.21", - "english_translation": "Yellow Tang" - }, - { - "key": "entity.minecraft.tropical_fish.type.betty", - "english_translation": "Betty" - }, - { - "key": "entity.minecraft.tropical_fish.type.blockfish", - "english_translation": "Blockfish" - }, - { - "key": "entity.minecraft.tropical_fish.type.brinely", - "english_translation": "Brinely" - }, - { - "key": "entity.minecraft.tropical_fish.type.clayfish", - "english_translation": "Clayfish" - }, - { - "key": "entity.minecraft.tropical_fish.type.dasher", - "english_translation": "Dasher" - }, - { - "key": "entity.minecraft.tropical_fish.type.flopper", - "english_translation": "Flopper" - }, - { - "key": "entity.minecraft.tropical_fish.type.glitter", - "english_translation": "Glitter" - }, - { - "key": "entity.minecraft.tropical_fish.type.kob", - "english_translation": "Kob" - }, - { - "key": "entity.minecraft.tropical_fish.type.snooper", - "english_translation": "Snooper" - }, - { - "key": "entity.minecraft.tropical_fish.type.spotty", - "english_translation": "Spotty" - }, - { - "key": "entity.minecraft.tropical_fish.type.stripey", - "english_translation": "Stripey" - }, - { - "key": "entity.minecraft.tropical_fish.type.sunstreak", - "english_translation": "Sunstreak" - }, - { - "key": "entity.minecraft.turtle", - "english_translation": "Turtle" - }, - { - "key": "entity.minecraft.vex", - "english_translation": "Vex" - }, - { - "key": "entity.minecraft.villager", - "english_translation": "Villager" - }, - { - "key": "entity.minecraft.villager.armorer", - "english_translation": "Armorer" - }, - { - "key": "entity.minecraft.villager.butcher", - "english_translation": "Butcher" - }, - { - "key": "entity.minecraft.villager.cartographer", - "english_translation": "Cartographer" - }, - { - "key": "entity.minecraft.villager.cleric", - "english_translation": "Cleric" - }, - { - "key": "entity.minecraft.villager.farmer", - "english_translation": "Farmer" - }, - { - "key": "entity.minecraft.villager.fisherman", - "english_translation": "Fisherman" - }, - { - "key": "entity.minecraft.villager.fletcher", - "english_translation": "Fletcher" - }, - { - "key": "entity.minecraft.villager.leatherworker", - "english_translation": "Leatherworker" - }, - { - "key": "entity.minecraft.villager.librarian", - "english_translation": "Librarian" - }, - { - "key": "entity.minecraft.villager.mason", - "english_translation": "Mason" - }, - { - "key": "entity.minecraft.villager.nitwit", - "english_translation": "Nitwit" - }, - { - "key": "entity.minecraft.villager.none", - "english_translation": "Villager" - }, - { - "key": "entity.minecraft.villager.shepherd", - "english_translation": "Shepherd" - }, - { - "key": "entity.minecraft.villager.toolsmith", - "english_translation": "Toolsmith" - }, - { - "key": "entity.minecraft.villager.weaponsmith", - "english_translation": "Weaponsmith" - }, - { - "key": "entity.minecraft.vindicator", - "english_translation": "Vindicator" - }, - { - "key": "entity.minecraft.wandering_trader", - "english_translation": "Wandering Trader" - }, - { - "key": "entity.minecraft.warden", - "english_translation": "Warden" - }, - { - "key": "entity.minecraft.witch", - "english_translation": "Witch" - }, - { - "key": "entity.minecraft.wither", - "english_translation": "Wither" - }, - { - "key": "entity.minecraft.wither_skeleton", - "english_translation": "Wither Skeleton" - }, - { - "key": "entity.minecraft.wither_skull", - "english_translation": "Wither Skull" - }, - { - "key": "entity.minecraft.wolf", - "english_translation": "Wolf" - }, - { - "key": "entity.minecraft.zoglin", - "english_translation": "Zoglin" - }, - { - "key": "entity.minecraft.zombie", - "english_translation": "Zombie" - }, - { - "key": "entity.minecraft.zombie_horse", - "english_translation": "Zombie Horse" - }, - { - "key": "entity.minecraft.zombie_villager", - "english_translation": "Zombie Villager" - }, - { - "key": "entity.minecraft.zombified_piglin", - "english_translation": "Zombified Piglin" - }, - { - "key": "entity.not_summonable", - "english_translation": "Can't summon entity of type %s" - }, - { - "key": "event.minecraft.raid", - "english_translation": "Raid" - }, - { - "key": "event.minecraft.raid.defeat", - "english_translation": "Defeat" - }, - { - "key": "event.minecraft.raid.raiders_remaining", - "english_translation": "Raiders Remaining: %s" - }, - { - "key": "event.minecraft.raid.victory", - "english_translation": "Victory" - }, - { - "key": "filled_map.buried_treasure", - "english_translation": "Buried Treasure Map" - }, - { - "key": "filled_map.id", - "english_translation": "Id #%s" - }, - { - "key": "filled_map.level", - "english_translation": "(Level %s/%s)" - }, - { - "key": "filled_map.locked", - "english_translation": "Locked" - }, - { - "key": "filled_map.mansion", - "english_translation": "Woodland Explorer Map" - }, - { - "key": "filled_map.monument", - "english_translation": "Ocean Explorer Map" + "key": "subtitles.item.shovel.flatten", + "english_translation": "Shovel flattens" }, { "key": "filled_map.scale", "english_translation": "Scaling at 1:%s" }, { - "key": "filled_map.unknown", - "english_translation": "Unknown Map" + "key": "block.minecraft.banner.stripe_left.red", + "english_translation": "Red Pale Dexter" }, { - "key": "flat_world_preset.minecraft.bottomless_pit", - "english_translation": "Bottomless Pit" + "key": "commands.scoreboard.players.enable.failed", + "english_translation": "Nothing changed. That trigger is already enabled" }, { - "key": "flat_world_preset.minecraft.classic_flat", - "english_translation": "Classic Flat" + "key": "block.minecraft.banner.stripe_downright.lime", + "english_translation": "Lime Bend" }, { - "key": "flat_world_preset.minecraft.desert", - "english_translation": "Desert" + "key": "subtitles.block.frogspawn.hatch", + "english_translation": "Tadpole hatches" }, { - "key": "flat_world_preset.minecraft.overworld", - "english_translation": "Overworld" + "key": "connect.failed", + "english_translation": "Failed to connect to the server" }, { - "key": "flat_world_preset.minecraft.redstone_ready", - "english_translation": "Redstone Ready" + "key": "disconnect.disconnected", + "english_translation": "Disconnected by Server" }, { - "key": "flat_world_preset.minecraft.snowy_kingdom", - "english_translation": "Snowy Kingdom" + "key": "block.minecraft.warped_hyphae", + "english_translation": "Warped Hyphae" }, { - "key": "flat_world_preset.minecraft.the_void", - "english_translation": "The Void" + "key": "enchantment.minecraft.knockback", + "english_translation": "Knockback" }, { - "key": "flat_world_preset.minecraft.tunnelers_dream", - "english_translation": "Tunnelers' Dream" + "key": "subtitles.entity.elder_guardian.flop", + "english_translation": "Elder Guardian flops" }, { - "key": "flat_world_preset.minecraft.water_world", - "english_translation": "Water World" - }, - { - "key": "flat_world_preset.unknown", - "english_translation": "???" - }, - { - "key": "gameMode.adventure", - "english_translation": "Adventure Mode" - }, - { - "key": "gameMode.changed", - "english_translation": "Your game mode has been updated to %s" - }, - { - "key": "gameMode.creative", - "english_translation": "Creative Mode" - }, - { - "key": "gameMode.hardcore", - "english_translation": "Hardcore Mode!" - }, - { - "key": "gameMode.spectator", - "english_translation": "Spectator Mode" - }, - { - "key": "gameMode.survival", - "english_translation": "Survival Mode" - }, - { - "key": "gamerule.announceAdvancements", - "english_translation": "Announce advancements" - }, - { - "key": "gamerule.blockExplosionDropDecay", - "english_translation": "In block interaction explosions, some blocks won't drop their loot" - }, - { - "key": "gamerule.blockExplosionDropDecay.description", - "english_translation": "Some of the drops from blocks destroyed by explosions caused by block interactions are lost in the explosion." - }, - { - "key": "gamerule.category.chat", - "english_translation": "Chat" - }, - { - "key": "gamerule.category.drops", - "english_translation": "Drops" - }, - { - "key": "gamerule.category.misc", - "english_translation": "Miscellaneous" - }, - { - "key": "gamerule.category.mobs", - "english_translation": "Mobs" - }, - { - "key": "gamerule.category.player", - "english_translation": "Player" - }, - { - "key": "gamerule.category.spawning", - "english_translation": "Spawning" - }, - { - "key": "gamerule.category.updates", - "english_translation": "World Updates" - }, - { - "key": "gamerule.commandBlockOutput", - "english_translation": "Broadcast command block output" - }, - { - "key": "gamerule.commandModificationBlockLimit", - "english_translation": "Command Modification Block Limit" - }, - { - "key": "gamerule.commandModificationBlockLimit.description", - "english_translation": "Number of blocks that can be changed at once by one command, such as fill or clone." - }, - { - "key": "gamerule.disableElytraMovementCheck", - "english_translation": "Disable elytra movement check" - }, - { - "key": "gamerule.disableRaids", - "english_translation": "Disable raids" - }, - { - "key": "gamerule.doDaylightCycle", - "english_translation": "Advance time of day" - }, - { - "key": "gamerule.doEntityDrops", - "english_translation": "Drop entity equipment" - }, - { - "key": "gamerule.doEntityDrops.description", - "english_translation": "Controls drops from minecarts (including inventories), item frames, boats, etc." - }, - { - "key": "gamerule.doFireTick", - "english_translation": "Update fire" - }, - { - "key": "gamerule.doImmediateRespawn", - "english_translation": "Respawn immediately" - }, - { - "key": "gamerule.doInsomnia", - "english_translation": "Spawn phantoms" - }, - { - "key": "gamerule.doLimitedCrafting", - "english_translation": "Require recipe for crafting" - }, - { - "key": "gamerule.doLimitedCrafting.description", - "english_translation": "If enabled, players will be able to craft only unlocked recipes" - }, - { - "key": "gamerule.doMobLoot", - "english_translation": "Drop mob loot" - }, - { - "key": "gamerule.doMobLoot.description", - "english_translation": "Controls resource drops from mobs, including experience orbs" - }, - { - "key": "gamerule.doMobSpawning", - "english_translation": "Spawn mobs" - }, - { - "key": "gamerule.doMobSpawning.description", - "english_translation": "Some entities might have separate rules" - }, - { - "key": "gamerule.doPatrolSpawning", - "english_translation": "Spawn pillager patrols" - }, - { - "key": "gamerule.doTileDrops", - "english_translation": "Drop blocks" - }, - { - "key": "gamerule.doTileDrops.description", - "english_translation": "Controls resource drops from blocks, including experience orbs" - }, - { - "key": "gamerule.doTraderSpawning", - "english_translation": "Spawn Wandering Traders" - }, - { - "key": "gamerule.doVinesSpread", - "english_translation": "Vines spread" - }, - { - "key": "gamerule.doVinesSpread.description", - "english_translation": "Controls whether or not the Vines block spreads randomly to adjacent blocks. Does not affect other type of vine blocks such as Weeping Vines, Twisting Vines, etc." - }, - { - "key": "gamerule.doWardenSpawning", - "english_translation": "Spawn Wardens" - }, - { - "key": "gamerule.doWeatherCycle", - "english_translation": "Update weather" - }, - { - "key": "gamerule.drowningDamage", - "english_translation": "Deal drowning damage" - }, - { - "key": "gamerule.fallDamage", - "english_translation": "Deal fall damage" - }, - { - "key": "gamerule.fireDamage", - "english_translation": "Deal fire damage" - }, - { - "key": "gamerule.forgiveDeadPlayers", - "english_translation": "Forgive dead players" - }, - { - "key": "gamerule.forgiveDeadPlayers.description", - "english_translation": "Angered neutral mobs stop being angry when the targeted player dies nearby." - }, - { - "key": "gamerule.freezeDamage", - "english_translation": "Deal freeze damage" - }, - { - "key": "gamerule.globalSoundEvents", - "english_translation": "Global sound events" - }, - { - "key": "gamerule.globalSoundEvents.description", - "english_translation": "When certain game events happen, like a boss spawning, the sound is heard everywhere." - }, - { - "key": "gamerule.keepInventory", - "english_translation": "Keep inventory after death" - }, - { - "key": "gamerule.lavaSourceConversion", - "english_translation": "Lava converts to source" - }, - { - "key": "gamerule.lavaSourceConversion.description", - "english_translation": "When flowing lava is surrounded on two sides by lava sources it converts into a source." - }, - { - "key": "gamerule.logAdminCommands", - "english_translation": "Broadcast admin commands" - }, - { - "key": "gamerule.maxCommandChainLength", - "english_translation": "Command chain size limit" - }, - { - "key": "gamerule.maxCommandChainLength.description", - "english_translation": "Applies to command block chains and functions" - }, - { - "key": "gamerule.maxEntityCramming", - "english_translation": "Entity cramming threshold" - }, - { - "key": "gamerule.mobExplosionDropDecay", - "english_translation": "In mob explosions, some blocks won't drop their loot" - }, - { - "key": "gamerule.mobExplosionDropDecay.description", - "english_translation": "Some of the drops from blocks destroyed by explosions caused by mobs are lost in the explosion." - }, - { - "key": "gamerule.mobGriefing", - "english_translation": "Allow destructive mob actions" - }, - { - "key": "gamerule.naturalRegeneration", - "english_translation": "Regenerate health" - }, - { - "key": "gamerule.playersSleepingPercentage", - "english_translation": "Sleep percentage" - }, - { - "key": "gamerule.playersSleepingPercentage.description", - "english_translation": "The percentage of players who must be sleeping to skip the night." - }, - { - "key": "gamerule.randomTickSpeed", - "english_translation": "Random tick speed rate" - }, - { - "key": "gamerule.reducedDebugInfo", - "english_translation": "Reduce debug info" - }, - { - "key": "gamerule.reducedDebugInfo.description", - "english_translation": "Limits contents of debug screen" - }, - { - "key": "gamerule.sendCommandFeedback", - "english_translation": "Send command feedback" - }, - { - "key": "gamerule.showDeathMessages", - "english_translation": "Show death messages" - }, - { - "key": "gamerule.snowAccumulationHeight", - "english_translation": "Snow accumulation height" - }, - { - "key": "gamerule.snowAccumulationHeight.description", - "english_translation": "When it snows, layers of snow form on the ground up to at most this number of layers." - }, - { - "key": "gamerule.spawnRadius", - "english_translation": "Respawn location radius" - }, - { - "key": "gamerule.spectatorsGenerateChunks", - "english_translation": "Allow spectators to generate terrain" - }, - { - "key": "gamerule.tntExplosionDropDecay", - "english_translation": "In TNT explosions, some blocks won't drop their loot" - }, - { - "key": "gamerule.tntExplosionDropDecay.description", - "english_translation": "Some of the drops from blocks destroyed by explosions caused by TNT are lost in the explosion." - }, - { - "key": "gamerule.universalAnger", - "english_translation": "Universal anger" - }, - { - "key": "gamerule.universalAnger.description", - "english_translation": "Angered neutral mobs attack any nearby player, not just the player that angered them. Works best if forgiveDeadPlayers is disabled." - }, - { - "key": "gamerule.waterSourceConversion", - "english_translation": "Water converts to source" - }, - { - "key": "gamerule.waterSourceConversion.description", - "english_translation": "When flowing water is surrounded on two sides by water sources it converts into a source." - }, - { - "key": "generator.custom", - "english_translation": "Custom" - }, - { - "key": "generator.customized", - "english_translation": "Old Customized" - }, - { - "key": "generator.minecraft.amplified", - "english_translation": "AMPLIFIED" - }, - { - "key": "generator.minecraft.amplified.info", - "english_translation": "Notice: Just for fun! Requires a beefy computer." - }, - { - "key": "generator.minecraft.debug_all_block_states", - "english_translation": "Debug Mode" - }, - { - "key": "generator.minecraft.flat", - "english_translation": "Superflat" - }, - { - "key": "generator.minecraft.large_biomes", - "english_translation": "Large Biomes" - }, - { - "key": "generator.minecraft.normal", - "english_translation": "Default" - }, - { - "key": "generator.minecraft.single_biome_surface", - "english_translation": "Single Biome" - }, - { - "key": "generator.single_biome_caves", - "english_translation": "Caves" - }, - { - "key": "generator.single_biome_floating_islands", - "english_translation": "Floating Islands" - }, - { - "key": "gui.abuseReport.error.title", - "english_translation": "Problem sending your report" - }, - { - "key": "gui.abuseReport.reason.alcohol_tobacco_drugs", - "english_translation": "Drugs or alcohol" - }, - { - "key": "gui.abuseReport.reason.alcohol_tobacco_drugs.description", - "english_translation": "Someone is encouraging others to partake in illegal drug related activities or encouraging underage drinking." - }, - { - "key": "gui.abuseReport.reason.child_sexual_exploitation_or_abuse", - "english_translation": "Child sexual exploitation or abuse" - }, - { - "key": "gui.abuseReport.reason.child_sexual_exploitation_or_abuse.description", - "english_translation": "Someone is talking about or otherwise promoting indecent behavior involving children." - }, - { - "key": "gui.abuseReport.reason.defamation_impersonation_false_information", - "english_translation": "Defamation, impersonation, or false information" - }, - { - "key": "gui.abuseReport.reason.defamation_impersonation_false_information.description", - "english_translation": "Someone is damaging someone else's reputation, pretending to be someone they're not, or sharing false information with the aim to exploit or mislead others." - }, - { - "key": "gui.abuseReport.reason.description", - "english_translation": "Description:" - }, - { - "key": "gui.abuseReport.reason.false_reporting", - "english_translation": "False Reporting" - }, - { - "key": "gui.abuseReport.reason.harassment_or_bullying", - "english_translation": "Harassment or bullying" - }, - { - "key": "gui.abuseReport.reason.harassment_or_bullying.description", - "english_translation": "Someone is shaming, attacking, or bullying you or someone else. This includes when someone is repeatedly trying to contact you or someone else without consent or posting private personal information about you or someone else without consent (\"doxing\")." - }, - { - "key": "gui.abuseReport.reason.hate_speech", - "english_translation": "Hate speech" - }, - { - "key": "gui.abuseReport.reason.hate_speech.description", - "english_translation": "Someone is attacking you or another player based on characteristics of their identity, like religion, race, or sexuality." - }, - { - "key": "gui.abuseReport.reason.imminent_harm", - "english_translation": "Imminent harm - Threat to harm others" - }, - { - "key": "gui.abuseReport.reason.imminent_harm.description", - "english_translation": "Someone is threatening to harm you or someone else in real life." - }, - { - "key": "gui.abuseReport.reason.narration", - "english_translation": "%s: %s" - }, - { - "key": "gui.abuseReport.reason.non_consensual_intimate_imagery", - "english_translation": "Non-consensual intimate imagery" - }, - { - "key": "gui.abuseReport.reason.non_consensual_intimate_imagery.description", - "english_translation": "Someone is talking about, sharing, or otherwise promoting private and intimate images." - }, - { - "key": "gui.abuseReport.reason.self_harm_or_suicide", - "english_translation": "Imminent harm - Self-harm or suicide" - }, - { - "key": "gui.abuseReport.reason.self_harm_or_suicide.description", - "english_translation": "Someone is threatening to harm themselves in real life or talking about harming themselves in real life." - }, - { - "key": "gui.abuseReport.reason.terrorism_or_violent_extremism", - "english_translation": "Terrorism or violent extremism" - }, - { - "key": "gui.abuseReport.reason.terrorism_or_violent_extremism.description", - "english_translation": "Someone is talking about, promoting, or threatening to commit acts of terrorism or violent extremism for political, religious, ideological, or other reasons." - }, - { - "key": "gui.abuseReport.reason.title", - "english_translation": "Select Report Category" - }, - { - "key": "gui.abuseReport.send.error_message", - "english_translation": "An error was returned while sending your report:\n'%s'" - }, - { - "key": "gui.abuseReport.send.generic_error", - "english_translation": "Encountered an unexpected error while sending your report." - }, - { - "key": "gui.abuseReport.send.http_error", - "english_translation": "An unexpected HTTP error occurred while sending your report." - }, - { - "key": "gui.abuseReport.send.json_error", - "english_translation": "Encountered malformed payload while sending your report." - }, - { - "key": "gui.abuseReport.send.service_unavailable", - "english_translation": "Unable to reach the Abuse Reporting service. Please make sure you are connected to the internet and try again." - }, - { - "key": "gui.abuseReport.sending.title", - "english_translation": "Sending your report..." - }, - { - "key": "gui.abuseReport.sent.title", - "english_translation": "Report sent" - }, - { - "key": "gui.acknowledge", - "english_translation": "Acknowledge" - }, - { - "key": "gui.advancements", - "english_translation": "Advancements" - }, - { - "key": "gui.all", - "english_translation": "All" - }, - { - "key": "gui.back", - "english_translation": "Back" - }, - { - "key": "gui.banned.description", - "english_translation": "%s\n\n%s\n\nLearn more at the following link: %s" - }, - { - "key": "gui.banned.description.permanent", - "english_translation": "Your account is permanently banned, which means you can’t play online or join Realms." - }, - { - "key": "gui.banned.description.reason", - "english_translation": "We recently received a report for bad behavior by your account. Our moderators have now reviewed your case and identified it as %s, which goes against the Minecraft Community Standards." - }, - { - "key": "gui.banned.description.reason_id", - "english_translation": "Code: %s" - }, - { - "key": "gui.banned.description.reason_id_message", - "english_translation": "Code: %s - %s" - }, - { - "key": "gui.banned.description.temporary", - "english_translation": "%s Until then, you can’t play online or join Realms." - }, - { - "key": "gui.banned.description.temporary.duration", - "english_translation": "Your account is temporarily suspended and will be reactivated in %s." - }, - { - "key": "gui.banned.description.unknownreason", - "english_translation": "We recently received a report for bad behavior by your account. Our moderators have now reviewed your case and identified that it goes against the Minecraft Community Standards." - }, - { - "key": "gui.banned.reason.defamation_impersonation_false_information", - "english_translation": "Impersonation or sharing information to exploit or mislead others" - }, - { - "key": "gui.banned.reason.drugs", - "english_translation": "References to illegal drugs" - }, - { - "key": "gui.banned.reason.extreme_violence_or_gore", - "english_translation": "Depictions of real-life excessive violence or gore" - }, - { - "key": "gui.banned.reason.false_reporting", - "english_translation": "Excessive false or inaccurate reports" - }, - { - "key": "gui.banned.reason.fraud", - "english_translation": "Fraudulent acquisition or use of content" - }, - { - "key": "gui.banned.reason.generic_violation", - "english_translation": "Violating Community Standards" - }, - { - "key": "gui.banned.reason.harassment_or_bullying", - "english_translation": "Abusive language used in a directed, harmful manner" - }, - { - "key": "gui.banned.reason.hate_speech", - "english_translation": "Hate speech or discrimination" - }, - { - "key": "gui.banned.reason.hate_terrorism_notorious_figure", - "english_translation": "References to hate groups, terrorist organizations, or notorious figures" - }, - { - "key": "gui.banned.reason.imminent_harm_to_person_or_property", - "english_translation": "Intent to cause real-life harm to persons or property" - }, - { - "key": "gui.banned.reason.nudity_or_pornography", - "english_translation": "Displaying lewd or pornographic material" - }, - { - "key": "gui.banned.reason.sexually_inappropriate", - "english_translation": "Topics or content of a sexual nature" - }, - { - "key": "gui.banned.reason.spam_or_advertising", - "english_translation": "Spam or advertising" - }, - { - "key": "gui.banned.title.permanent", - "english_translation": "Account permanently banned" - }, - { - "key": "gui.banned.title.temporary", - "english_translation": "Account temporarily suspended" - }, - { - "key": "gui.cancel", - "english_translation": "Cancel" - }, - { - "key": "gui.chatReport.comments", - "english_translation": "Comments" - }, - { - "key": "gui.chatReport.describe", - "english_translation": "Sharing details will help us make a well-informed decision." - }, - { - "key": "gui.chatReport.discard.content", - "english_translation": "If you leave, you'll lose this report and your comments.\nAre you sure you want to leave?" - }, - { - "key": "gui.chatReport.discard.discard", - "english_translation": "Leave and Discard Report" - }, - { - "key": "gui.chatReport.discard.draft", - "english_translation": "Save as Draft" - }, - { - "key": "gui.chatReport.discard.return", - "english_translation": "Continue Editing" - }, - { - "key": "gui.chatReport.discard.title", - "english_translation": "Discard report and comments?" - }, - { - "key": "gui.chatReport.draft.content", - "english_translation": "Would you like to continue editing the existing report or discard it and create a new one?" - }, - { - "key": "gui.chatReport.draft.discard", - "english_translation": "Discard" - }, - { - "key": "gui.chatReport.draft.edit", - "english_translation": "Continue Editing" - }, - { - "key": "gui.chatReport.draft.quittotitle.content", - "english_translation": "Would you like to continue editing it or discard it?" - }, - { - "key": "gui.chatReport.draft.quittotitle.title", - "english_translation": "You have a draft chat report that will be lost if you quit" - }, - { - "key": "gui.chatReport.draft.title", - "english_translation": "Edit draft chat report?" - }, - { - "key": "gui.chatReport.more_comments", - "english_translation": "Please describe what happened:" - }, - { - "key": "gui.chatReport.observed_what", - "english_translation": "Why are you reporting this?" - }, - { - "key": "gui.chatReport.read_info", - "english_translation": "Learn About Reporting" - }, - { - "key": "gui.chatReport.report_sent_msg", - "english_translation": "We’ve successfully received your report. Thank you!\n\nOur team will review it as soon as possible." - }, - { - "key": "gui.chatReport.select_chat", - "english_translation": "Select Chat Messages to Report" - }, - { - "key": "gui.chatReport.select_reason", - "english_translation": "Select Report Category" - }, - { - "key": "gui.chatReport.selected_chat", - "english_translation": "%s Chat Message(s) Selected to Report" - }, - { - "key": "gui.chatReport.send", - "english_translation": "Send Report" - }, - { - "key": "gui.chatReport.send.comments_too_long", - "english_translation": "Please shorten the comment" - }, - { - "key": "gui.chatReport.send.no_reason", - "english_translation": "Please select a report category" - }, - { - "key": "gui.chatReport.send.no_reported_messages", - "english_translation": "Please select at least one chat message to report" - }, - { - "key": "gui.chatReport.send.too_many_messages", - "english_translation": "Trying to include too many messages in the report" - }, - { - "key": "gui.chatReport.title", - "english_translation": "Report Player" - }, - { - "key": "gui.chatSelection.context", - "english_translation": "Messages surrounding this selection will be included to provide additional context" - }, - { - "key": "gui.chatSelection.fold", - "english_translation": "%s message(s) hidden" - }, - { - "key": "gui.chatSelection.heading", - "english_translation": "%s %s" - }, - { - "key": "gui.chatSelection.join", - "english_translation": "%s joined the chat" - }, - { - "key": "gui.chatSelection.message.narrate", - "english_translation": "%s said: %s at %s" - }, - { - "key": "gui.chatSelection.selected", - "english_translation": "%s/%s message(s) selected" - }, - { - "key": "gui.chatSelection.title", - "english_translation": "Select Chat Messages to Report" - }, - { - "key": "gui.continue", - "english_translation": "Continue" - }, - { - "key": "gui.days", - "english_translation": "%s day(s)" - }, - { - "key": "gui.done", - "english_translation": "Done" - }, - { - "key": "gui.down", - "english_translation": "Down" - }, - { - "key": "gui.entity_tooltip.type", - "english_translation": "Type: %s" - }, - { - "key": "gui.hours", - "english_translation": "%s hour(s)" - }, - { - "key": "gui.minutes", - "english_translation": "%s minute(s)" - }, - { - "key": "gui.multiLineEditBox.character_limit", - "english_translation": "%s/%s" - }, - { - "key": "gui.narrate.button", - "english_translation": "%s button" - }, - { - "key": "gui.narrate.editBox", - "english_translation": "%s edit box: %s" - }, - { - "key": "gui.narrate.slider", - "english_translation": "%s slider" - }, - { - "key": "gui.narrate.tab", - "english_translation": "%s tab" - }, - { - "key": "gui.no", - "english_translation": "No" - }, - { - "key": "gui.none", - "english_translation": "None" - }, - { - "key": "gui.ok", - "english_translation": "Ok" - }, - { - "key": "gui.proceed", - "english_translation": "Proceed" - }, - { - "key": "gui.recipebook.moreRecipes", - "english_translation": "Right Click for More" - }, - { - "key": "gui.recipebook.search_hint", - "english_translation": "Search..." - }, - { - "key": "gui.recipebook.toggleRecipes.all", - "english_translation": "Showing All" - }, - { - "key": "gui.recipebook.toggleRecipes.blastable", - "english_translation": "Showing Blastable" - }, - { - "key": "gui.recipebook.toggleRecipes.craftable", - "english_translation": "Showing Craftable" - }, - { - "key": "gui.recipebook.toggleRecipes.smeltable", - "english_translation": "Showing Smeltable" - }, - { - "key": "gui.recipebook.toggleRecipes.smokable", - "english_translation": "Showing Smokable" - }, - { - "key": "gui.socialInteractions.blocking_hint", - "english_translation": "Manage with Microsoft account" - }, - { - "key": "gui.socialInteractions.empty_blocked", - "english_translation": "No blocked players in chat" - }, - { - "key": "gui.socialInteractions.empty_hidden", - "english_translation": "No players hidden in chat" - }, - { - "key": "gui.socialInteractions.hidden_in_chat", - "english_translation": "Chat messages from %s will be hidden" - }, - { - "key": "gui.socialInteractions.hide", - "english_translation": "Hide in Chat" - }, - { - "key": "gui.socialInteractions.narration.hide", - "english_translation": "Hide messages from %s" - }, - { - "key": "gui.socialInteractions.narration.report", - "english_translation": "Report player %s" - }, - { - "key": "gui.socialInteractions.narration.show", - "english_translation": "Show messages from %s" - }, - { - "key": "gui.socialInteractions.report", - "english_translation": "Report" - }, - { - "key": "gui.socialInteractions.search_empty", - "english_translation": "Couldn't find any players with that name" - }, - { - "key": "gui.socialInteractions.search_hint", - "english_translation": "Search..." - }, - { - "key": "gui.socialInteractions.server_label.multiple", - "english_translation": "%s - %s players" - }, - { - "key": "gui.socialInteractions.server_label.single", - "english_translation": "%s - %s player" - }, - { - "key": "gui.socialInteractions.show", - "english_translation": "Show in Chat" - }, - { - "key": "gui.socialInteractions.shown_in_chat", - "english_translation": "Chat messages from %s will be shown" - }, - { - "key": "gui.socialInteractions.status_blocked", - "english_translation": "Blocked" - }, - { - "key": "gui.socialInteractions.status_blocked_offline", - "english_translation": "Blocked - Offline" - }, - { - "key": "gui.socialInteractions.status_hidden", - "english_translation": "Hidden" - }, - { - "key": "gui.socialInteractions.status_hidden_offline", - "english_translation": "Hidden - Offline" - }, - { - "key": "gui.socialInteractions.status_offline", - "english_translation": "Offline" - }, - { - "key": "gui.socialInteractions.tab_all", - "english_translation": "All" - }, - { - "key": "gui.socialInteractions.tab_blocked", - "english_translation": "Blocked" - }, - { - "key": "gui.socialInteractions.tab_hidden", - "english_translation": "Hidden" - }, - { - "key": "gui.socialInteractions.title", - "english_translation": "Social Interactions" - }, - { - "key": "gui.socialInteractions.tooltip.hide", - "english_translation": "Hide messages" - }, - { - "key": "gui.socialInteractions.tooltip.report", - "english_translation": "Report player" - }, - { - "key": "gui.socialInteractions.tooltip.report.disabled", - "english_translation": "The reporting service is unavailable" - }, - { - "key": "gui.socialInteractions.tooltip.report.no_messages", - "english_translation": "No reportable messages from player %s" - }, - { - "key": "gui.socialInteractions.tooltip.report.not_reportable", - "english_translation": "This player can't be reported, because their chat messages can't be verified on this server" - }, - { - "key": "gui.socialInteractions.tooltip.show", - "english_translation": "Show messages" - }, - { - "key": "gui.stats", - "english_translation": "Statistics" - }, - { - "key": "gui.toMenu", - "english_translation": "Back to Server List" - }, - { - "key": "gui.toTitle", - "english_translation": "Back to Title Screen" - }, - { - "key": "gui.up", - "english_translation": "Up" - }, - { - "key": "gui.yes", - "english_translation": "Yes" - }, - { - "key": "hanging_sign.edit", - "english_translation": "Edit Hanging Sign Message" - }, - { - "key": "instrument.minecraft.admire_goat_horn", - "english_translation": "Admire" - }, - { - "key": "instrument.minecraft.call_goat_horn", - "english_translation": "Call" - }, - { - "key": "instrument.minecraft.dream_goat_horn", - "english_translation": "Dream" - }, - { - "key": "instrument.minecraft.feel_goat_horn", - "english_translation": "Feel" - }, - { - "key": "instrument.minecraft.ponder_goat_horn", - "english_translation": "Ponder" - }, - { - "key": "instrument.minecraft.seek_goat_horn", - "english_translation": "Seek" - }, - { - "key": "instrument.minecraft.sing_goat_horn", - "english_translation": "Sing" - }, - { - "key": "instrument.minecraft.yearn_goat_horn", - "english_translation": "Yearn" - }, - { - "key": "inventory.binSlot", - "english_translation": "Destroy Item" - }, - { - "key": "inventory.hotbarInfo", - "english_translation": "Save hotbar with %1$s+%2$s" - }, - { - "key": "inventory.hotbarSaved", - "english_translation": "Item hotbar saved (restore with %1$s+%2$s)" - }, - { - "key": "item_modifier.unknown", - "english_translation": "Unknown item modifier: %s" - }, - { - "key": "item.canBreak", - "english_translation": "Can break:" - }, - { - "key": "item.canPlace", - "english_translation": "Can be placed on:" - }, - { - "key": "item.color", - "english_translation": "Color: %s" - }, - { - "key": "item.disabled", - "english_translation": "Disabled item" - }, - { - "key": "item.durability", - "english_translation": "Durability: %s / %s" - }, - { - "key": "item.dyed", - "english_translation": "Dyed" - }, - { - "key": "item.minecraft.acacia_boat", - "english_translation": "Acacia Boat" - }, - { - "key": "item.minecraft.acacia_chest_boat", - "english_translation": "Acacia Boat with Chest" - }, - { - "key": "item.minecraft.allay_spawn_egg", - "english_translation": "Allay Spawn Egg" - }, - { - "key": "item.minecraft.amethyst_shard", - "english_translation": "Amethyst Shard" - }, - { - "key": "item.minecraft.apple", - "english_translation": "Apple" - }, - { - "key": "item.minecraft.armor_stand", - "english_translation": "Armor Stand" - }, - { - "key": "item.minecraft.arrow", - "english_translation": "Arrow" - }, - { - "key": "item.minecraft.axolotl_bucket", - "english_translation": "Bucket of Axolotl" - }, - { - "key": "item.minecraft.axolotl_spawn_egg", - "english_translation": "Axolotl Spawn Egg" - }, - { - "key": "item.minecraft.baked_potato", - "english_translation": "Baked Potato" - }, - { - "key": "item.minecraft.bamboo_chest_raft", - "english_translation": "Bamboo Raft with Chest" - }, - { - "key": "item.minecraft.bamboo_raft", - "english_translation": "Bamboo Raft" - }, - { - "key": "item.minecraft.bat_spawn_egg", - "english_translation": "Bat Spawn Egg" - }, - { - "key": "item.minecraft.bee_spawn_egg", - "english_translation": "Bee Spawn Egg" - }, - { - "key": "item.minecraft.beef", - "english_translation": "Raw Beef" - }, - { - "key": "item.minecraft.beetroot", - "english_translation": "Beetroot" - }, - { - "key": "item.minecraft.beetroot_seeds", - "english_translation": "Beetroot Seeds" - }, - { - "key": "item.minecraft.beetroot_soup", - "english_translation": "Beetroot Soup" - }, - { - "key": "item.minecraft.birch_boat", - "english_translation": "Birch Boat" - }, - { - "key": "item.minecraft.birch_chest_boat", - "english_translation": "Birch Boat with Chest" - }, - { - "key": "item.minecraft.black_dye", - "english_translation": "Black Dye" - }, - { - "key": "item.minecraft.blaze_powder", - "english_translation": "Blaze Powder" - }, - { - "key": "item.minecraft.blaze_rod", - "english_translation": "Blaze Rod" - }, - { - "key": "item.minecraft.blaze_spawn_egg", - "english_translation": "Blaze Spawn Egg" - }, - { - "key": "item.minecraft.blue_dye", - "english_translation": "Blue Dye" - }, - { - "key": "item.minecraft.bone", - "english_translation": "Bone" - }, - { - "key": "item.minecraft.bone_meal", - "english_translation": "Bone Meal" - }, - { - "key": "item.minecraft.book", - "english_translation": "Book" - }, - { - "key": "item.minecraft.bow", - "english_translation": "Bow" - }, - { - "key": "item.minecraft.bowl", - "english_translation": "Bowl" - }, - { - "key": "item.minecraft.bread", - "english_translation": "Bread" - }, - { - "key": "item.minecraft.brewing_stand", - "english_translation": "Brewing Stand" - }, - { - "key": "item.minecraft.brick", - "english_translation": "Brick" - }, - { - "key": "item.minecraft.brown_dye", - "english_translation": "Brown Dye" - }, - { - "key": "item.minecraft.brush", - "english_translation": "Brush" - }, - { - "key": "item.minecraft.bucket", - "english_translation": "Bucket" - }, - { - "key": "item.minecraft.bundle", - "english_translation": "Bundle" - }, - { - "key": "item.minecraft.bundle.fullness", - "english_translation": "%s/%s" - }, - { - "key": "item.minecraft.camel_spawn_egg", - "english_translation": "Camel Spawn Egg" - }, - { - "key": "item.minecraft.carrot", - "english_translation": "Carrot" - }, - { - "key": "item.minecraft.carrot_on_a_stick", - "english_translation": "Carrot on a Stick" - }, - { - "key": "item.minecraft.cat_spawn_egg", - "english_translation": "Cat Spawn Egg" - }, - { - "key": "item.minecraft.cauldron", - "english_translation": "Cauldron" - }, - { - "key": "item.minecraft.cave_spider_spawn_egg", - "english_translation": "Cave Spider Spawn Egg" - }, - { - "key": "item.minecraft.chainmail_boots", - "english_translation": "Chainmail Boots" - }, - { - "key": "item.minecraft.chainmail_chestplate", - "english_translation": "Chainmail Chestplate" - }, - { - "key": "item.minecraft.chainmail_helmet", - "english_translation": "Chainmail Helmet" - }, - { - "key": "item.minecraft.chainmail_leggings", - "english_translation": "Chainmail Leggings" - }, - { - "key": "item.minecraft.charcoal", - "english_translation": "Charcoal" - }, - { - "key": "item.minecraft.cherry_boat", - "english_translation": "Cherry Boat" - }, - { - "key": "item.minecraft.cherry_chest_boat", - "english_translation": "Cherry Boat with Chest" - }, - { - "key": "item.minecraft.chest_minecart", - "english_translation": "Minecart with Chest" - }, - { - "key": "item.minecraft.chicken", - "english_translation": "Raw Chicken" - }, - { - "key": "item.minecraft.chicken_spawn_egg", - "english_translation": "Chicken Spawn Egg" - }, - { - "key": "item.minecraft.chorus_fruit", - "english_translation": "Chorus Fruit" - }, - { - "key": "item.minecraft.clay_ball", - "english_translation": "Clay Ball" - }, - { - "key": "item.minecraft.clock", - "english_translation": "Clock" - }, - { - "key": "item.minecraft.coal", - "english_translation": "Coal" - }, - { - "key": "item.minecraft.cocoa_beans", - "english_translation": "Cocoa Beans" - }, - { - "key": "item.minecraft.cod", - "english_translation": "Raw Cod" - }, - { - "key": "item.minecraft.cod_bucket", - "english_translation": "Bucket of Cod" - }, - { - "key": "item.minecraft.cod_spawn_egg", - "english_translation": "Cod Spawn Egg" - }, - { - "key": "item.minecraft.command_block_minecart", - "english_translation": "Minecart with Command Block" - }, - { - "key": "item.minecraft.compass", - "english_translation": "Compass" - }, - { - "key": "item.minecraft.cooked_beef", - "english_translation": "Steak" - }, - { - "key": "item.minecraft.cooked_chicken", - "english_translation": "Cooked Chicken" - }, - { - "key": "item.minecraft.cooked_cod", - "english_translation": "Cooked Cod" - }, - { - "key": "item.minecraft.cooked_mutton", - "english_translation": "Cooked Mutton" - }, - { - "key": "item.minecraft.cooked_porkchop", - "english_translation": "Cooked Porkchop" - }, - { - "key": "item.minecraft.cooked_rabbit", - "english_translation": "Cooked Rabbit" - }, - { - "key": "item.minecraft.cooked_salmon", - "english_translation": "Cooked Salmon" - }, - { - "key": "item.minecraft.cookie", - "english_translation": "Cookie" - }, - { - "key": "item.minecraft.copper_ingot", - "english_translation": "Copper Ingot" - }, - { - "key": "item.minecraft.cow_spawn_egg", - "english_translation": "Cow Spawn Egg" - }, - { - "key": "item.minecraft.creeper_banner_pattern", - "english_translation": "Banner Pattern" - }, - { - "key": "item.minecraft.creeper_banner_pattern.desc", - "english_translation": "Creeper Charge" - }, - { - "key": "item.minecraft.creeper_spawn_egg", - "english_translation": "Creeper Spawn Egg" - }, - { - "key": "item.minecraft.crossbow", - "english_translation": "Crossbow" - }, - { - "key": "item.minecraft.crossbow.projectile", - "english_translation": "Projectile:" - }, - { - "key": "item.minecraft.cyan_dye", - "english_translation": "Cyan Dye" - }, - { - "key": "item.minecraft.dark_oak_boat", - "english_translation": "Dark Oak Boat" - }, - { - "key": "item.minecraft.dark_oak_chest_boat", - "english_translation": "Dark Oak Boat with Chest" - }, - { - "key": "item.minecraft.debug_stick", - "english_translation": "Debug Stick" - }, - { - "key": "item.minecraft.debug_stick.empty", - "english_translation": "%s has no properties" - }, - { - "key": "item.minecraft.debug_stick.select", - "english_translation": "selected \"%s\" (%s)" - }, - { - "key": "item.minecraft.debug_stick.update", - "english_translation": "\"%s\" to %s" - }, - { - "key": "item.minecraft.diamond", - "english_translation": "Diamond" - }, - { - "key": "item.minecraft.diamond_axe", - "english_translation": "Diamond Axe" - }, - { - "key": "item.minecraft.diamond_boots", - "english_translation": "Diamond Boots" - }, - { - "key": "item.minecraft.diamond_chestplate", - "english_translation": "Diamond Chestplate" - }, - { - "key": "item.minecraft.diamond_helmet", - "english_translation": "Diamond Helmet" - }, - { - "key": "item.minecraft.diamond_hoe", - "english_translation": "Diamond Hoe" - }, - { - "key": "item.minecraft.diamond_horse_armor", - "english_translation": "Diamond Horse Armor" - }, - { - "key": "item.minecraft.diamond_leggings", - "english_translation": "Diamond Leggings" - }, - { - "key": "item.minecraft.diamond_pickaxe", - "english_translation": "Diamond Pickaxe" - }, - { - "key": "item.minecraft.diamond_shovel", - "english_translation": "Diamond Shovel" - }, - { - "key": "item.minecraft.diamond_sword", - "english_translation": "Diamond Sword" - }, - { - "key": "item.minecraft.disc_fragment_5", - "english_translation": "Disc Fragment" - }, - { - "key": "item.minecraft.disc_fragment_5.desc", - "english_translation": "Music Disc - 5" - }, - { - "key": "item.minecraft.dolphin_spawn_egg", - "english_translation": "Dolphin Spawn Egg" - }, - { - "key": "item.minecraft.donkey_spawn_egg", - "english_translation": "Donkey Spawn Egg" - }, - { - "key": "item.minecraft.dragon_breath", - "english_translation": "Dragon's Breath" - }, - { - "key": "item.minecraft.dried_kelp", - "english_translation": "Dried Kelp" - }, - { - "key": "item.minecraft.drowned_spawn_egg", - "english_translation": "Drowned Spawn Egg" - }, - { - "key": "item.minecraft.echo_shard", - "english_translation": "Echo Shard" - }, - { - "key": "item.minecraft.egg", - "english_translation": "Egg" - }, - { - "key": "item.minecraft.elder_guardian_spawn_egg", - "english_translation": "Elder Guardian Spawn Egg" - }, - { - "key": "item.minecraft.elytra", - "english_translation": "Elytra" - }, - { - "key": "item.minecraft.emerald", - "english_translation": "Emerald" - }, - { - "key": "item.minecraft.enchanted_book", - "english_translation": "Enchanted Book" - }, - { - "key": "item.minecraft.enchanted_golden_apple", - "english_translation": "Enchanted Golden Apple" - }, - { - "key": "item.minecraft.end_crystal", - "english_translation": "End Crystal" - }, - { - "key": "item.minecraft.ender_dragon_spawn_egg", - "english_translation": "Ender Dragon Spawn Egg" - }, - { - "key": "item.minecraft.ender_eye", - "english_translation": "Eye of Ender" - }, - { - "key": "item.minecraft.ender_pearl", - "english_translation": "Ender Pearl" - }, - { - "key": "item.minecraft.enderman_spawn_egg", - "english_translation": "Enderman Spawn Egg" - }, - { - "key": "item.minecraft.endermite_spawn_egg", - "english_translation": "Endermite Spawn Egg" - }, - { - "key": "item.minecraft.evoker_spawn_egg", - "english_translation": "Evoker Spawn Egg" - }, - { - "key": "item.minecraft.experience_bottle", - "english_translation": "Bottle o' Enchanting" - }, - { - "key": "item.minecraft.feather", - "english_translation": "Feather" - }, - { - "key": "item.minecraft.fermented_spider_eye", - "english_translation": "Fermented Spider Eye" - }, - { - "key": "item.minecraft.filled_map", - "english_translation": "Map" - }, - { - "key": "item.minecraft.fire_charge", - "english_translation": "Fire Charge" - }, - { - "key": "item.minecraft.firework_rocket", - "english_translation": "Firework Rocket" - }, - { - "key": "item.minecraft.firework_rocket.flight", - "english_translation": "Flight Duration:" - }, - { - "key": "item.minecraft.firework_star", - "english_translation": "Firework Star" - }, - { - "key": "item.minecraft.firework_star.black", - "english_translation": "Black" - }, - { - "key": "item.minecraft.firework_star.blue", - "english_translation": "Blue" - }, - { - "key": "item.minecraft.firework_star.brown", - "english_translation": "Brown" - }, - { - "key": "item.minecraft.firework_star.custom_color", - "english_translation": "Custom" - }, - { - "key": "item.minecraft.firework_star.cyan", - "english_translation": "Cyan" - }, - { - "key": "item.minecraft.firework_star.fade_to", - "english_translation": "Fade to" - }, - { - "key": "item.minecraft.firework_star.flicker", - "english_translation": "Twinkle" - }, - { - "key": "item.minecraft.firework_star.gray", - "english_translation": "Gray" - }, - { - "key": "item.minecraft.firework_star.green", - "english_translation": "Green" - }, - { - "key": "item.minecraft.firework_star.light_blue", - "english_translation": "Light Blue" - }, - { - "key": "item.minecraft.firework_star.light_gray", - "english_translation": "Light Gray" - }, - { - "key": "item.minecraft.firework_star.lime", - "english_translation": "Lime" - }, - { - "key": "item.minecraft.firework_star.magenta", - "english_translation": "Magenta" - }, - { - "key": "item.minecraft.firework_star.orange", - "english_translation": "Orange" - }, - { - "key": "item.minecraft.firework_star.pink", - "english_translation": "Pink" - }, - { - "key": "item.minecraft.firework_star.purple", - "english_translation": "Purple" - }, - { - "key": "item.minecraft.firework_star.red", - "english_translation": "Red" - }, - { - "key": "item.minecraft.firework_star.shape", - "english_translation": "Unknown Shape" - }, - { - "key": "item.minecraft.firework_star.shape.burst", - "english_translation": "Burst" - }, - { - "key": "item.minecraft.firework_star.shape.creeper", - "english_translation": "Creeper-shaped" - }, - { - "key": "item.minecraft.firework_star.shape.large_ball", - "english_translation": "Large Ball" - }, - { - "key": "item.minecraft.firework_star.shape.small_ball", - "english_translation": "Small Ball" - }, - { - "key": "item.minecraft.firework_star.shape.star", - "english_translation": "Star-shaped" - }, - { - "key": "item.minecraft.firework_star.trail", - "english_translation": "Trail" - }, - { - "key": "item.minecraft.firework_star.white", - "english_translation": "White" - }, - { - "key": "item.minecraft.firework_star.yellow", - "english_translation": "Yellow" - }, - { - "key": "item.minecraft.fishing_rod", - "english_translation": "Fishing Rod" - }, - { - "key": "item.minecraft.flint", - "english_translation": "Flint" - }, - { - "key": "item.minecraft.flint_and_steel", - "english_translation": "Flint and Steel" - }, - { - "key": "item.minecraft.flower_banner_pattern", - "english_translation": "Banner Pattern" - }, - { - "key": "item.minecraft.flower_banner_pattern.desc", - "english_translation": "Flower Charge" - }, - { - "key": "item.minecraft.flower_pot", - "english_translation": "Flower Pot" - }, - { - "key": "item.minecraft.fox_spawn_egg", - "english_translation": "Fox Spawn Egg" - }, - { - "key": "item.minecraft.frog_spawn_egg", - "english_translation": "Frog Spawn Egg" - }, - { - "key": "item.minecraft.furnace_minecart", - "english_translation": "Minecart with Furnace" - }, - { - "key": "item.minecraft.ghast_spawn_egg", - "english_translation": "Ghast Spawn Egg" - }, - { - "key": "item.minecraft.ghast_tear", - "english_translation": "Ghast Tear" - }, - { - "key": "item.minecraft.glass_bottle", - "english_translation": "Glass Bottle" - }, - { - "key": "item.minecraft.glistering_melon_slice", - "english_translation": "Glistering Melon Slice" - }, - { - "key": "item.minecraft.globe_banner_pattern", - "english_translation": "Banner Pattern" - }, - { - "key": "item.minecraft.globe_banner_pattern.desc", - "english_translation": "Globe" - }, - { - "key": "item.minecraft.glow_berries", - "english_translation": "Glow Berries" - }, - { - "key": "item.minecraft.glow_ink_sac", - "english_translation": "Glow Ink Sac" - }, - { - "key": "item.minecraft.glow_item_frame", - "english_translation": "Glow Item Frame" - }, - { - "key": "item.minecraft.glow_squid_spawn_egg", - "english_translation": "Glow Squid Spawn Egg" - }, - { - "key": "item.minecraft.glowstone_dust", - "english_translation": "Glowstone Dust" - }, - { - "key": "item.minecraft.goat_horn", - "english_translation": "Goat Horn" - }, - { - "key": "item.minecraft.goat_spawn_egg", - "english_translation": "Goat Spawn Egg" - }, - { - "key": "item.minecraft.gold_ingot", - "english_translation": "Gold Ingot" - }, - { - "key": "item.minecraft.gold_nugget", - "english_translation": "Gold Nugget" - }, - { - "key": "item.minecraft.golden_apple", - "english_translation": "Golden Apple" - }, - { - "key": "item.minecraft.golden_axe", - "english_translation": "Golden Axe" - }, - { - "key": "item.minecraft.golden_boots", - "english_translation": "Golden Boots" - }, - { - "key": "item.minecraft.golden_carrot", - "english_translation": "Golden Carrot" - }, - { - "key": "item.minecraft.golden_chestplate", - "english_translation": "Golden Chestplate" - }, - { - "key": "item.minecraft.golden_helmet", - "english_translation": "Golden Helmet" - }, - { - "key": "item.minecraft.golden_hoe", - "english_translation": "Golden Hoe" - }, - { - "key": "item.minecraft.golden_horse_armor", - "english_translation": "Golden Horse Armor" - }, - { - "key": "item.minecraft.golden_leggings", - "english_translation": "Golden Leggings" - }, - { - "key": "item.minecraft.golden_pickaxe", - "english_translation": "Golden Pickaxe" - }, - { - "key": "item.minecraft.golden_shovel", - "english_translation": "Golden Shovel" - }, - { - "key": "item.minecraft.golden_sword", - "english_translation": "Golden Sword" - }, - { - "key": "item.minecraft.gray_dye", - "english_translation": "Gray Dye" - }, - { - "key": "item.minecraft.green_dye", - "english_translation": "Green Dye" - }, - { - "key": "item.minecraft.guardian_spawn_egg", - "english_translation": "Guardian Spawn Egg" - }, - { - "key": "item.minecraft.gunpowder", - "english_translation": "Gunpowder" - }, - { - "key": "item.minecraft.heart_of_the_sea", - "english_translation": "Heart of the Sea" - }, - { - "key": "item.minecraft.hoglin_spawn_egg", - "english_translation": "Hoglin Spawn Egg" - }, - { - "key": "item.minecraft.honey_bottle", - "english_translation": "Honey Bottle" - }, - { - "key": "item.minecraft.honeycomb", - "english_translation": "Honeycomb" - }, - { - "key": "item.minecraft.hopper_minecart", - "english_translation": "Minecart with Hopper" - }, - { - "key": "item.minecraft.horse_spawn_egg", - "english_translation": "Horse Spawn Egg" - }, - { - "key": "item.minecraft.husk_spawn_egg", - "english_translation": "Husk Spawn Egg" - }, - { - "key": "item.minecraft.ink_sac", - "english_translation": "Ink Sac" - }, - { - "key": "item.minecraft.iron_axe", - "english_translation": "Iron Axe" - }, - { - "key": "item.minecraft.iron_boots", - "english_translation": "Iron Boots" - }, - { - "key": "item.minecraft.iron_chestplate", - "english_translation": "Iron Chestplate" - }, - { - "key": "item.minecraft.iron_golem_spawn_egg", - "english_translation": "Iron Golem Spawn Egg" - }, - { - "key": "item.minecraft.iron_helmet", - "english_translation": "Iron Helmet" - }, - { - "key": "item.minecraft.iron_hoe", - "english_translation": "Iron Hoe" - }, - { - "key": "item.minecraft.iron_horse_armor", - "english_translation": "Iron Horse Armor" - }, - { - "key": "item.minecraft.iron_ingot", - "english_translation": "Iron Ingot" - }, - { - "key": "item.minecraft.iron_leggings", - "english_translation": "Iron Leggings" - }, - { - "key": "item.minecraft.iron_nugget", - "english_translation": "Iron Nugget" - }, - { - "key": "item.minecraft.iron_pickaxe", - "english_translation": "Iron Pickaxe" - }, - { - "key": "item.minecraft.iron_shovel", - "english_translation": "Iron Shovel" - }, - { - "key": "item.minecraft.iron_sword", - "english_translation": "Iron Sword" - }, - { - "key": "item.minecraft.item_frame", - "english_translation": "Item Frame" - }, - { - "key": "item.minecraft.jungle_boat", - "english_translation": "Jungle Boat" - }, - { - "key": "item.minecraft.jungle_chest_boat", - "english_translation": "Jungle Boat with Chest" - }, - { - "key": "item.minecraft.knowledge_book", - "english_translation": "Knowledge Book" - }, - { - "key": "item.minecraft.lapis_lazuli", - "english_translation": "Lapis Lazuli" - }, - { - "key": "item.minecraft.lava_bucket", - "english_translation": "Lava Bucket" - }, - { - "key": "item.minecraft.lead", - "english_translation": "Lead" - }, - { - "key": "item.minecraft.leather", - "english_translation": "Leather" - }, - { - "key": "item.minecraft.leather_boots", - "english_translation": "Leather Boots" - }, - { - "key": "item.minecraft.leather_chestplate", - "english_translation": "Leather Tunic" - }, - { - "key": "item.minecraft.leather_helmet", - "english_translation": "Leather Cap" - }, - { - "key": "item.minecraft.leather_horse_armor", - "english_translation": "Leather Horse Armor" - }, - { - "key": "item.minecraft.leather_leggings", - "english_translation": "Leather Pants" - }, - { - "key": "item.minecraft.light_blue_dye", - "english_translation": "Light Blue Dye" - }, - { - "key": "item.minecraft.light_gray_dye", - "english_translation": "Light Gray Dye" - }, - { - "key": "item.minecraft.lime_dye", - "english_translation": "Lime Dye" - }, - { - "key": "item.minecraft.lingering_potion", - "english_translation": "Lingering Potion" - }, - { - "key": "item.minecraft.lingering_potion.effect.awkward", - "english_translation": "Awkward Lingering Potion" - }, - { - "key": "item.minecraft.lingering_potion.effect.empty", - "english_translation": "Lingering Uncraftable Potion" - }, - { - "key": "item.minecraft.lingering_potion.effect.fire_resistance", - "english_translation": "Lingering Potion of Fire Resistance" - }, - { - "key": "item.minecraft.lingering_potion.effect.harming", - "english_translation": "Lingering Potion of Harming" - }, - { - "key": "item.minecraft.lingering_potion.effect.healing", - "english_translation": "Lingering Potion of Healing" - }, - { - "key": "item.minecraft.lingering_potion.effect.invisibility", - "english_translation": "Lingering Potion of Invisibility" - }, - { - "key": "item.minecraft.lingering_potion.effect.leaping", - "english_translation": "Lingering Potion of Leaping" - }, - { - "key": "item.minecraft.lingering_potion.effect.levitation", - "english_translation": "Lingering Potion of Levitation" - }, - { - "key": "item.minecraft.lingering_potion.effect.luck", - "english_translation": "Lingering Potion of Luck" - }, - { - "key": "item.minecraft.lingering_potion.effect.mundane", - "english_translation": "Mundane Lingering Potion" - }, - { - "key": "item.minecraft.lingering_potion.effect.night_vision", - "english_translation": "Lingering Potion of Night Vision" - }, - { - "key": "item.minecraft.lingering_potion.effect.poison", - "english_translation": "Lingering Potion of Poison" - }, - { - "key": "item.minecraft.lingering_potion.effect.regeneration", - "english_translation": "Lingering Potion of Regeneration" - }, - { - "key": "item.minecraft.lingering_potion.effect.slow_falling", - "english_translation": "Lingering Potion of Slow Falling" - }, - { - "key": "item.minecraft.lingering_potion.effect.slowness", - "english_translation": "Lingering Potion of Slowness" - }, - { - "key": "item.minecraft.lingering_potion.effect.strength", - "english_translation": "Lingering Potion of Strength" - }, - { - "key": "item.minecraft.lingering_potion.effect.swiftness", - "english_translation": "Lingering Potion of Swiftness" - }, - { - "key": "item.minecraft.lingering_potion.effect.thick", - "english_translation": "Thick Lingering Potion" - }, - { - "key": "item.minecraft.lingering_potion.effect.turtle_master", - "english_translation": "Lingering Potion of the Turtle Master" - }, - { - "key": "item.minecraft.lingering_potion.effect.water", - "english_translation": "Lingering Water Bottle" - }, - { - "key": "item.minecraft.lingering_potion.effect.water_breathing", - "english_translation": "Lingering Potion of Water Breathing" - }, - { - "key": "item.minecraft.lingering_potion.effect.weakness", - "english_translation": "Lingering Potion of Weakness" - }, - { - "key": "item.minecraft.llama_spawn_egg", - "english_translation": "Llama Spawn Egg" - }, - { - "key": "item.minecraft.lodestone_compass", - "english_translation": "Lodestone Compass" - }, - { - "key": "item.minecraft.magenta_dye", - "english_translation": "Magenta Dye" - }, - { - "key": "item.minecraft.magma_cream", - "english_translation": "Magma Cream" - }, - { - "key": "item.minecraft.magma_cube_spawn_egg", - "english_translation": "Magma Cube Spawn Egg" - }, - { - "key": "item.minecraft.mangrove_boat", - "english_translation": "Mangrove Boat" - }, - { - "key": "item.minecraft.mangrove_chest_boat", - "english_translation": "Mangrove Boat with Chest" - }, - { - "key": "item.minecraft.map", - "english_translation": "Empty Map" - }, - { - "key": "item.minecraft.melon_seeds", - "english_translation": "Melon Seeds" - }, - { - "key": "item.minecraft.melon_slice", - "english_translation": "Melon Slice" - }, - { - "key": "item.minecraft.milk_bucket", - "english_translation": "Milk Bucket" - }, - { - "key": "item.minecraft.minecart", - "english_translation": "Minecart" - }, - { - "key": "item.minecraft.mojang_banner_pattern", - "english_translation": "Banner Pattern" - }, - { - "key": "item.minecraft.mojang_banner_pattern.desc", - "english_translation": "Thing" - }, - { - "key": "item.minecraft.mooshroom_spawn_egg", - "english_translation": "Mooshroom Spawn Egg" - }, - { - "key": "item.minecraft.mule_spawn_egg", - "english_translation": "Mule Spawn Egg" - }, - { - "key": "item.minecraft.mushroom_stew", - "english_translation": "Mushroom Stew" - }, - { - "key": "item.minecraft.music_disc_5", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_5.desc", - "english_translation": "Samuel Åberg - 5" - }, - { - "key": "item.minecraft.music_disc_11", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_11.desc", - "english_translation": "C418 - 11" - }, - { - "key": "item.minecraft.music_disc_13", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_13.desc", - "english_translation": "C418 - 13" - }, - { - "key": "item.minecraft.music_disc_blocks", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_blocks.desc", - "english_translation": "C418 - blocks" - }, - { - "key": "item.minecraft.music_disc_cat", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_cat.desc", - "english_translation": "C418 - cat" - }, - { - "key": "item.minecraft.music_disc_chirp", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_chirp.desc", - "english_translation": "C418 - chirp" - }, - { - "key": "item.minecraft.music_disc_far", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_far.desc", - "english_translation": "C418 - far" - }, - { - "key": "item.minecraft.music_disc_mall", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_mall.desc", - "english_translation": "C418 - mall" - }, - { - "key": "item.minecraft.music_disc_mellohi", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_mellohi.desc", - "english_translation": "C418 - mellohi" - }, - { - "key": "item.minecraft.music_disc_otherside", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_otherside.desc", - "english_translation": "Lena Raine - otherside" - }, - { - "key": "item.minecraft.music_disc_pigstep", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_pigstep.desc", - "english_translation": "Lena Raine - Pigstep" - }, - { - "key": "item.minecraft.music_disc_stal", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_stal.desc", - "english_translation": "C418 - stal" - }, - { - "key": "item.minecraft.music_disc_strad", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_strad.desc", - "english_translation": "C418 - strad" - }, - { - "key": "item.minecraft.music_disc_wait", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_wait.desc", - "english_translation": "C418 - wait" - }, - { - "key": "item.minecraft.music_disc_ward", - "english_translation": "Music Disc" - }, - { - "key": "item.minecraft.music_disc_ward.desc", - "english_translation": "C418 - ward" - }, - { - "key": "item.minecraft.mutton", - "english_translation": "Raw Mutton" - }, - { - "key": "item.minecraft.name_tag", - "english_translation": "Name Tag" - }, - { - "key": "item.minecraft.nautilus_shell", - "english_translation": "Nautilus Shell" - }, - { - "key": "item.minecraft.nether_brick", - "english_translation": "Nether Brick" - }, - { - "key": "item.minecraft.nether_star", - "english_translation": "Nether Star" - }, - { - "key": "item.minecraft.nether_wart", - "english_translation": "Nether Wart" - }, - { - "key": "item.minecraft.netherite_axe", - "english_translation": "Netherite Axe" - }, - { - "key": "item.minecraft.netherite_boots", - "english_translation": "Netherite Boots" - }, - { - "key": "item.minecraft.netherite_chestplate", - "english_translation": "Netherite Chestplate" - }, - { - "key": "item.minecraft.netherite_helmet", - "english_translation": "Netherite Helmet" - }, - { - "key": "item.minecraft.netherite_hoe", - "english_translation": "Netherite Hoe" - }, - { - "key": "item.minecraft.netherite_ingot", - "english_translation": "Netherite Ingot" - }, - { - "key": "item.minecraft.netherite_leggings", - "english_translation": "Netherite Leggings" - }, - { - "key": "item.minecraft.netherite_pickaxe", - "english_translation": "Netherite Pickaxe" - }, - { - "key": "item.minecraft.netherite_scrap", - "english_translation": "Netherite Scrap" - }, - { - "key": "item.minecraft.netherite_shovel", - "english_translation": "Netherite Shovel" - }, - { - "key": "item.minecraft.netherite_sword", - "english_translation": "Netherite Sword" - }, - { - "key": "item.minecraft.oak_boat", - "english_translation": "Oak Boat" - }, - { - "key": "item.minecraft.oak_chest_boat", - "english_translation": "Oak Boat with Chest" - }, - { - "key": "item.minecraft.ocelot_spawn_egg", - "english_translation": "Ocelot Spawn Egg" - }, - { - "key": "item.minecraft.orange_dye", - "english_translation": "Orange Dye" - }, - { - "key": "item.minecraft.painting", - "english_translation": "Painting" - }, - { - "key": "item.minecraft.panda_spawn_egg", - "english_translation": "Panda Spawn Egg" - }, - { - "key": "item.minecraft.paper", - "english_translation": "Paper" - }, - { - "key": "item.minecraft.parrot_spawn_egg", - "english_translation": "Parrot Spawn Egg" - }, - { - "key": "item.minecraft.phantom_membrane", - "english_translation": "Phantom Membrane" - }, - { - "key": "item.minecraft.phantom_spawn_egg", - "english_translation": "Phantom Spawn Egg" - }, - { - "key": "item.minecraft.pig_spawn_egg", - "english_translation": "Pig Spawn Egg" - }, - { - "key": "item.minecraft.piglin_banner_pattern", - "english_translation": "Banner Pattern" - }, - { - "key": "item.minecraft.piglin_banner_pattern.desc", - "english_translation": "Snout" - }, - { - "key": "item.minecraft.piglin_brute_spawn_egg", - "english_translation": "Piglin Brute Spawn Egg" - }, - { - "key": "item.minecraft.piglin_spawn_egg", - "english_translation": "Piglin Spawn Egg" - }, - { - "key": "item.minecraft.pillager_spawn_egg", - "english_translation": "Pillager Spawn Egg" - }, - { - "key": "item.minecraft.pink_dye", - "english_translation": "Pink Dye" - }, - { - "key": "item.minecraft.poisonous_potato", - "english_translation": "Poisonous Potato" - }, - { - "key": "item.minecraft.polar_bear_spawn_egg", - "english_translation": "Polar Bear Spawn Egg" - }, - { - "key": "item.minecraft.popped_chorus_fruit", - "english_translation": "Popped Chorus Fruit" - }, - { - "key": "item.minecraft.porkchop", - "english_translation": "Raw Porkchop" - }, - { - "key": "item.minecraft.potato", - "english_translation": "Potato" - }, - { - "key": "item.minecraft.potion", - "english_translation": "Potion" - }, - { - "key": "item.minecraft.potion.effect.awkward", - "english_translation": "Awkward Potion" - }, - { - "key": "item.minecraft.potion.effect.empty", - "english_translation": "Uncraftable Potion" - }, - { - "key": "item.minecraft.potion.effect.fire_resistance", - "english_translation": "Potion of Fire Resistance" - }, - { - "key": "item.minecraft.potion.effect.harming", - "english_translation": "Potion of Harming" - }, - { - "key": "item.minecraft.potion.effect.healing", - "english_translation": "Potion of Healing" - }, - { - "key": "item.minecraft.potion.effect.invisibility", - "english_translation": "Potion of Invisibility" - }, - { - "key": "item.minecraft.potion.effect.leaping", - "english_translation": "Potion of Leaping" - }, - { - "key": "item.minecraft.potion.effect.levitation", - "english_translation": "Potion of Levitation" - }, - { - "key": "item.minecraft.potion.effect.luck", - "english_translation": "Potion of Luck" - }, - { - "key": "item.minecraft.potion.effect.mundane", - "english_translation": "Mundane Potion" - }, - { - "key": "item.minecraft.potion.effect.night_vision", - "english_translation": "Potion of Night Vision" - }, - { - "key": "item.minecraft.potion.effect.poison", - "english_translation": "Potion of Poison" - }, - { - "key": "item.minecraft.potion.effect.regeneration", - "english_translation": "Potion of Regeneration" - }, - { - "key": "item.minecraft.potion.effect.slow_falling", - "english_translation": "Potion of Slow Falling" - }, - { - "key": "item.minecraft.potion.effect.slowness", - "english_translation": "Potion of Slowness" - }, - { - "key": "item.minecraft.potion.effect.strength", - "english_translation": "Potion of Strength" - }, - { - "key": "item.minecraft.potion.effect.swiftness", - "english_translation": "Potion of Swiftness" - }, - { - "key": "item.minecraft.potion.effect.thick", - "english_translation": "Thick Potion" - }, - { - "key": "item.minecraft.potion.effect.turtle_master", - "english_translation": "Potion of the Turtle Master" - }, - { - "key": "item.minecraft.potion.effect.water", - "english_translation": "Water Bottle" - }, - { - "key": "item.minecraft.potion.effect.water_breathing", - "english_translation": "Potion of Water Breathing" - }, - { - "key": "item.minecraft.potion.effect.weakness", - "english_translation": "Potion of Weakness" - }, - { - "key": "item.minecraft.pottery_shard_archer", - "english_translation": "Archer Pottery Shard" - }, - { - "key": "item.minecraft.pottery_shard_arms_up", - "english_translation": "Arms Up Pottery Shard" - }, - { - "key": "item.minecraft.pottery_shard_prize", - "english_translation": "Prize Pottery Shard" - }, - { - "key": "item.minecraft.pottery_shard_skull", - "english_translation": "Skull Pottery Shard" - }, - { - "key": "item.minecraft.powder_snow_bucket", - "english_translation": "Powder Snow Bucket" - }, - { - "key": "item.minecraft.prismarine_crystals", - "english_translation": "Prismarine Crystals" - }, - { - "key": "item.minecraft.prismarine_shard", - "english_translation": "Prismarine Shard" - }, - { - "key": "item.minecraft.pufferfish", - "english_translation": "Pufferfish" - }, - { - "key": "item.minecraft.pufferfish_bucket", - "english_translation": "Bucket of Pufferfish" - }, - { - "key": "item.minecraft.pufferfish_spawn_egg", - "english_translation": "Pufferfish Spawn Egg" - }, - { - "key": "item.minecraft.pumpkin_pie", - "english_translation": "Pumpkin Pie" - }, - { - "key": "item.minecraft.pumpkin_seeds", - "english_translation": "Pumpkin Seeds" - }, - { - "key": "item.minecraft.purple_dye", - "english_translation": "Purple Dye" - }, - { - "key": "item.minecraft.quartz", - "english_translation": "Nether Quartz" - }, - { - "key": "item.minecraft.rabbit", - "english_translation": "Raw Rabbit" - }, - { - "key": "item.minecraft.rabbit_foot", - "english_translation": "Rabbit's Foot" - }, - { - "key": "item.minecraft.rabbit_hide", - "english_translation": "Rabbit Hide" - }, - { - "key": "item.minecraft.rabbit_spawn_egg", - "english_translation": "Rabbit Spawn Egg" - }, - { - "key": "item.minecraft.rabbit_stew", - "english_translation": "Rabbit Stew" - }, - { - "key": "item.minecraft.ravager_spawn_egg", - "english_translation": "Ravager Spawn Egg" - }, - { - "key": "item.minecraft.raw_copper", - "english_translation": "Raw Copper" - }, - { - "key": "item.minecraft.raw_gold", - "english_translation": "Raw Gold" - }, - { - "key": "item.minecraft.raw_iron", - "english_translation": "Raw Iron" - }, - { - "key": "item.minecraft.recovery_compass", - "english_translation": "Recovery Compass" - }, - { - "key": "item.minecraft.red_dye", - "english_translation": "Red Dye" - }, - { - "key": "item.minecraft.redstone", - "english_translation": "Redstone Dust" - }, - { - "key": "item.minecraft.rotten_flesh", - "english_translation": "Rotten Flesh" - }, - { - "key": "item.minecraft.saddle", - "english_translation": "Saddle" - }, - { - "key": "item.minecraft.salmon", - "english_translation": "Raw Salmon" - }, - { - "key": "item.minecraft.salmon_bucket", - "english_translation": "Bucket of Salmon" - }, - { - "key": "item.minecraft.salmon_spawn_egg", - "english_translation": "Salmon Spawn Egg" - }, - { - "key": "item.minecraft.scute", - "english_translation": "Scute" - }, - { - "key": "item.minecraft.shears", - "english_translation": "Shears" - }, - { - "key": "item.minecraft.sheep_spawn_egg", - "english_translation": "Sheep Spawn Egg" - }, - { - "key": "item.minecraft.shield", - "english_translation": "Shield" - }, - { - "key": "item.minecraft.shield.black", - "english_translation": "Black Shield" - }, - { - "key": "item.minecraft.shield.blue", - "english_translation": "Blue Shield" - }, - { - "key": "item.minecraft.shield.brown", - "english_translation": "Brown Shield" - }, - { - "key": "item.minecraft.shield.cyan", - "english_translation": "Cyan Shield" - }, - { - "key": "item.minecraft.shield.gray", - "english_translation": "Gray Shield" - }, - { - "key": "item.minecraft.shield.green", - "english_translation": "Green Shield" - }, - { - "key": "item.minecraft.shield.light_blue", - "english_translation": "Light Blue Shield" - }, - { - "key": "item.minecraft.shield.light_gray", - "english_translation": "Light Gray Shield" - }, - { - "key": "item.minecraft.shield.lime", - "english_translation": "Lime Shield" - }, - { - "key": "item.minecraft.shield.magenta", - "english_translation": "Magenta Shield" - }, - { - "key": "item.minecraft.shield.orange", - "english_translation": "Orange Shield" - }, - { - "key": "item.minecraft.shield.pink", - "english_translation": "Pink Shield" - }, - { - "key": "item.minecraft.shield.purple", - "english_translation": "Purple Shield" - }, - { - "key": "item.minecraft.shield.red", - "english_translation": "Red Shield" - }, - { - "key": "item.minecraft.shield.white", - "english_translation": "White Shield" - }, - { - "key": "item.minecraft.shield.yellow", - "english_translation": "Yellow Shield" - }, - { - "key": "item.minecraft.shulker_shell", - "english_translation": "Shulker Shell" - }, - { - "key": "item.minecraft.shulker_spawn_egg", - "english_translation": "Shulker Spawn Egg" - }, - { - "key": "item.minecraft.sign", - "english_translation": "Sign" - }, - { - "key": "item.minecraft.silverfish_spawn_egg", - "english_translation": "Silverfish Spawn Egg" - }, - { - "key": "item.minecraft.skeleton_horse_spawn_egg", - "english_translation": "Skeleton Horse Spawn Egg" - }, - { - "key": "item.minecraft.skeleton_spawn_egg", - "english_translation": "Skeleton Spawn Egg" - }, - { - "key": "item.minecraft.skull_banner_pattern", - "english_translation": "Banner Pattern" - }, - { - "key": "item.minecraft.skull_banner_pattern.desc", - "english_translation": "Skull Charge" - }, - { - "key": "item.minecraft.slime_ball", - "english_translation": "Slimeball" - }, - { - "key": "item.minecraft.slime_spawn_egg", - "english_translation": "Slime Spawn Egg" - }, - { - "key": "item.minecraft.smithing_template", - "english_translation": "Smithing Template" - }, - { - "key": "item.minecraft.smithing_template.applies_to", - "english_translation": "Applies to:" - }, - { - "key": "item.minecraft.smithing_template.armor_trim.additions_slot_description", - "english_translation": "Put an ingot or crystal here" - }, - { - "key": "item.minecraft.smithing_template.armor_trim.applies_to", - "english_translation": "Armor" - }, - { - "key": "item.minecraft.smithing_template.armor_trim.base_slot_description", - "english_translation": "Put a piece of armor here" - }, - { - "key": "item.minecraft.smithing_template.armor_trim.ingredients", - "english_translation": "Ingots & Crystals" - }, - { - "key": "item.minecraft.smithing_template.ingredients", - "english_translation": "Ingredients:" - }, - { - "key": "item.minecraft.smithing_template.netherite_upgrade.additions_slot_description", - "english_translation": "Put a Netherite Ingot here" - }, - { - "key": "item.minecraft.smithing_template.netherite_upgrade.applies_to", - "english_translation": "Diamond Equipment" - }, - { - "key": "item.minecraft.smithing_template.netherite_upgrade.base_slot_description", - "english_translation": "Put a piece of Diamond armor, weapon or tool here" - }, - { - "key": "item.minecraft.smithing_template.netherite_upgrade.ingredients", - "english_translation": "Netherite Ingot" - }, - { - "key": "item.minecraft.smithing_template.upgrade", - "english_translation": "Upgrade: " - }, - { - "key": "item.minecraft.sniffer_spawn_egg", - "english_translation": "Sniffer Spawn Egg" - }, - { - "key": "item.minecraft.snow_golem_spawn_egg", - "english_translation": "Snow Golem Spawn Egg" - }, - { - "key": "item.minecraft.snowball", - "english_translation": "Snowball" - }, - { - "key": "item.minecraft.spectral_arrow", - "english_translation": "Spectral Arrow" - }, - { - "key": "item.minecraft.spider_eye", - "english_translation": "Spider Eye" - }, - { - "key": "item.minecraft.spider_spawn_egg", - "english_translation": "Spider Spawn Egg" - }, - { - "key": "item.minecraft.splash_potion", - "english_translation": "Splash Potion" - }, - { - "key": "item.minecraft.splash_potion.effect.awkward", - "english_translation": "Awkward Splash Potion" - }, - { - "key": "item.minecraft.splash_potion.effect.empty", - "english_translation": "Splash Uncraftable Potion" - }, - { - "key": "item.minecraft.splash_potion.effect.fire_resistance", - "english_translation": "Splash Potion of Fire Resistance" - }, - { - "key": "item.minecraft.splash_potion.effect.harming", - "english_translation": "Splash Potion of Harming" + "key": "block.minecraft.dark_oak_fence_gate", + "english_translation": "Dark Oak Fence Gate" }, { "key": "item.minecraft.splash_potion.effect.healing", "english_translation": "Splash Potion of Healing" }, { - "key": "item.minecraft.splash_potion.effect.invisibility", - "english_translation": "Splash Potion of Invisibility" + "key": "subtitles.entity.piglin.retreat", + "english_translation": "Piglin retreats" }, { - "key": "item.minecraft.splash_potion.effect.leaping", - "english_translation": "Splash Potion of Leaping" + "key": "block.minecraft.torchflower", + "english_translation": "Torchflower" }, { - "key": "item.minecraft.splash_potion.effect.levitation", - "english_translation": "Splash Potion of Levitation" + "key": "subtitles.entity.ravager.death", + "english_translation": "Ravager dies" }, { - "key": "item.minecraft.splash_potion.effect.luck", - "english_translation": "Splash Potion of Luck" + "key": "subtitles.item.firecharge.use", + "english_translation": "Fireball whooshes" }, { - "key": "item.minecraft.splash_potion.effect.mundane", - "english_translation": "Mundane Splash Potion" + "key": "block.minecraft.warped_stairs", + "english_translation": "Warped Stairs" }, { - "key": "item.minecraft.splash_potion.effect.night_vision", - "english_translation": "Splash Potion of Night Vision" + "key": "entity.minecraft.camel", + "english_translation": "Camel" }, { - "key": "item.minecraft.splash_potion.effect.poison", - "english_translation": "Splash Potion of Poison" + "key": "item.minecraft.minecart", + "english_translation": "Minecart" }, { - "key": "item.minecraft.splash_potion.effect.regeneration", - "english_translation": "Splash Potion of Regeneration" + "key": "advancements.adventure.kill_all_mobs.title", + "english_translation": "Monsters Hunted" }, { - "key": "item.minecraft.splash_potion.effect.slow_falling", - "english_translation": "Splash Potion of Slow Falling" + "key": "optimizeWorld.stage.upgrading", + "english_translation": "Upgrading all chunks..." }, { - "key": "item.minecraft.splash_potion.effect.slowness", - "english_translation": "Splash Potion of Slowness" + "key": "mco.backup.generate.world", + "english_translation": "Generate world" }, { - "key": "item.minecraft.splash_potion.effect.strength", - "english_translation": "Splash Potion of Strength" + "key": "painting.minecraft.stage.title", + "english_translation": "The Stage Is Set" }, { - "key": "item.minecraft.splash_potion.effect.swiftness", - "english_translation": "Splash Potion of Swiftness" + "key": "item.minecraft.jungle_boat", + "english_translation": "Jungle Boat" }, { - "key": "item.minecraft.splash_potion.effect.thick", - "english_translation": "Thick Splash Potion" + "key": "block.minecraft.waxed_oxidized_cut_copper", + "english_translation": "Waxed Oxidized Cut Copper" }, { - "key": "item.minecraft.splash_potion.effect.turtle_master", - "english_translation": "Splash Potion of the Turtle Master" + "key": "commands.banlist.none", + "english_translation": "There are no bans" }, { - "key": "item.minecraft.splash_potion.effect.water", - "english_translation": "Splash Water Bottle" + "key": "tutorial.punch_tree.title", + "english_translation": "Destroy the tree" }, { - "key": "item.minecraft.splash_potion.effect.water_breathing", - "english_translation": "Splash Potion of Water Breathing" + "key": "painting.minecraft.match.author", + "english_translation": "Kristoffer Zetterstrand" }, { - "key": "item.minecraft.splash_potion.effect.weakness", - "english_translation": "Splash Potion of Weakness" + "key": "key.sprint", + "english_translation": "Sprint" }, { - "key": "item.minecraft.spruce_boat", - "english_translation": "Spruce Boat" + "key": "subtitles.block.button.click", + "english_translation": "Button clicks" }, { - "key": "item.minecraft.spruce_chest_boat", - "english_translation": "Spruce Boat with Chest" + "key": "trim_material.minecraft.redstone", + "english_translation": "Redstone Material" }, { - "key": "item.minecraft.spyglass", - "english_translation": "Spyglass" + "key": "subtitles.item.chorus_fruit.teleport", + "english_translation": "Player teleports" }, { - "key": "item.minecraft.squid_spawn_egg", - "english_translation": "Squid Spawn Egg" + "key": "commands.scoreboard.players.remove.success.single", + "english_translation": "Removed %s from %s for %s (now %s)" }, { - "key": "item.minecraft.stick", - "english_translation": "Stick" + "key": "item.minecraft.guardian_spawn_egg", + "english_translation": "Guardian Spawn Egg" }, { - "key": "item.minecraft.stone_axe", - "english_translation": "Stone Axe" + "key": "lanServer.port.invalid.new", + "english_translation": "Not a valid port.\nLeave the edit box empty or enter a number between %s and %s." }, { - "key": "item.minecraft.stone_hoe", - "english_translation": "Stone Hoe" + "key": "advancements.story.mine_stone.description", + "english_translation": "Mine Stone with your new Pickaxe" }, { - "key": "item.minecraft.stone_pickaxe", - "english_translation": "Stone Pickaxe" + "key": "chat.disabled.missingProfileKey", + "english_translation": "Chat disabled due to missing profile public key. Please try reconnecting." }, { - "key": "item.minecraft.stone_shovel", - "english_translation": "Stone Shovel" + "key": "painting.minecraft.pointer.author", + "english_translation": "Kristoffer Zetterstrand" }, { - "key": "item.minecraft.stone_sword", - "english_translation": "Stone Sword" + "key": "block.minecraft.banner.base.white", + "english_translation": "Fully White Field" }, { - "key": "item.minecraft.stray_spawn_egg", - "english_translation": "Stray Spawn Egg" + "key": "mco.configure.world.slot.tooltip", + "english_translation": "Switch to world" }, { - "key": "item.minecraft.strider_spawn_egg", - "english_translation": "Strider Spawn Egg" + "key": "block.minecraft.banner.cross.black", + "english_translation": "Black Saltire" }, { - "key": "item.minecraft.string", - "english_translation": "String" + "key": "block.minecraft.banner.curly_border.purple", + "english_translation": "Purple Bordure Indented" }, { - "key": "item.minecraft.sugar", - "english_translation": "Sugar" + "key": "block.minecraft.banner.diagonal_up_right.orange", + "english_translation": "Orange Per Bend Sinister Inverted" }, { - "key": "item.minecraft.suspicious_stew", - "english_translation": "Suspicious Stew" + "key": "item.minecraft.clay_ball", + "english_translation": "Clay Ball" }, { - "key": "item.minecraft.sweet_berries", - "english_translation": "Sweet Berries" + "key": "item.minecraft.rabbit_hide", + "english_translation": "Rabbit Hide" }, { - "key": "item.minecraft.tadpole_bucket", - "english_translation": "Bucket of Tadpole" + "key": "color.minecraft.black", + "english_translation": "Black" }, { - "key": "item.minecraft.tadpole_spawn_egg", - "english_translation": "Tadpole Spawn Egg" + "key": "item.minecraft.netherite_leggings", + "english_translation": "Netherite Leggings" }, { - "key": "item.minecraft.tipped_arrow", - "english_translation": "Tipped Arrow" + "key": "block.minecraft.banner.small_stripes.light_blue", + "english_translation": "Light Blue Paly" }, { - "key": "item.minecraft.tipped_arrow.effect.awkward", - "english_translation": "Tipped Arrow" + "key": "death.attack.dragonBreath.player", + "english_translation": "%1$s was roasted in dragon's breath by %2$s" }, { - "key": "item.minecraft.tipped_arrow.effect.empty", - "english_translation": "Uncraftable Tipped Arrow" - }, - { - "key": "item.minecraft.tipped_arrow.effect.fire_resistance", - "english_translation": "Arrow of Fire Resistance" - }, - { - "key": "item.minecraft.tipped_arrow.effect.harming", - "english_translation": "Arrow of Harming" - }, - { - "key": "item.minecraft.tipped_arrow.effect.healing", - "english_translation": "Arrow of Healing" - }, - { - "key": "item.minecraft.tipped_arrow.effect.invisibility", - "english_translation": "Arrow of Invisibility" - }, - { - "key": "item.minecraft.tipped_arrow.effect.leaping", - "english_translation": "Arrow of Leaping" - }, - { - "key": "item.minecraft.tipped_arrow.effect.levitation", - "english_translation": "Arrow of Levitation" - }, - { - "key": "item.minecraft.tipped_arrow.effect.luck", - "english_translation": "Arrow of Luck" - }, - { - "key": "item.minecraft.tipped_arrow.effect.mundane", - "english_translation": "Tipped Arrow" - }, - { - "key": "item.minecraft.tipped_arrow.effect.night_vision", - "english_translation": "Arrow of Night Vision" - }, - { - "key": "item.minecraft.tipped_arrow.effect.poison", - "english_translation": "Arrow of Poison" - }, - { - "key": "item.minecraft.tipped_arrow.effect.regeneration", - "english_translation": "Arrow of Regeneration" - }, - { - "key": "item.minecraft.tipped_arrow.effect.slow_falling", - "english_translation": "Arrow of Slow Falling" - }, - { - "key": "item.minecraft.tipped_arrow.effect.slowness", - "english_translation": "Arrow of Slowness" - }, - { - "key": "item.minecraft.tipped_arrow.effect.strength", - "english_translation": "Arrow of Strength" - }, - { - "key": "item.minecraft.tipped_arrow.effect.swiftness", - "english_translation": "Arrow of Swiftness" - }, - { - "key": "item.minecraft.tipped_arrow.effect.thick", - "english_translation": "Tipped Arrow" - }, - { - "key": "item.minecraft.tipped_arrow.effect.turtle_master", - "english_translation": "Arrow of the Turtle Master" - }, - { - "key": "item.minecraft.tipped_arrow.effect.water", - "english_translation": "Arrow of Splashing" - }, - { - "key": "item.minecraft.tipped_arrow.effect.water_breathing", - "english_translation": "Arrow of Water Breathing" - }, - { - "key": "item.minecraft.tipped_arrow.effect.weakness", - "english_translation": "Arrow of Weakness" - }, - { - "key": "item.minecraft.tnt_minecart", - "english_translation": "Minecart with TNT" - }, - { - "key": "item.minecraft.torchflower_seeds", - "english_translation": "Torchflower Seeds" - }, - { - "key": "item.minecraft.totem_of_undying", - "english_translation": "Totem of Undying" - }, - { - "key": "item.minecraft.trader_llama_spawn_egg", - "english_translation": "Trader Llama Spawn Egg" - }, - { - "key": "item.minecraft.trident", - "english_translation": "Trident" - }, - { - "key": "item.minecraft.tropical_fish", - "english_translation": "Tropical Fish" - }, - { - "key": "item.minecraft.tropical_fish_bucket", - "english_translation": "Bucket of Tropical Fish" - }, - { - "key": "item.minecraft.tropical_fish_spawn_egg", - "english_translation": "Tropical Fish Spawn Egg" - }, - { - "key": "item.minecraft.turtle_helmet", - "english_translation": "Turtle Shell" - }, - { - "key": "item.minecraft.turtle_spawn_egg", - "english_translation": "Turtle Spawn Egg" - }, - { - "key": "item.minecraft.vex_spawn_egg", - "english_translation": "Vex Spawn Egg" - }, - { - "key": "item.minecraft.villager_spawn_egg", - "english_translation": "Villager Spawn Egg" - }, - { - "key": "item.minecraft.vindicator_spawn_egg", - "english_translation": "Vindicator Spawn Egg" - }, - { - "key": "item.minecraft.wandering_trader_spawn_egg", - "english_translation": "Wandering Trader Spawn Egg" - }, - { - "key": "item.minecraft.warden_spawn_egg", - "english_translation": "Warden Spawn Egg" - }, - { - "key": "item.minecraft.warped_fungus_on_a_stick", - "english_translation": "Warped Fungus on a Stick" - }, - { - "key": "item.minecraft.water_bucket", - "english_translation": "Water Bucket" - }, - { - "key": "item.minecraft.wheat", - "english_translation": "Wheat" - }, - { - "key": "item.minecraft.wheat_seeds", - "english_translation": "Wheat Seeds" - }, - { - "key": "item.minecraft.white_dye", - "english_translation": "White Dye" - }, - { - "key": "item.minecraft.witch_spawn_egg", - "english_translation": "Witch Spawn Egg" - }, - { - "key": "item.minecraft.wither_skeleton_spawn_egg", - "english_translation": "Wither Skeleton Spawn Egg" - }, - { - "key": "item.minecraft.wither_spawn_egg", - "english_translation": "Wither Spawn Egg" - }, - { - "key": "item.minecraft.wolf_spawn_egg", - "english_translation": "Wolf Spawn Egg" - }, - { - "key": "item.minecraft.wooden_axe", - "english_translation": "Wooden Axe" - }, - { - "key": "item.minecraft.wooden_hoe", - "english_translation": "Wooden Hoe" - }, - { - "key": "item.minecraft.wooden_pickaxe", - "english_translation": "Wooden Pickaxe" - }, - { - "key": "item.minecraft.wooden_shovel", - "english_translation": "Wooden Shovel" - }, - { - "key": "item.minecraft.wooden_sword", - "english_translation": "Wooden Sword" - }, - { - "key": "item.minecraft.writable_book", - "english_translation": "Book and Quill" - }, - { - "key": "item.minecraft.written_book", - "english_translation": "Written Book" - }, - { - "key": "item.minecraft.yellow_dye", - "english_translation": "Yellow Dye" - }, - { - "key": "item.minecraft.zoglin_spawn_egg", - "english_translation": "Zoglin Spawn Egg" - }, - { - "key": "item.minecraft.zombie_horse_spawn_egg", - "english_translation": "Zombie Horse Spawn Egg" - }, - { - "key": "item.minecraft.zombie_spawn_egg", - "english_translation": "Zombie Spawn Egg" - }, - { - "key": "item.minecraft.zombie_villager_spawn_egg", - "english_translation": "Zombie Villager Spawn Egg" - }, - { - "key": "item.minecraft.zombified_piglin_spawn_egg", - "english_translation": "Zombified Piglin Spawn Egg" - }, - { - "key": "item.modifiers.chest", - "english_translation": "When on Body:" - }, - { - "key": "item.modifiers.feet", - "english_translation": "When on Feet:" - }, - { - "key": "item.modifiers.head", - "english_translation": "When on Head:" - }, - { - "key": "item.modifiers.legs", - "english_translation": "When on Legs:" - }, - { - "key": "item.modifiers.mainhand", - "english_translation": "When in Main Hand:" - }, - { - "key": "item.modifiers.offhand", - "english_translation": "When in Off Hand:" - }, - { - "key": "item.nbt_tags", - "english_translation": "NBT: %s tag(s)" - }, - { - "key": "item.unbreakable", - "english_translation": "Unbreakable" - }, - { - "key": "itemGroup.buildingBlocks", - "english_translation": "Building Blocks" - }, - { - "key": "itemGroup.coloredBlocks", - "english_translation": "Colored Blocks" - }, - { - "key": "itemGroup.combat", - "english_translation": "Combat" - }, - { - "key": "itemGroup.consumables", - "english_translation": "Consumables" - }, - { - "key": "itemGroup.crafting", - "english_translation": "Crafting" - }, - { - "key": "itemGroup.foodAndDrink", - "english_translation": "Food & Drinks" - }, - { - "key": "itemGroup.functional", - "english_translation": "Functional Blocks" - }, - { - "key": "itemGroup.hotbar", - "english_translation": "Saved Hotbars" - }, - { - "key": "itemGroup.ingredients", - "english_translation": "Ingredients" - }, - { - "key": "itemGroup.inventory", - "english_translation": "Survival Inventory" - }, - { - "key": "itemGroup.natural", - "english_translation": "Natural Blocks" - }, - { - "key": "itemGroup.op", - "english_translation": "Operator Utilities" - }, - { - "key": "itemGroup.redstone", - "english_translation": "Redstone Blocks" - }, - { - "key": "itemGroup.search", - "english_translation": "Search Items" - }, - { - "key": "itemGroup.spawnEggs", - "english_translation": "Spawn Eggs" - }, - { - "key": "itemGroup.tools", - "english_translation": "Tools & Utilities" - }, - { - "key": "jigsaw_block.final_state", - "english_translation": "Turns into:" - }, - { - "key": "jigsaw_block.generate", - "english_translation": "Generate" - }, - { - "key": "jigsaw_block.joint_label", - "english_translation": "Joint Type:" - }, - { - "key": "jigsaw_block.joint.aligned", - "english_translation": "Aligned" + "key": "advancements.adventure.two_birds_one_arrow.description", + "english_translation": "Kill two Phantoms with a piercing Arrow" }, { "key": "jigsaw_block.joint.rollable", "english_translation": "Rollable" }, { - "key": "jigsaw_block.keep_jigsaws", - "english_translation": "Keep Jigsaws" + "key": "subtitles.entity.cow.milk", + "english_translation": "Cow gets milked" }, { - "key": "jigsaw_block.levels", - "english_translation": "Levels: %s" + "key": "block.minecraft.light_gray_wool", + "english_translation": "Light Gray Wool" }, { - "key": "jigsaw_block.name", - "english_translation": "Name:" + "key": "advancements.nether.return_to_sender.title", + "english_translation": "Return to Sender" }, { - "key": "jigsaw_block.pool", - "english_translation": "Target Pool:" + "key": "block.minecraft.lime_stained_glass", + "english_translation": "Lime Stained Glass" }, { - "key": "jigsaw_block.target", - "english_translation": "Target Name:" + "key": "block.minecraft.banner.half_horizontal.pink", + "english_translation": "Pink Per Fess" }, { - "key": "key.advancements", - "english_translation": "Advancements" + "key": "item.minecraft.pufferfish_bucket", + "english_translation": "Bucket of Pufferfish" }, { - "key": "key.attack", - "english_translation": "Attack/Destroy" + "key": "advancements.husbandry.complete_catalogue.description", + "english_translation": "Tame all Cat variants!" }, { - "key": "key.back", - "english_translation": "Walk Backwards" + "key": "sleep.players_sleeping", + "english_translation": "%s/%s players sleeping" }, { - "key": "key.categories.creative", - "english_translation": "Creative Mode" + "key": "block.minecraft.banner.triangles_top.pink", + "english_translation": "Pink Chief Indented" }, { - "key": "key.categories.gameplay", - "english_translation": "Gameplay" + "key": "block.minecraft.polished_blackstone", + "english_translation": "Polished Blackstone" }, { - "key": "key.categories.inventory", - "english_translation": "Inventory" + "key": "subtitles.entity.vindicator.death", + "english_translation": "Vindicator dies" }, { - "key": "key.categories.misc", - "english_translation": "Miscellaneous" + "key": "advancements.end.dragon_egg.description", + "english_translation": "Hold the Dragon Egg" }, { - "key": "key.categories.movement", - "english_translation": "Movement" + "key": "debug.pause.help", + "english_translation": "F3 + Esc = Pause without pause menu (if pausing is possible)" }, { - "key": "key.categories.multiplayer", - "english_translation": "Multiplayer" + "key": "spectatorMenu.teleport", + "english_translation": "Teleport to Player" }, { - "key": "key.categories.ui", - "english_translation": "Game Interface" + "key": "commands.trigger.failed.invalid", + "english_translation": "You can only trigger objectives that are 'trigger' type" }, { - "key": "key.chat", - "english_translation": "Open Chat" + "key": "block.minecraft.banner.square_bottom_right.gray", + "english_translation": "Gray Base Sinister Canton" }, { - "key": "key.command", - "english_translation": "Open Command" + "key": "advancements.adventure.very_very_frightening.title", + "english_translation": "Very Very Frightening" }, { - "key": "key.drop", - "english_translation": "Drop Selected Item" + "key": "item.minecraft.tnt_minecart", + "english_translation": "Minecart with TNT" }, { - "key": "key.forward", - "english_translation": "Walk Forwards" + "key": "argument.block.property.invalid", + "english_translation": "Block %s does not accept '%s' for %s property" }, { - "key": "key.fullscreen", - "english_translation": "Toggle Fullscreen" + "key": "selectWorld.versionWarning", + "english_translation": "This world was last played in version %s and loading it in this version could cause corruption!" }, { - "key": "key.hotbar.1", - "english_translation": "Hotbar Slot 1" + "key": "death.attack.lava.player", + "english_translation": "%1$s tried to swim in lava to escape %2$s" }, { - "key": "key.hotbar.2", - "english_translation": "Hotbar Slot 2" - }, - { - "key": "key.hotbar.3", - "english_translation": "Hotbar Slot 3" - }, - { - "key": "key.hotbar.4", - "english_translation": "Hotbar Slot 4" - }, - { - "key": "key.hotbar.5", - "english_translation": "Hotbar Slot 5" - }, - { - "key": "key.hotbar.6", - "english_translation": "Hotbar Slot 6" - }, - { - "key": "key.hotbar.7", - "english_translation": "Hotbar Slot 7" - }, - { - "key": "key.hotbar.8", - "english_translation": "Hotbar Slot 8" - }, - { - "key": "key.hotbar.9", - "english_translation": "Hotbar Slot 9" - }, - { - "key": "key.inventory", - "english_translation": "Open/Close Inventory" - }, - { - "key": "key.jump", - "english_translation": "Jump" - }, - { - "key": "key.keyboard.apostrophe", - "english_translation": "'" - }, - { - "key": "key.keyboard.backslash", - "english_translation": "\\" - }, - { - "key": "key.keyboard.backspace", - "english_translation": "Backspace" - }, - { - "key": "key.keyboard.caps.lock", - "english_translation": "Caps Lock" - }, - { - "key": "key.keyboard.comma", - "english_translation": "," - }, - { - "key": "key.keyboard.delete", - "english_translation": "Delete" - }, - { - "key": "key.keyboard.down", - "english_translation": "Down Arrow" - }, - { - "key": "key.keyboard.end", - "english_translation": "End" + "key": "subtitles.item.trident.hit", + "english_translation": "Trident stabs" }, { "key": "key.keyboard.enter", "english_translation": "Enter" }, { - "key": "key.keyboard.equal", - "english_translation": "=" + "key": "advancements.story.enter_the_end.description", + "english_translation": "Enter the End Portal" }, { - "key": "key.keyboard.escape", - "english_translation": "Escape" + "key": "advMode.notEnabled", + "english_translation": "Command blocks are not enabled on this server" }, { - "key": "key.keyboard.f1", - "english_translation": "F1" + "key": "book.pageIndicator", + "english_translation": "Page %1$s of %2$s" }, { - "key": "key.keyboard.f2", - "english_translation": "F2" + "key": "block.minecraft.purple_terracotta", + "english_translation": "Purple Terracotta" }, { - "key": "key.keyboard.f3", - "english_translation": "F3" + "key": "subtitles.entity.squid.hurt", + "english_translation": "Squid hurts" }, { - "key": "key.keyboard.f4", - "english_translation": "F4" + "key": "block.minecraft.banner.small_stripes.green", + "english_translation": "Green Paly" }, { - "key": "key.keyboard.f5", - "english_translation": "F5" + "key": "item.minecraft.redstone", + "english_translation": "Redstone Dust" }, { - "key": "key.keyboard.f6", - "english_translation": "F6" + "key": "advancements.adventure.trim_with_all_exclusive_armor_patterns.description", + "english_translation": "Apply these smithing templates at least once: Spire, Snout, Rib, Ward, Silence, Vex, Tide, Wayfinder" }, { - "key": "key.keyboard.f7", - "english_translation": "F7" + "key": "block.minecraft.crimson_wall_hanging_sign", + "english_translation": "Crimson Wall Hanging Sign" }, { - "key": "key.keyboard.f8", - "english_translation": "F8" + "key": "demo.help.fullWrapped", + "english_translation": "This demo will last 5 in-game days (about 1 hour and 40 minutes of real time). Check the advancements for hints! Have fun!" }, { - "key": "key.keyboard.f9", - "english_translation": "F9" + "key": "commands.perf.alreadyRunning", + "english_translation": "The performance profiler is already started" }, { - "key": "key.keyboard.f10", - "english_translation": "F10" + "key": "biome.minecraft.deep_dark", + "english_translation": "Deep Dark" }, { - "key": "key.keyboard.f11", - "english_translation": "F11" + "key": "block.minecraft.oak_sapling", + "english_translation": "Oak Sapling" }, { - "key": "key.keyboard.f12", - "english_translation": "F12" + "key": "commands.ride.mount.failure.wrong_dimension", + "english_translation": "Can't mount entity in different dimension" }, { - "key": "key.keyboard.f13", - "english_translation": "F13" + "key": "effect.minecraft.darkness", + "english_translation": "Darkness" }, { - "key": "key.keyboard.f14", - "english_translation": "F14" + "key": "key.loadToolbarActivator", + "english_translation": "Load Hotbar Activator" }, { - "key": "key.keyboard.f15", - "english_translation": "F15" + "key": "attribute.name.generic.armor", + "english_translation": "Armor" }, { - "key": "key.keyboard.f16", - "english_translation": "F16" + "key": "attribute.name.generic.follow_range", + "english_translation": "Mob Follow Range" }, { - "key": "key.keyboard.f17", - "english_translation": "F17" + "key": "argument.range.ints", + "english_translation": "Only whole numbers allowed, not decimals" }, { - "key": "key.keyboard.f18", - "english_translation": "F18" + "key": "options.title", + "english_translation": "Options" }, { - "key": "key.keyboard.f19", - "english_translation": "F19" + "key": "biome.minecraft.savanna", + "english_translation": "Savanna" + }, + { + "key": "block.minecraft.yellow_carpet", + "english_translation": "Yellow Carpet" + }, + { + "key": "block.minecraft.banner.stripe_center.cyan", + "english_translation": "Cyan Pale" + }, + { + "key": "subtitles.entity.warden.sonic_charge", + "english_translation": "Warden charges" + }, + { + "key": "commands.team.leave.success.multiple", + "english_translation": "Removed %s members from any team" + }, + { + "key": "createWorld.customize.custom.biomeScaleOffset", + "english_translation": "Biome Scale Offset" + }, + { + "key": "advancements.end.kill_dragon.description", + "english_translation": "Good luck" + }, + { + "key": "subtitles.entity.ender_eye.launch", + "english_translation": "Eye of Ender shoots" + }, + { + "key": "subtitles.entity.fox.eat", + "english_translation": "Fox eats" + }, + { + "key": "inventory.hotbarInfo", + "english_translation": "Save hotbar with %1$s+%2$s" + }, + { + "key": "painting.minecraft.void.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "block.minecraft.green_terracotta", + "english_translation": "Green Terracotta" + }, + { + "key": "options.prioritizeChunkUpdates.nearby.tooltip", + "english_translation": "Nearby chunks are always compiled immediately. This may impact game performance when blocks are placed or destroyed." + }, + { + "key": "subtitles.entity.warden.nearby_close", + "english_translation": "Warden approaches" + }, + { + "key": "block.minecraft.chorus_flower", + "english_translation": "Chorus Flower" + }, + { + "key": "item.minecraft.scute", + "english_translation": "Scute" + }, + { + "key": "mco.create.world", + "english_translation": "Create" + }, + { + "key": "subtitles.entity.camel.dash", + "english_translation": "Camel yeets" + }, + { + "key": "item.minecraft.popped_chorus_fruit", + "english_translation": "Popped Chorus Fruit" + }, + { + "key": "item.minecraft.lingering_potion.effect.swiftness", + "english_translation": "Lingering Potion of Swiftness" + }, + { + "key": "stat.minecraft.inspect_hopper", + "english_translation": "Hoppers Searched" + }, + { + "key": "block.minecraft.bubble_column", + "english_translation": "Bubble Column" + }, + { + "key": "jigsaw_block.joint_label", + "english_translation": "Joint Type:" + }, + { + "key": "addServer.resourcePack.prompt", + "english_translation": "Prompt" + }, + { + "key": "advancements.husbandry.tactical_fishing.title", + "english_translation": "Tactical Fishing" + }, + { + "key": "block.minecraft.waxed_weathered_cut_copper_slab", + "english_translation": "Waxed Weathered Cut Copper Slab" + }, + { + "key": "item.minecraft.brewer_pottery_sherd", + "english_translation": "Brewer Pottery Sherd" + }, + { + "key": "arguments.operation.div0", + "english_translation": "Cannot divide by zero" + }, + { + "key": "key.keyboard.f22", + "english_translation": "F22" + }, + { + "key": "mco.configure.world.status", + "english_translation": "Status" + }, + { + "key": "key.keyboard.f23", + "english_translation": "F23" }, { "key": "key.keyboard.f20", @@ -16492,32 +6508,17124 @@ "english_translation": "F21" }, { - "key": "key.keyboard.f22", - "english_translation": "F22" + "key": "block.minecraft.banner.mojang.purple", + "english_translation": "Purple Thing" }, { - "key": "key.keyboard.f23", - "english_translation": "F23" + "key": "advancements.adventure.summon_iron_golem.title", + "english_translation": "Hired Help" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.gray", + "english_translation": "Gray Per Fess Inverted" + }, + { + "key": "commands.schedule.same_tick", + "english_translation": "Can't schedule for current tick" + }, + { + "key": "commands.spreadplayers.success.teams", + "english_translation": "Spread %s team(s) around %s, %s with an average distance of %s blocks apart" }, { "key": "key.keyboard.f24", "english_translation": "F24" }, + { + "key": "subtitles.entity.allay.ambient_with_item", + "english_translation": "Allay seeks" + }, { "key": "key.keyboard.f25", "english_translation": "F25" }, { - "key": "key.keyboard.grave.accent", - "english_translation": "`" + "key": "filled_map.locked", + "english_translation": "Locked" + }, + { + "key": "mco.connect.failed", + "english_translation": "Failed to connect to the realm" + }, + { + "key": "selectWorld.mapType", + "english_translation": "World Type" + }, + { + "key": "death.attack.outOfWorld.player", + "english_translation": "%1$s didn't want to live in the same world as %2$s" + }, + { + "key": "gui.narrate.slider", + "english_translation": "%s slider" + }, + { + "key": "selectWorld.access_failure", + "english_translation": "Failed to access world" + }, + { + "key": "multiplayer.downloadingTerrain", + "english_translation": "Loading terrain..." + }, + { + "key": "block.minecraft.banner.small_stripes.red", + "english_translation": "Red Paly" + }, + { + "key": "block.minecraft.deepslate_redstone_ore", + "english_translation": "Deepslate Redstone Ore" + }, + { + "key": "argument.rotation.incomplete", + "english_translation": "Incomplete (expected 2 coordinates)" + }, + { + "key": "gamerule.category.spawning", + "english_translation": "Spawning" + }, + { + "key": "subtitles.entity.witch.throw", + "english_translation": "Witch throws" + }, + { + "key": "block.minecraft.tall_seagrass", + "english_translation": "Tall Seagrass" + }, + { + "key": "createWorld.customize.custom.useDungeons", + "english_translation": "Dungeons" + }, + { + "key": "painting.minecraft.fire.title", + "english_translation": "Fire" + }, + { + "key": "commands.clone.failed", + "english_translation": "No blocks were cloned" + }, + { + "key": "item.minecraft.axolotl_bucket", + "english_translation": "Bucket of Axolotl" + }, + { + "key": "block.minecraft.banner.stripe_right.red", + "english_translation": "Red Pale Sinister" + }, + { + "key": "subtitles.item.trident.hit_ground", + "english_translation": "Trident vibrates" + }, + { + "key": "advMode.setCommand", + "english_translation": "Set Console Command for Block" + }, + { + "key": "block.minecraft.mangrove_pressure_plate", + "english_translation": "Mangrove Pressure Plate" + }, + { + "key": "commands.save.alreadyOff", + "english_translation": "Saving is already turned off" + }, + { + "key": "item.minecraft.melon_seeds", + "english_translation": "Melon Seeds" + }, + { + "key": "commands.whitelist.list", + "english_translation": "There are %s whitelisted player(s): %s" + }, + { + "key": "block.minecraft.white_glazed_terracotta", + "english_translation": "White Glazed Terracotta" + }, + { + "key": "multiplayer.disconnect.incompatible", + "english_translation": "Incompatible client! Please use %s" + }, + { + "key": "subtitles.entity.snow_golem.hurt", + "english_translation": "Snow Golem hurts" + }, + { + "key": "block.minecraft.nether_bricks", + "english_translation": "Nether Bricks" + }, + { + "key": "subtitles.entity.piglin.angry", + "english_translation": "Piglin snorts angrily" + }, + { + "key": "block.minecraft.banner.diagonal_right.yellow", + "english_translation": "Yellow Per Bend" + }, + { + "key": "key.keyboard.f11", + "english_translation": "F11" + }, + { + "key": "key.keyboard.f12", + "english_translation": "F12" + }, + { + "key": "key.keyboard.f10", + "english_translation": "F10" + }, + { + "key": "options.accessibility.text_background", + "english_translation": "Text Background" + }, + { + "key": "item.minecraft.rabbit", + "english_translation": "Raw Rabbit" + }, + { + "key": "block.minecraft.mushroom_stem", + "english_translation": "Mushroom Stem" + }, + { + "key": "painting.minecraft.bomb.title", + "english_translation": "Target Successfully Bombed" + }, + { + "key": "item.minecraft.tipped_arrow.effect.weakness", + "english_translation": "Arrow of Weakness" + }, + { + "key": "block.minecraft.light_blue_glazed_terracotta", + "english_translation": "Light Blue Glazed Terracotta" + }, + { + "key": "commands.place.feature.success", + "english_translation": "Placed \"%s\" at %s, %s, %s" + }, + { + "key": "advancements.nether.use_lodestone.description", + "english_translation": "Use a Compass on a Lodestone" + }, + { + "key": "block.minecraft.crying_obsidian", + "english_translation": "Crying Obsidian" + }, + { + "key": "options.allowServerListing", + "english_translation": "Allow Server Listings" + }, + { + "key": "key.keyboard.f15", + "english_translation": "F15" + }, + { + "key": "item.minecraft.music_disc_mellohi.desc", + "english_translation": "C418 - mellohi" + }, + { + "key": "key.keyboard.f16", + "english_translation": "F16" + }, + { + "key": "key.keyboard.f13", + "english_translation": "F13" + }, + { + "key": "key.keyboard.f14", + "english_translation": "F14" + }, + { + "key": "key.keyboard.f19", + "english_translation": "F19" + }, + { + "key": "key.keyboard.f17", + "english_translation": "F17" + }, + { + "key": "options.autoSuggestCommands", + "english_translation": "Command Suggestions" + }, + { + "key": "key.keyboard.f18", + "english_translation": "F18" + }, + { + "key": "item.minecraft.creeper_banner_pattern", + "english_translation": "Banner Pattern" + }, + { + "key": "painting.minecraft.skull_and_roses.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "block.minecraft.polished_blackstone_brick_slab", + "english_translation": "Polished Blackstone Brick Slab" + }, + { + "key": "commands.playsound.success.multiple", + "english_translation": "Played sound %s to %s players" + }, + { + "key": "advancements.nether.fast_travel.description", + "english_translation": "Use the Nether to travel 7 km in the Overworld" + }, + { + "key": "subtitles.item.trident.return", + "english_translation": "Trident returns" + }, + { + "key": "block.minecraft.deepslate_diamond_ore", + "english_translation": "Deepslate Diamond Ore" + }, + { + "key": "book.editTitle", + "english_translation": "Enter Book Title:" + }, + { + "key": "subtitles.entity.mule.chest", + "english_translation": "Mule Chest equips" + }, + { + "key": "pack.source.fabricmod", + "english_translation": "Fabric mod" + }, + { + "key": "block.minecraft.waxed_oxidized_cut_copper_stairs", + "english_translation": "Waxed Oxidized Cut Copper Stairs" + }, + { + "key": "mco.template.button.select", + "english_translation": "Select" + }, + { + "key": "selectWorld.edit", + "english_translation": "Edit" + }, + { + "key": "death.attack.sonic_boom.item", + "english_translation": "%1$s was obliterated by a sonically-charged shriek whilst trying to escape %2$s wielding %3$s" + }, + { + "key": "block.minecraft.banner.stripe_top.white", + "english_translation": "White Chief" + }, + { + "key": "subtitles.entity.drowned.swim", + "english_translation": "Drowned swims" + }, + { + "key": "commands.title.show.title.multiple", + "english_translation": "Showing new title for %s players" + }, + { + "key": "block.minecraft.banner.creeper.light_blue", + "english_translation": "Light Blue Creeper Charge" + }, + { + "key": "commands.damage.invulnerable", + "english_translation": "Target is invulnerable to the given damage type" + }, + { + "key": "item.minecraft.zombie_horse_spawn_egg", + "english_translation": "Zombie Horse Spawn Egg" + }, + { + "key": "telemetry.event.world_unloaded.title", + "english_translation": "World Unloaded" + }, + { + "key": "gui.abuseReport.reason.harassment_or_bullying", + "english_translation": "Harassment or bullying" + }, + { + "key": "commands.spawnpoint.success.multiple", + "english_translation": "Set spawn point to %s, %s, %s [%s] in %s for %s players" + }, + { + "key": "mco.configure.world.subscription.remaining.months", + "english_translation": "%1$s month(s)" + }, + { + "key": "commands.bossbar.set.color.success", + "english_translation": "Custom bossbar %s has changed color" + }, + { + "key": "biome.minecraft.desert", + "english_translation": "Desert" + }, + { + "key": "commands.item.target.no_changes", + "english_translation": "No targets accepted item into slot %s" + }, + { + "key": "mco.gui.ok", + "english_translation": "Ok" + }, + { + "key": "pack.source.builtinMod", + "english_translation": "built-in: %s" + }, + { + "key": "item.minecraft.spider_eye", + "english_translation": "Spider Eye" + }, + { + "key": "stat.minecraft.treasure_fished", + "english_translation": "Treasure Fished" + }, + { + "key": "commands.clone.toobig", + "english_translation": "Too many blocks in the specified area (maximum %s, specified %s)" + }, + { + "key": "block.minecraft.stripped_warped_stem", + "english_translation": "Stripped Warped Stem" + }, + { + "key": "item.minecraft.glow_squid_spawn_egg", + "english_translation": "Glow Squid Spawn Egg" + }, + { + "key": "item.minecraft.smithing_template", + "english_translation": "Smithing Template" + }, + { + "key": "block.minecraft.black_concrete_powder", + "english_translation": "Black Concrete Powder" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.blue", + "english_translation": "Blue Per Bend Inverted" + }, + { + "key": "difficulty.lock.title", + "english_translation": "Lock World Difficulty" + }, + { + "key": "options.difficulty.online", + "english_translation": "Server Difficulty" + }, + { + "key": "argument.color.invalid", + "english_translation": "Unknown color '%s'" + }, + { + "key": "menu.game", + "english_translation": "Game Menu" + }, + { + "key": "block.minecraft.banner.stripe_center.white", + "english_translation": "White Pale" + }, + { + "key": "entity.minecraft.villager.shepherd", + "english_translation": "Shepherd" + }, + { + "key": "block.minecraft.obsidian", + "english_translation": "Obsidian" + }, + { + "key": "attribute.name.horse.jump_strength", + "english_translation": "Horse Jump Strength" + }, + { + "key": "item.minecraft.evoker_spawn_egg", + "english_translation": "Evoker Spawn Egg" + }, + { + "key": "title.32bit.deprecation", + "english_translation": "32-bit system detected: this may prevent you from playing in the future as a 64-bit system will be required!" + }, + { + "key": "resourcePack.title", + "english_translation": "Select Resource Packs" + }, + { + "key": "block.minecraft.beehive", + "english_translation": "Beehive" + }, + { + "key": "item.minecraft.diamond_boots", + "english_translation": "Diamond Boots" + }, + { + "key": "key.keyboard.print.screen", + "english_translation": "Print Screen" + }, + { + "key": "item.minecraft.acacia_boat", + "english_translation": "Acacia Boat" + }, + { + "key": "entity.minecraft.vindicator", + "english_translation": "Vindicator" + }, + { + "key": "tutorial.find_tree.description", + "english_translation": "Punch it to collect wood" + }, + { + "key": "mco.template.select.none", + "english_translation": "Oops, it looks like this content category is currently empty.\nPlease check back later for new content, or if you're a creator,\n%s." + }, + { + "key": "effect.minecraft.saturation", + "english_translation": "Saturation" + }, + { + "key": "commands.effect.clear.everything.success.single", + "english_translation": "Removed every effect from %s" + }, + { + "key": "block.minecraft.orange_terracotta", + "english_translation": "Orange Terracotta" + }, + { + "key": "multiplayer.status.online", + "english_translation": "Online" + }, + { + "key": "subtitles.entity.sniffer.step", + "english_translation": "Sniffer steps" + }, + { + "key": "argument.resource_tag.invalid_type", + "english_translation": "Tag '%s' has wrong type '%s' (expected '%s')" + }, + { + "key": "mco.template.name", + "english_translation": "Template" + }, + { + "key": "subtitles.block.chest.locked", + "english_translation": "Chest locked" + }, + { + "key": "item.minecraft.mourner_pottery_shard", + "english_translation": "Mourner Pottery Shard" + }, + { + "key": "potion.whenDrank", + "english_translation": "When Applied:" + }, + { + "key": "block.minecraft.warped_wall_hanging_sign", + "english_translation": "Warped Wall Hanging Sign" + }, + { + "key": "subtitles.entity.ghast.hurt", + "english_translation": "Ghast hurts" + }, + { + "key": "block.minecraft.verdant_froglight", + "english_translation": "Verdant Froglight" + }, + { + "key": "advancements.adventure.sleep_in_bed.title", + "english_translation": "Sweet Dreams" + }, + { + "key": "subtitles.block.conduit.deactivate", + "english_translation": "Conduit deactivates" + }, + { + "key": "block.minecraft.bamboo_mosaic", + "english_translation": "Bamboo Mosaic" + }, + { + "key": "block.minecraft.kelp_plant", + "english_translation": "Kelp Plant" + }, + { + "key": "controls.keybinds", + "english_translation": "Key Binds..." + }, + { + "key": "key.keyboard.right.control", + "english_translation": "Right Control" + }, + { + "key": "tutorial.look.title", + "english_translation": "Look around" + }, + { + "key": "block.minecraft.orange_stained_glass", + "english_translation": "Orange Stained Glass" + }, + { + "key": "advancements.adventure.craft_decorated_pot_using_only_sherds.description", + "english_translation": "Make a Decorated Pot out of 4 Pottery Sherds" + }, + { + "key": "block.minecraft.attached_pumpkin_stem", + "english_translation": "Attached Pumpkin Stem" + }, + { + "key": "options.accessibility.panorama_speed", + "english_translation": "Panorama Scroll Speed" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.lime", + "english_translation": "Lime Per Bend Inverted" + }, + { + "key": "advMode.randomPlayer", + "english_translation": "Use \"@r\" to target random player" + }, + { + "key": "block.minecraft.acacia_sign", + "english_translation": "Acacia Sign" + }, + { + "key": "subtitles.entity.player.attack.weak", + "english_translation": "Weak attack" + }, + { + "key": "item.minecraft.splash_potion.effect.invisibility", + "english_translation": "Splash Potion of Invisibility" + }, + { + "key": "block.minecraft.soul_torch", + "english_translation": "Soul Torch" + }, + { + "key": "enchantment.minecraft.punch", + "english_translation": "Punch" + }, + { + "key": "key.keyboard.page.down", + "english_translation": "Page Down" + }, + { + "key": "subtitles.entity.puffer_fish.death", + "english_translation": "Pufferfish dies" + }, + { + "key": "block.minecraft.cherry_sign", + "english_translation": "Cherry Sign" + }, + { + "key": "death.fell.accident.ladder", + "english_translation": "%1$s fell off a ladder" + }, + { + "key": "mco.backup.button.reset", + "english_translation": "Reset world" + }, + { + "key": "mco.selectServer.expiredSubscribe", + "english_translation": "Subscribe" + }, + { + "key": "block.minecraft.red_concrete", + "english_translation": "Red Concrete" + }, + { + "key": "debug.chunk_boundaries.off", + "english_translation": "Chunk borders: hidden" + }, + { + "key": "gamerule.commandModificationBlockLimit", + "english_translation": "Command Modification Block Limit" + }, + { + "key": "gui.banned.reason.imminent_harm_to_person_or_property", + "english_translation": "Intent to cause real-life harm to persons or property" + }, + { + "key": "block.minecraft.cactus", + "english_translation": "Cactus" + }, + { + "key": "chat.type.team.hover", + "english_translation": "Message Team" + }, + { + "key": "block.minecraft.dark_oak_wall_sign", + "english_translation": "Dark Oak Wall Sign" + }, + { + "key": "container.upgrade.error_tooltip", + "english_translation": "Item can't be upgraded this way" + }, + { + "key": "subtitles.entity.glow_item_frame.break", + "english_translation": "Glow Item Frame breaks" + }, + { + "key": "block.minecraft.red_nether_brick_stairs", + "english_translation": "Red Nether Brick Stairs" + }, + { + "key": "block.minecraft.diamond_ore", + "english_translation": "Diamond Ore" + }, + { + "key": "commands.kick.success", + "english_translation": "Kicked %s: %s" + }, + { + "key": "key.keyboard.keypad.subtract", + "english_translation": "Keypad -" + }, + { + "key": "block.minecraft.potted_torchflower", + "english_translation": "Potted Torchflower" + }, + { + "key": "commands.forceload.toobig", + "english_translation": "Too many chunks in the specified area (maximum %s, specified %s)" + }, + { + "key": "item.minecraft.leather", + "english_translation": "Leather" + }, + { + "key": "key.categories.inventory", + "english_translation": "Inventory" + }, + { + "key": "painting.minecraft.pool.title", + "english_translation": "The Pool" + }, + { + "key": "multiplayer.disconnect.duplicate_login", + "english_translation": "You logged in from another location" + }, + { + "key": "createWorld.customize.custom.presets", + "english_translation": "Presets" + }, + { + "key": "options.particles.decreased", + "english_translation": "Decreased" + }, + { + "key": "block.minecraft.banner.stripe_left.orange", + "english_translation": "Orange Pale Dexter" + }, + { + "key": "optimizeWorld.confirm.title", + "english_translation": "Optimize World" + }, + { + "key": "merchant.level.4", + "english_translation": "Expert" + }, + { + "key": "merchant.level.5", + "english_translation": "Master" + }, + { + "key": "merchant.level.2", + "english_translation": "Apprentice" + }, + { + "key": "merchant.level.3", + "english_translation": "Journeyman" + }, + { + "key": "block.minecraft.banner.stripe_middle.lime", + "english_translation": "Lime Fess" + }, + { + "key": "merchant.level.1", + "english_translation": "Novice" + }, + { + "key": "commands.item.target.not_a_container", + "english_translation": "Target position %s, %s, %s is not a container" + }, + { + "key": "block.minecraft.warped_fungus", + "english_translation": "Warped Fungus" + }, + { + "key": "deathScreen.spectate", + "english_translation": "Spectate World" + }, + { + "key": "item.minecraft.firework_star.shape.creeper", + "english_translation": "Creeper-shaped" + }, + { + "key": "block.minecraft.birch_log", + "english_translation": "Birch Log" + }, + { + "key": "predicate.unknown", + "english_translation": "Unknown predicate: %s" + }, + { + "key": "block.minecraft.waxed_oxidized_cut_copper_slab", + "english_translation": "Waxed Oxidized Cut Copper Slab" + }, + { + "key": "advancements.adventure.whos_the_pillager_now.title", + "english_translation": "Who's the Pillager Now?" + }, + { + "key": "subtitles.block.sculk_shrieker.shriek", + "english_translation": "Sculk Shrieker shrieks" + }, + { + "key": "block.minecraft.diorite", + "english_translation": "Diorite" + }, + { + "key": "subtitles.entity.glow_squid.death", + "english_translation": "Glow Squid dies" + }, + { + "key": "mco.minigame.world.changeButton", + "english_translation": "Select another minigame" + }, + { + "key": "debug.clear_chat.help", + "english_translation": "F3 + D = Clear chat" + }, + { + "key": "item.minecraft.parrot_spawn_egg", + "english_translation": "Parrot Spawn Egg" + }, + { + "key": "options.fullscreen.current", + "english_translation": "Current" + }, + { + "key": "stat.minecraft.junk_fished", + "english_translation": "Junk Fished" + }, + { + "key": "subtitles.entity.skeleton.ambient", + "english_translation": "Skeleton rattles" + }, + { + "key": "commands.whitelist.none", + "english_translation": "There are no whitelisted players" + }, + { + "key": "block.minecraft.banner.base.orange", + "english_translation": "Fully Orange Field" + }, + { + "key": "selectWorld.backupWarning.customized", + "english_translation": "Unfortunately, we do not support customized worlds in this version of Minecraft. We can still load this world and keep everything the way it was, but any newly generated terrain will no longer be customized. We're sorry for the inconvenience!" + }, + { + "key": "trim_pattern.minecraft.dune", + "english_translation": "Dune Armor Trim" + }, + { + "key": "advancements.story.mine_stone.title", + "english_translation": "Stone Age" + }, + { + "key": "advancements.husbandry.allay_deliver_item_to_player.title", + "english_translation": "You've Got a Friend in Me" + }, + { + "key": "mco.upload.cancelled", + "english_translation": "Upload cancelled" + }, + { + "key": "entity.minecraft.tropical_fish.type.kob", + "english_translation": "Kob" + }, + { + "key": "block.minecraft.composter", + "english_translation": "Composter" + }, + { + "key": "death.attack.onFire", + "english_translation": "%1$s burned to death" + }, + { + "key": "item.minecraft.iron_shovel", + "english_translation": "Iron Shovel" + }, + { + "key": "block.minecraft.stripped_warped_hyphae", + "english_translation": "Stripped Warped Hyphae" + }, + { + "key": "chat.copy.click", + "english_translation": "Click to Copy to Clipboard" + }, + { + "key": "item.minecraft.wooden_hoe", + "english_translation": "Wooden Hoe" + }, + { + "key": "enchantment.minecraft.blast_protection", + "english_translation": "Blast Protection" + }, + { + "key": "entity.minecraft.squid", + "english_translation": "Squid" + }, + { + "key": "container.enchant.level.many", + "english_translation": "%s Enchantment Levels" + }, + { + "key": "item.minecraft.smithing_template.armor_trim.base_slot_description", + "english_translation": "Add a piece of armor" + }, + { + "key": "item.minecraft.lingering_potion.effect.strength", + "english_translation": "Lingering Potion of Strength" + }, + { + "key": "advancements.nether.distract_piglin.description", + "english_translation": "Distract Piglins with gold" + }, + { + "key": "block.minecraft.banner.diagonal_left.orange", + "english_translation": "Orange Per Bend Sinister" + }, + { + "key": "narration.slider.usage.focused", + "english_translation": "Press left or right keyboard buttons to change value" + }, + { + "key": "commands.team.add.duplicate", + "english_translation": "A team already exists by that name" + }, + { + "key": "mco.configure.world.spawn_toggle.message.npc", + "english_translation": "Turning this option off will REMOVE ALL existing entities of that type, like Villagers" + }, + { + "key": "commands.scoreboard.players.reset.all.single", + "english_translation": "Reset all scores for %s" + }, + { + "key": "multiplayer.disconnect.banned_ip.expiration", + "english_translation": "\nYour ban will be removed on %s" + }, + { + "key": "structure_block.button.load", + "english_translation": "LOAD" + }, + { + "key": "block.minecraft.bubble_coral", + "english_translation": "Bubble Coral" + }, + { + "key": "commands.banip.success", + "english_translation": "Banned IP %s: %s" + }, + { + "key": "item.minecraft.tipped_arrow.effect.invisibility", + "english_translation": "Arrow of Invisibility" + }, + { + "key": "subtitles.item.lodestone_compass.lock", + "english_translation": "Lodestone Compass locks onto Lodestone" + }, + { + "key": "biome.minecraft.jungle", + "english_translation": "Jungle" + }, + { + "key": "item.minecraft.glow_ink_sac", + "english_translation": "Glow Ink Sac" + }, + { + "key": "entity.minecraft.piglin", + "english_translation": "Piglin" + }, + { + "key": "block.minecraft.banner.stripe_top.green", + "english_translation": "Green Chief" + }, + { + "key": "item.minecraft.lingering_potion.effect.poison", + "english_translation": "Lingering Potion of Poison" + }, + { + "key": "block.minecraft.banner.base.lime", + "english_translation": "Fully Lime Field" + }, + { + "key": "selectWorld.createDemo", + "english_translation": "Play New Demo World" + }, + { + "key": "subtitles.entity.mule.eat", + "english_translation": "Mule eats" + }, + { + "key": "gui.recipebook.toggleRecipes.craftable", + "english_translation": "Showing Craftable" + }, + { + "key": "stat.minecraft.pot_flower", + "english_translation": "Plants Potted" + }, + { + "key": "block.minecraft.banner.square_bottom_right.light_blue", + "english_translation": "Light Blue Base Sinister Canton" + }, + { + "key": "block.minecraft.banner.triangle_top.pink", + "english_translation": "Pink Inverted Chevron" + }, + { + "key": "item.minecraft.iron_leggings", + "english_translation": "Iron Leggings" + }, + { + "key": "block.minecraft.light_blue_shulker_box", + "english_translation": "Light Blue Shulker Box" + }, + { + "key": "block.minecraft.yellow_shulker_box", + "english_translation": "Yellow Shulker Box" + }, + { + "key": "options.graphics.fast.tooltip", + "english_translation": "Fast graphics reduces the amount of visible rain and snow.\nTransparency effects are disabled for various blocks such as leaves." + }, + { + "key": "itemGroup.combat", + "english_translation": "Combat" + }, + { + "key": "chat.square_brackets", + "english_translation": "[%s]" + }, + { + "key": "entity.minecraft.tropical_fish.type.betty", + "english_translation": "Betty" + }, + { + "key": "block.minecraft.deepslate_brick_stairs", + "english_translation": "Deepslate Brick Stairs" + }, + { + "key": "item.minecraft.potion.effect.night_vision", + "english_translation": "Potion of Night Vision" + }, + { + "key": "mco.configure.world.edit.subscreen.experience", + "english_translation": "Some settings are disabled since your current world is an experience" + }, + { + "key": "selectServer.deleteQuestion", + "english_translation": "Are you sure you want to remove this server?" + }, + { + "key": "mco.configure.world.resourcepack.question.line1", + "english_translation": "You need a custom resource pack to play on this realm" + }, + { + "key": "mco.reset.world.resetting.screen.title", + "english_translation": "Resetting world..." + }, + { + "key": "mco.configure.world.resourcepack.question.line2", + "english_translation": "Do you want to download it and play?" + }, + { + "key": "advancements.adventure.root.title", + "english_translation": "Adventure" + }, + { + "key": "subtitles.entity.generic.explode", + "english_translation": "Explosion" + }, + { + "key": "multiplayer.disconnect.not_whitelisted", + "english_translation": "You are not white-listed on this server!" + }, + { + "key": "block.minecraft.banner.stripe_center.purple", + "english_translation": "Purple Pale" + }, + { + "key": "block.minecraft.chiseled_red_sandstone", + "english_translation": "Chiseled Red Sandstone" + }, + { + "key": "debug.gamemodes.error", + "english_translation": "Unable to open game mode switcher; no permission" + }, + { + "key": "commands.worldborder.set.immediate", + "english_translation": "Set the world border to %s block(s) wide" + }, + { + "key": "team.visibility.never", + "english_translation": "Never" + }, + { + "key": "subtitles.entity.glow_item_frame.place", + "english_translation": "Glow Item Frame placed" + }, + { + "key": "commands.locate.structure.invalid", + "english_translation": "There is no structure with type \"%s\"" + }, + { + "key": "painting.minecraft.skeleton.title", + "english_translation": "Mortal Coil" + }, + { + "key": "subtitles.entity.shulker.close", + "english_translation": "Shulker closes" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.yellow", + "english_translation": "Yellow Per Fess Inverted" + }, + { + "key": "commands.title.show.subtitle.single", + "english_translation": "Showing new subtitle for %s" + }, + { + "key": "block.minecraft.banner.base.blue", + "english_translation": "Fully Blue Field" + }, + { + "key": "block.minecraft.banner.stripe_left.lime", + "english_translation": "Lime Pale Dexter" + }, + { + "key": "block.minecraft.banner.triangle_bottom.brown", + "english_translation": "Brown Chevron" + }, + { + "key": "stat_type.minecraft.killed_by.none", + "english_translation": "You have never been killed by %s" + }, + { + "key": "subtitles.block.bell.resonate", + "english_translation": "Bell resonates" + }, + { + "key": "block.minecraft.banner.half_vertical_right.orange", + "english_translation": "Orange Per Pale Inverted" + }, + { + "key": "block.minecraft.snow_block", + "english_translation": "Snow Block" + }, + { + "key": "structure_block.mode_info.load", + "english_translation": "Load Mode - Load from File" + }, + { + "key": "item.minecraft.end_crystal", + "english_translation": "End Crystal" + }, + { + "key": "subtitles.item.spyglass.stop_using", + "english_translation": "Spyglass retracts" + }, + { + "key": "container.cartography_table", + "english_translation": "Cartography Table" + }, + { + "key": "block.minecraft.purple_carpet", + "english_translation": "Purple Carpet" + }, + { + "key": "block.minecraft.lava", + "english_translation": "Lava" + }, + { + "key": "parsing.float.expected", + "english_translation": "Expected float" + }, + { + "key": "subtitles.entity.horse.eat", + "english_translation": "Horse eats" + }, + { + "key": "trim_material.minecraft.diamond", + "english_translation": "Diamond Material" + }, + { + "key": "debug.copy_location.message", + "english_translation": "Copied location to clipboard" + }, + { + "key": "block.minecraft.beetroots", + "english_translation": "Beetroots" + }, + { + "key": "telemetry.property.operating_system.title", + "english_translation": "Operating System" + }, + { + "key": "commands.data.modify.expected_list", + "english_translation": "Expected list, got: %s" + }, + { + "key": "entity.not_summonable", + "english_translation": "Can't summon entity of type %s" + }, + { + "key": "subtitles.entity.goat.milk", + "english_translation": "Goat gets milked" + }, + { + "key": "gui.socialInteractions.tab_blocked", + "english_translation": "Blocked" + }, + { + "key": "subtitles.entity.drowned.ambient_water", + "english_translation": "Drowned gurgles" + }, + { + "key": "block.minecraft.banner.triangles_bottom.gray", + "english_translation": "Gray Base Indented" + }, + { + "key": "subtitles.entity.potion.throw", + "english_translation": "Bottle thrown" + }, + { + "key": "commands.place.structure.invalid", + "english_translation": "There is no structure with type \"%s\"" + }, + { + "key": "block.minecraft.barrier", + "english_translation": "Barrier" + }, + { + "key": "item.minecraft.leather_boots", + "english_translation": "Leather Boots" + }, + { + "key": "block.minecraft.waxed_cut_copper_stairs", + "english_translation": "Waxed Cut Copper Stairs" + }, + { + "key": "mco.terms.sentence.2", + "english_translation": "Terms of Service" + }, + { + "key": "mco.terms.sentence.1", + "english_translation": "I agree to the Minecraft Realms" + }, + { + "key": "options.framerateLimit.max", + "english_translation": "Unlimited" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.red", + "english_translation": "Red Per Fess Inverted" + }, + { + "key": "subtitles.block.honey_block.slide", + "english_translation": "Sliding down a honey block" + }, + { + "key": "block.minecraft.banner.border.purple", + "english_translation": "Purple Bordure" + }, + { + "key": "commands.worldborder.set.failed.nochange", + "english_translation": "Nothing changed. The world border is already that size" + }, + { + "key": "item.minecraft.powder_snow_bucket", + "english_translation": "Powder Snow Bucket" + }, + { + "key": "block.minecraft.suspicious_sand", + "english_translation": "Suspicious Sand" + }, + { + "key": "block.minecraft.banner.stripe_left.blue", + "english_translation": "Blue Pale Dexter" + }, + { + "key": "block.minecraft.blackstone", + "english_translation": "Blackstone" + }, + { + "key": "subtitles.entity.hoglin.ambient", + "english_translation": "Hoglin growls" + }, + { + "key": "block.minecraft.warped_wart_block", + "english_translation": "Warped Wart Block" + }, + { + "key": "itemGroup.crafting", + "english_translation": "Crafting" + }, + { + "key": "telemetry.event.world_unloaded.description", + "english_translation": "This event is paired with the World Loaded event to calculate how long the world session has lasted.\nThe duration (in seconds and ticks) is measured when a world session has ended (quitting to title, disconnecting from a server)." + }, + { + "key": "language.name", + "english_translation": "English" + }, + { + "key": "block.minecraft.banner.piglin.cyan", + "english_translation": "Cyan Snout" + }, + { + "key": "subtitles.entity.cod.hurt", + "english_translation": "Cod hurts" + }, + { + "key": "block.minecraft.banner.straight_cross.magenta", + "english_translation": "Magenta Cross" + }, + { + "key": "block.minecraft.tube_coral_wall_fan", + "english_translation": "Tube Coral Wall Fan" + }, + { + "key": "subtitles.block.water.ambient", + "english_translation": "Water flows" + }, + { + "key": "entity.minecraft.dragon_fireball", + "english_translation": "Dragon Fireball" + }, + { + "key": "block.minecraft.red_terracotta", + "english_translation": "Red Terracotta" + }, + { + "key": "block.minecraft.polished_blackstone_button", + "english_translation": "Polished Blackstone Button" + }, + { + "key": "entity.minecraft.tropical_fish.type.spotty", + "english_translation": "Spotty" + }, + { + "key": "block.minecraft.coal_block", + "english_translation": "Block of Coal" + }, + { + "key": "block.minecraft.banner.creeper.yellow", + "english_translation": "Yellow Creeper Charge" + }, + { + "key": "painting.minecraft.wasteland.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "subtitles.entity.llama.step", + "english_translation": "Llama steps" + }, + { + "key": "createWorld.customize.custom.useVillages", + "english_translation": "Villages" + }, + { + "key": "death.attack.trident.item", + "english_translation": "%1$s was impaled by %2$s with %3$s" + }, + { + "key": "block.minecraft.banner.stripe_center.light_blue", + "english_translation": "Light Blue Pale" + }, + { + "key": "commands.tag.list.single.empty", + "english_translation": "%s has no tags" + }, + { + "key": "subtitles.entity.piglin.hurt", + "english_translation": "Piglin hurts" + }, + { + "key": "entity.minecraft.axolotl", + "english_translation": "Axolotl" + }, + { + "key": "item.minecraft.raw_gold", + "english_translation": "Raw Gold" + }, + { + "key": "block.minecraft.white_wool", + "english_translation": "White Wool" + }, + { + "key": "block.minecraft.dark_oak_fence", + "english_translation": "Dark Oak Fence" + }, + { + "key": "commands.fill.toobig", + "english_translation": "Too many blocks in the specified area (maximum %s, specified %s)" + }, + { + "key": "multiplayer.disconnect.banned", + "english_translation": "You are banned from this server" + }, + { + "key": "item.minecraft.potion.effect.harming", + "english_translation": "Potion of Harming" + }, + { + "key": "item.minecraft.cookie", + "english_translation": "Cookie" + }, + { + "key": "block.minecraft.banner.square_bottom_right.blue", + "english_translation": "Blue Base Sinister Canton" + }, + { + "key": "block.minecraft.banner.square_top_right.blue", + "english_translation": "Blue Chief Sinister Canton" + }, + { + "key": "createWorld.customize.custom.biomeSize", + "english_translation": "Biome Size" + }, + { + "key": "item.minecraft.leather_leggings", + "english_translation": "Leather Pants" + }, + { + "key": "mco.configure.world.buttons.settings", + "english_translation": "Settings" + }, + { + "key": "block.minecraft.dried_kelp_block", + "english_translation": "Dried Kelp Block" + }, + { + "key": "mco.configure.world.buttons.resetworld", + "english_translation": "Reset world" + }, + { + "key": "block.minecraft.sunflower", + "english_translation": "Sunflower" + }, + { + "key": "block.minecraft.banner.square_bottom_right.black", + "english_translation": "Black Base Sinister Canton" + }, + { + "key": "block.minecraft.redstone_wire", + "english_translation": "Redstone Wire" + }, + { + "key": "item.minecraft.blade_pottery_sherd", + "english_translation": "Blade Pottery Sherd" + }, + { + "key": "block.minecraft.banner.triangles_bottom.black", + "english_translation": "Black Base Indented" + }, + { + "key": "advancements.husbandry.safely_harvest_honey.description", + "english_translation": "Use a Campfire to collect Honey from a Beehive using a Glass Bottle without aggravating the Bees" + }, + { + "key": "menu.returnToMenu", + "english_translation": "Save and Quit to Title" + }, + { + "key": "commands.function.success.multiple.result", + "english_translation": "Executed %s functions" + }, + { + "key": "block.minecraft.banner.creeper.lime", + "english_translation": "Lime Creeper Charge" + }, + { + "key": "options.prioritizeChunkUpdates", + "english_translation": "Chunk Builder" + }, + { + "key": "item.minecraft.potion.effect.water", + "english_translation": "Water Bottle" + }, + { + "key": "item.minecraft.snow_golem_spawn_egg", + "english_translation": "Snow Golem Spawn Egg" + }, + { + "key": "block.minecraft.bamboo_wall_hanging_sign", + "english_translation": "Bamboo Wall Hanging Sign" + }, + { + "key": "book.signButton", + "english_translation": "Sign" + }, + { + "key": "telemetry.property.event_timestamp_utc.title", + "english_translation": "Event Timestamp (UTC)" + }, + { + "key": "subtitles.entity.zombie.hurt", + "english_translation": "Zombie hurts" + }, + { + "key": "subtitles.block.respawn_anchor.set_spawn", + "english_translation": "Respawn Anchor sets spawn" + }, + { + "key": "biome.minecraft.frozen_river", + "english_translation": "Frozen River" + }, + { + "key": "item.minecraft.tipped_arrow.effect.regeneration", + "english_translation": "Arrow of Regeneration" + }, + { + "key": "subtitles.entity.firework_rocket.launch", + "english_translation": "Firework launches" + }, + { + "key": "translation.test.invalid", + "english_translation": "hi %" + }, + { + "key": "item.minecraft.endermite_spawn_egg", + "english_translation": "Endermite Spawn Egg" + }, + { + "key": "subtitles.entity.shulker.hurt", + "english_translation": "Shulker hurts" + }, + { + "key": "block.minecraft.jungle_leaves", + "english_translation": "Jungle Leaves" + }, + { + "key": "subtitles.entity.bee.loop_aggressive", + "english_translation": "Bee buzzes angrily" + }, + { + "key": "createWorld.customize.custom.preset.caveDelight", + "english_translation": "Caver's Delight" + }, + { + "key": "painting.minecraft.kebab.title", + "english_translation": "Kebab med tre pepperoni" + }, + { + "key": "gamerule.category.mobs", + "english_translation": "Mobs" + }, + { + "key": "recipe.toast.title", + "english_translation": "New Recipes Unlocked!" + }, + { + "key": "createWorld.preparing", + "english_translation": "Preparing for world creation..." + }, + { + "key": "block.minecraft.horn_coral_block", + "english_translation": "Horn Coral Block" + }, + { + "key": "key.sneak", + "english_translation": "Sneak" + }, + { + "key": "options.ao", + "english_translation": "Smooth Lighting" + }, + { + "key": "advancements.story.enter_the_nether.description", + "english_translation": "Build, light and enter a Nether Portal" + }, + { + "key": "block.minecraft.banner.square_bottom_right.lime", + "english_translation": "Lime Base Sinister Canton" + }, + { + "key": "block.minecraft.banner.triangle_top.orange", + "english_translation": "Orange Inverted Chevron" + }, + { + "key": "options.modelPart.left_sleeve", + "english_translation": "Left Sleeve" + }, + { + "key": "key.keyboard.right.win", + "english_translation": "Right Win" + }, + { + "key": "block.minecraft.mossy_stone_bricks", + "english_translation": "Mossy Stone Bricks" + }, + { + "key": "options.modelPart.hat", + "english_translation": "Hat" + }, + { + "key": "subtitles.ui.cartography_table.take_result", + "english_translation": "Map drawn" + }, + { + "key": "gameMode.hardcore", + "english_translation": "Hardcore Mode!" + }, + { + "key": "selectWorld.backupJoinSkipButton", + "english_translation": "I know what I'm doing!" + }, + { + "key": "item.minecraft.iron_boots", + "english_translation": "Iron Boots" + }, + { + "key": "narrator.button.difficulty_lock", + "english_translation": "Difficulty lock" + }, + { + "key": "block.minecraft.mossy_stone_brick_wall", + "english_translation": "Mossy Stone Brick Wall" + }, + { + "key": "gui.minutes", + "english_translation": "%s minute(s)" + }, + { + "key": "options.chat.visibility.hidden", + "english_translation": "Hidden" + }, + { + "key": "block.minecraft.banner.small_stripes.white", + "english_translation": "White Paly" + }, + { + "key": "block.minecraft.white_terracotta", + "english_translation": "White Terracotta" + }, + { + "key": "item.minecraft.flower_pot", + "english_translation": "Flower Pot" + }, + { + "key": "block.minecraft.potted_oxeye_daisy", + "english_translation": "Potted Oxeye Daisy" + }, + { + "key": "selectWorld.gameMode.spectator.line2", + "english_translation": "" + }, + { + "key": "selectWorld.gameMode.spectator.line1", + "english_translation": "You can look but don't touch" + }, + { + "key": "block.minecraft.banner.creeper.blue", + "english_translation": "Blue Creeper Charge" + }, + { + "key": "pack.name.fabricMod", + "english_translation": "Fabric Mod \"%s\"" + }, + { + "key": "key.hotbar.8", + "english_translation": "Hotbar Slot 8" + }, + { + "key": "commands.publish.success", + "english_translation": "Multiplayer game is now hosted on port %s" + }, + { + "key": "key.hotbar.7", + "english_translation": "Hotbar Slot 7" + }, + { + "key": "key.hotbar.6", + "english_translation": "Hotbar Slot 6" + }, + { + "key": "key.hotbar.5", + "english_translation": "Hotbar Slot 5" + }, + { + "key": "subtitles.entity.evoker.cast_spell", + "english_translation": "Evoker casts spell" + }, + { + "key": "key.hotbar.4", + "english_translation": "Hotbar Slot 4" + }, + { + "key": "key.hotbar.3", + "english_translation": "Hotbar Slot 3" + }, + { + "key": "key.hotbar.2", + "english_translation": "Hotbar Slot 2" + }, + { + "key": "key.hotbar.1", + "english_translation": "Hotbar Slot 1" + }, + { + "key": "mco.configure.world.backup", + "english_translation": "World backups" + }, + { + "key": "block.minecraft.banner.globe.gray", + "english_translation": "Gray Globe" + }, + { + "key": "itemGroup.hotbar", + "english_translation": "Saved Hotbars" + }, + { + "key": "block.minecraft.banner.skull.red", + "english_translation": "Red Skull Charge" + }, + { + "key": "item.minecraft.mushroom_stew", + "english_translation": "Mushroom Stew" + }, + { + "key": "block.minecraft.banner.gradient.cyan", + "english_translation": "Cyan Gradient" + }, + { + "key": "gui.chatReport.comments", + "english_translation": "Comments" + }, + { + "key": "commands.worldborder.center.failed", + "english_translation": "Nothing changed. The world border is already centered there" + }, + { + "key": "subtitles.entity.sniffer.hurt", + "english_translation": "Sniffer hurts" + }, + { + "key": "key.hotbar.9", + "english_translation": "Hotbar Slot 9" + }, + { + "key": "commands.item.source.no_such_slot", + "english_translation": "The source does not have slot %s" + }, + { + "key": "advancements.nether.distract_piglin.title", + "english_translation": "Oh Shiny" + }, + { + "key": "block.minecraft.quartz_bricks", + "english_translation": "Quartz Bricks" + }, + { + "key": "multiplayer.socialInteractions.not_available", + "english_translation": "Social Interactions are only available in Multiplayer worlds" + }, + { + "key": "block.minecraft.chiseled_quartz_block", + "english_translation": "Chiseled Quartz Block" + }, + { + "key": "subtitles.entity.vex.death", + "english_translation": "Vex dies" + }, + { + "key": "selectWorld.warning.experimental.title", + "english_translation": "Warning! These settings are using experimental features" + }, + { + "key": "spectatorMenu.teleport.prompt", + "english_translation": "Select a player to teleport to" + }, + { + "key": "subtitles.block.decorated_pot.shatter", + "english_translation": "Pot shatters" + }, + { + "key": "tutorial.bundleInsert.title", + "english_translation": "Use a Bundle" + }, + { + "key": "block.minecraft.purple_concrete_powder", + "english_translation": "Purple Concrete Powder" + }, + { + "key": "subtitles.entity.blaze.shoot", + "english_translation": "Blaze shoots" + }, + { + "key": "block.minecraft.bookshelf", + "english_translation": "Bookshelf" + }, + { + "key": "block.minecraft.blue_shulker_box", + "english_translation": "Blue Shulker Box" + }, + { + "key": "subtitles.entity.sniffer.eat", + "english_translation": "Sniffer eats" + }, + { + "key": "death.attack.onFire.item", + "english_translation": "%1$s was burnt to a crisp whilst fighting %2$s wielding %3$s" + }, + { + "key": "item.minecraft.potion.effect.empty", + "english_translation": "Uncraftable Potion" + }, + { + "key": "commands.scoreboard.players.get.null", + "english_translation": "Can't get value of %s for %s; none is set" + }, + { + "key": "mco.time.minutesAgo", + "english_translation": "%1$s minute(s) ago" + }, + { + "key": "death.fell.finish.item", + "english_translation": "%1$s fell too far and was finished by %2$s using %3$s" + }, + { + "key": "createWorld.customize.custom.spread", + "english_translation": "Spread Height" + }, + { + "key": "chat.link.open", + "english_translation": "Open in Browser" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.green", + "english_translation": "Green Per Bend Sinister Inverted" + }, + { + "key": "block.minecraft.banner.gradient_up.magenta", + "english_translation": "Magenta Base Gradient" + }, + { + "key": "menu.shareToLan", + "english_translation": "Open to LAN" + }, + { + "key": "block.minecraft.polished_blackstone_wall", + "english_translation": "Polished Blackstone Wall" + }, + { + "key": "block.minecraft.tripwire_hook", + "english_translation": "Tripwire Hook" + }, + { + "key": "argument.entity.options.dy.description", + "english_translation": "Entities between y and y + dy" + }, + { + "key": "block.minecraft.banner.stripe_middle.light_gray", + "english_translation": "Light Gray Fess" + }, + { + "key": "block.minecraft.smooth_red_sandstone", + "english_translation": "Smooth Red Sandstone" + }, + { + "key": "block.minecraft.candle", + "english_translation": "Candle" + }, + { + "key": "block.minecraft.banner.circle.blue", + "english_translation": "Blue Roundel" + }, + { + "key": "commands.recipe.take.failed", + "english_translation": "No recipes could be forgotten" + }, + { + "key": "mco.errorMessage.realmsService.realmsError", + "english_translation": "Realms (%s):" + }, + { + "key": "item.minecraft.shulker_shell", + "english_translation": "Shulker Shell" + }, + { + "key": "multiplayer.disconnect.invalid_public_key_signature.new", + "english_translation": "Invalid signature for profile public key.\nTry restarting your game." + }, + { + "key": "biome.minecraft.frozen_ocean", + "english_translation": "Frozen Ocean" + }, + { + "key": "commands.datapack.unknown", + "english_translation": "Unknown data pack '%s'" + }, + { + "key": "soundCategory.music", + "english_translation": "Music" + }, + { + "key": "subtitles.entity.villager.work_cartographer", + "english_translation": "Cartographer works" + }, + { + "key": "commands.whitelist.add.failed", + "english_translation": "Player is already whitelisted" + }, + { + "key": "subtitles.entity.player.attack.knockback", + "english_translation": "Knockback attack" + }, + { + "key": "death.attack.even_more_magic", + "english_translation": "%1$s was killed by even more magic" + }, + { + "key": "enchantment.minecraft.fortune", + "english_translation": "Fortune" + }, + { + "key": "mco.template.select.narrate.authors", + "english_translation": "Authors: %s" + }, + { + "key": "death.attack.wither", + "english_translation": "%1$s withered away" + }, + { + "key": "advancements.nether.uneasy_alliance.description", + "english_translation": "Rescue a Ghast from the Nether, bring it safely home to the Overworld... and then kill it" + }, + { + "key": "key.keyboard.tab", + "english_translation": "Tab" + }, + { + "key": "options.biomeBlendRadius.13", + "english_translation": "13x13 (Showoff)" + }, + { + "key": "options.biomeBlendRadius.15", + "english_translation": "15x15 (Maximum)" + }, + { + "key": "gamerule.disableRaids", + "english_translation": "Disable raids" + }, + { + "key": "options.biomeBlendRadius.11", + "english_translation": "11x11 (Extreme)" + }, + { + "key": "subtitles.entity.evoker.hurt", + "english_translation": "Evoker hurts" + }, + { + "key": "structure_block.detect_size", + "english_translation": "Detect Structure Size and Position:" + }, + { + "key": "block.minecraft.end_portal", + "english_translation": "End Portal" + }, + { + "key": "block.minecraft.black_banner", + "english_translation": "Black Banner" + }, + { + "key": "disconnect.loginFailed", + "english_translation": "Failed to log in" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.black", + "english_translation": "Black Per Bend Sinister Inverted" + }, + { + "key": "block.minecraft.tube_coral_block", + "english_translation": "Tube Coral Block" + }, + { + "key": "enchantment.minecraft.channeling", + "english_translation": "Channeling" + }, + { + "key": "subtitles.entity.endermite.ambient", + "english_translation": "Endermite scuttles" + }, + { + "key": "block.minecraft.banner.stripe_left.magenta", + "english_translation": "Magenta Pale Dexter" + }, + { + "key": "block.minecraft.banner.square_top_right.lime", + "english_translation": "Lime Chief Sinister Canton" + }, + { + "key": "createWorld.customize.flat.layer.bottom", + "english_translation": "Bottom - %s" + }, + { + "key": "tutorial.craft_planks.title", + "english_translation": "Craft wooden planks" + }, + { + "key": "item.minecraft.pottery_shard_arms_up", + "english_translation": "Arms Up Pottery Shard" + }, + { + "key": "instrument.minecraft.feel_goat_horn", + "english_translation": "Feel" + }, + { + "key": "subtitles.entity.sniffer.searching", + "english_translation": "Sniffer searches" + }, + { + "key": "item.minecraft.potion.effect.luck", + "english_translation": "Potion of Luck" + }, + { + "key": "block.minecraft.purple_wool", + "english_translation": "Purple Wool" + }, + { + "key": "options.chat.delay", + "english_translation": "Chat Delay: %s seconds" + }, + { + "key": "block.minecraft.yellow_concrete_powder", + "english_translation": "Yellow Concrete Powder" + }, + { + "key": "item.minecraft.potion.effect.thick", + "english_translation": "Thick Potion" + }, + { + "key": "block.minecraft.banner.stripe_left.green", + "english_translation": "Green Pale Dexter" + }, + { + "key": "entity.minecraft.tadpole", + "english_translation": "Tadpole" + }, + { + "key": "item.minecraft.tropical_fish_bucket", + "english_translation": "Bucket of Tropical Fish" + }, + { + "key": "argument.entity.options.z.description", + "english_translation": "z position" + }, + { + "key": "argument.entity.options.limit.toosmall", + "english_translation": "Limit must be at least 1" + }, + { + "key": "gamerule.doDaylightCycle", + "english_translation": "Advance time of day" + }, + { + "key": "block.minecraft.banner.circle.lime", + "english_translation": "Lime Roundel" + }, + { + "key": "block.minecraft.banner.skull.yellow", + "english_translation": "Yellow Skull Charge" + }, + { + "key": "block.minecraft.dirt", + "english_translation": "Dirt" + }, + { + "key": "build.tooHigh", + "english_translation": "Height limit for building is %s" + }, + { + "key": "advancements.nether.charge_respawn_anchor.description", + "english_translation": "Charge a Respawn Anchor to the maximum" + }, + { + "key": "subtitles.item.shield.block", + "english_translation": "Shield blocks" + }, + { + "key": "mco.configure.world.subscription.expired", + "english_translation": "Expired" + }, + { + "key": "container.stonecutter", + "english_translation": "Stonecutter" + }, + { + "key": "commands.title.show.title.single", + "english_translation": "Showing new title for %s" + }, + { + "key": "subtitles.item.glow_ink_sac.use", + "english_translation": "Glow Ink Sac splotches" + }, + { + "key": "telemetry.property.realms_map_content.title", + "english_translation": "Realms Map Content (Minigame Name)" + }, + { + "key": "options.particles", + "english_translation": "Particles" + }, + { + "key": "subtitles.item.bucket.fill", + "english_translation": "Bucket fills" + }, + { + "key": "block.minecraft.white_tulip", + "english_translation": "White Tulip" + }, + { + "key": "gamerule.keepInventory", + "english_translation": "Keep inventory after death" + }, + { + "key": "block.minecraft.banner.stripe_downright.purple", + "english_translation": "Purple Bend" + }, + { + "key": "block.minecraft.banner.creeper.brown", + "english_translation": "Brown Creeper Charge" + }, + { + "key": "block.minecraft.yellow_candle", + "english_translation": "Yellow Candle" + }, + { + "key": "subtitles.entity.parrot.imitate.ghast", + "english_translation": "Parrot cries" + }, + { + "key": "block.minecraft.gray_wool", + "english_translation": "Gray Wool" + }, + { + "key": "gui.banned.reason.hate_terrorism_notorious_figure", + "english_translation": "References to hate groups, terrorist organizations, or notorious figures" + }, + { + "key": "gamerule.doWeatherCycle", + "english_translation": "Update weather" + }, + { + "key": "item.minecraft.firework_star.gray", + "english_translation": "Gray" + }, + { + "key": "debug.copy_location.help", + "english_translation": "F3 + C = Copy location as /tp command, hold F3 + C to crash the game" + }, + { + "key": "gui.abuseReport.send.error_message", + "english_translation": "An error was returned while sending your report:\n'%s'" + }, + { + "key": "createWorld.tab.game.title", + "english_translation": "Game" + }, + { + "key": "gui.chatReport.discard.draft", + "english_translation": "Save as Draft" + }, + { + "key": "subtitles.entity.villager.work_butcher", + "english_translation": "Butcher works" + }, + { + "key": "trim_pattern.minecraft.host", + "english_translation": "Host Armor Trim" + }, + { + "key": "block.minecraft.banner.skull.light_blue", + "english_translation": "Light Blue Skull Charge" + }, + { + "key": "recipe.toast.description", + "english_translation": "Check your recipe book" + }, + { + "key": "item.minecraft.leather_horse_armor", + "english_translation": "Leather Horse Armor" + }, + { + "key": "block.minecraft.banner.stripe_downleft.magenta", + "english_translation": "Magenta Bend Sinister" + }, + { + "key": "block.minecraft.soul_campfire", + "english_translation": "Soul Campfire" + }, + { + "key": "block.minecraft.nether_brick_slab", + "english_translation": "Nether Brick Slab" + }, + { + "key": "entity.minecraft.trader_llama", + "english_translation": "Trader Llama" + }, + { + "key": "block.minecraft.nether_wart_block", + "english_translation": "Nether Wart Block" + }, + { + "key": "createWorld.customize.flat.tile", + "english_translation": "Layer Material" + }, + { + "key": "mco.invites.button.accept", + "english_translation": "Accept" + }, + { + "key": "multiplayerWarning.header", + "english_translation": "Caution: Third-Party Online Play" + }, + { + "key": "block.minecraft.granite_wall", + "english_translation": "Granite Wall" + }, + { + "key": "commands.help.failed", + "english_translation": "Unknown command or insufficient permissions" + }, + { + "key": "mco.configure.world.buttons.edit", + "english_translation": "Settings" + }, + { + "key": "multiplayer.status.and_more", + "english_translation": "... and %s more ..." + }, + { + "key": "advMode.setCommand.success", + "english_translation": "Command set: %s" + }, + { + "key": "commands.fillbiome.success", + "english_translation": "Biomes set between %s, %s, %s and %s, %s, %s" + }, + { + "key": "commands.jfr.started", + "english_translation": "JFR profiling started" + }, + { + "key": "container.shulkerBox", + "english_translation": "Shulker Box" + }, + { + "key": "advancements.end.levitate.title", + "english_translation": "Great View From Up Here" + }, + { + "key": "selectWorld.recreate.customized.title", + "english_translation": "Customized worlds are no longer supported" + }, + { + "key": "block.minecraft.crimson_stairs", + "english_translation": "Crimson Stairs" + }, + { + "key": "item.minecraft.music_disc_chirp.desc", + "english_translation": "C418 - chirp" + }, + { + "key": "createWorld.customize.custom.lavaLakeChance", + "english_translation": "Lava Lake Rarity" + }, + { + "key": "block.minecraft.cobbled_deepslate_stairs", + "english_translation": "Cobbled Deepslate Stairs" + }, + { + "key": "block.minecraft.tripwire", + "english_translation": "Tripwire" + }, + { + "key": "enchantment.minecraft.infinity", + "english_translation": "Infinity" + }, + { + "key": "telemetry.event.optional", + "english_translation": "%s (Optional)" + }, + { + "key": "block.minecraft.lever", + "english_translation": "Lever" + }, + { + "key": "block.minecraft.oak_stairs", + "english_translation": "Oak Stairs" + }, + { + "key": "death.attack.outsideBorder", + "english_translation": "%1$s left the confines of this world" + }, + { + "key": "options.narrator.notavailable", + "english_translation": "Not Available" + }, + { + "key": "subtitles.entity.wandering_trader.trade", + "english_translation": "Wandering Trader trades" + }, + { + "key": "argument.entity.selector.allEntities", + "english_translation": "All entities" + }, + { + "key": "container.lectern", + "english_translation": "Lectern" + }, + { + "key": "subtitles.entity.cat.hurt", + "english_translation": "Cat hurts" + }, + { + "key": "block.minecraft.sandstone_stairs", + "english_translation": "Sandstone Stairs" + }, + { + "key": "subtitles.entity.horse.death", + "english_translation": "Horse dies" + }, + { + "key": "block.minecraft.polished_blackstone_brick_stairs", + "english_translation": "Polished Blackstone Brick Stairs" + }, + { + "key": "advancements.husbandry.balanced_diet.title", + "english_translation": "A Balanced Diet" + }, + { + "key": "subtitles.item.trident.riptide", + "english_translation": "Trident zooms" + }, + { + "key": "block.minecraft.beacon.primary", + "english_translation": "Primary Power" + }, + { + "key": "block.minecraft.banner.stripe_top.gray", + "english_translation": "Gray Chief" + }, + { + "key": "block.minecraft.acacia_wall_sign", + "english_translation": "Acacia Wall Sign" + }, + { + "key": "createWorld.customize.buffet.biome", + "english_translation": "Please select a biome" + }, + { + "key": "subtitles.entity.sniffer.digging_stop", + "english_translation": "Sniffer stands up" + }, + { + "key": "item.minecraft.pink_dye", + "english_translation": "Pink Dye" + }, + { + "key": "item.minecraft.coal", + "english_translation": "Coal" + }, + { + "key": "entity.minecraft.evoker_fangs", + "english_translation": "Evoker Fangs" + }, + { + "key": "options.simulationDistance", + "english_translation": "Simulation Distance" + }, + { + "key": "block.minecraft.banner.circle.light_gray", + "english_translation": "Light Gray Roundel" + }, + { + "key": "block.minecraft.dead_brain_coral_wall_fan", + "english_translation": "Dead Brain Coral Wall Fan" + }, + { + "key": "block.minecraft.magenta_shulker_box", + "english_translation": "Magenta Shulker Box" + }, + { + "key": "death.attack.arrow.item", + "english_translation": "%1$s was shot by %2$s using %3$s" + }, + { + "key": "subtitles.entity.vindicator.ambient", + "english_translation": "Vindicator mutters" + }, + { + "key": "block.minecraft.infested_cobblestone", + "english_translation": "Infested Cobblestone" + }, + { + "key": "enchantment.minecraft.silk_touch", + "english_translation": "Silk Touch" + }, + { + "key": "block.minecraft.tube_coral", + "english_translation": "Tube Coral" + }, + { + "key": "item.minecraft.creeper_spawn_egg", + "english_translation": "Creeper Spawn Egg" + }, + { + "key": "options.on", + "english_translation": "ON" + }, + { + "key": "advancements.husbandry.plant_seed.description", + "english_translation": "Plant a seed and watch it grow" + }, + { + "key": "block.minecraft.banner.diagonal_right.light_blue", + "english_translation": "Light Blue Per Bend" + }, + { + "key": "gamerule.forgiveDeadPlayers", + "english_translation": "Forgive dead players" + }, + { + "key": "commands.save.disabled", + "english_translation": "Automatic saving is now disabled" + }, + { + "key": "block.minecraft.banner.stripe_center.black", + "english_translation": "Black Pale" + }, + { + "key": "commands.tag.add.failed", + "english_translation": "Target either already has the tag or has too many tags" + }, + { + "key": "subtitles.entity.camel.ambient", + "english_translation": "Camel grunts" + }, + { + "key": "item.minecraft.friend_pottery_sherd", + "english_translation": "Friend Pottery Sherd" + }, + { + "key": "mco.upload.select.world.title", + "english_translation": "Upload world" + }, + { + "key": "subtitles.entity.villager.work_weaponsmith", + "english_translation": "Weaponsmith works" + }, + { + "key": "effect.minecraft.dolphins_grace", + "english_translation": "Dolphin's Grace" + }, + { + "key": "mco.minigame.world.info.line1", + "english_translation": "This will temporarily replace your world with a minigame!" + }, + { + "key": "gameMode.creative", + "english_translation": "Creative Mode" + }, + { + "key": "item.minecraft.chorus_fruit", + "english_translation": "Chorus Fruit" + }, + { + "key": "mco.minigame.world.info.line2", + "english_translation": "You can later return to your original world without losing anything." + }, + { + "key": "advancements.adventure.trade.description", + "english_translation": "Successfully trade with a Villager" + }, + { + "key": "options.fov", + "english_translation": "FOV" + }, + { + "key": "block.minecraft.banner.stripe_left.black", + "english_translation": "Black Pale Dexter" + }, + { + "key": "block.minecraft.banner.triangles_bottom.green", + "english_translation": "Green Base Indented" + }, + { + "key": "debug.inspect.server.entity", + "english_translation": "Copied server-side entity data to clipboard" + }, + { + "key": "item.minecraft.flint", + "english_translation": "Flint" + }, + { + "key": "selectWorld.cheats", + "english_translation": "Cheats" + }, + { + "key": "block.minecraft.polished_deepslate", + "english_translation": "Polished Deepslate" + }, + { + "key": "subtitles.entity.parrot.imitate.elder_guardian", + "english_translation": "Parrot moans" + }, + { + "key": "item.minecraft.explorer_pottery_sherd", + "english_translation": "Explorer Pottery Sherd" + }, + { + "key": "key.keyboard.right", + "english_translation": "Right Arrow" + }, + { + "key": "stat.minecraft.time_since_rest", + "english_translation": "Time Since Last Rest" + }, + { + "key": "title.multiplayer.realms", + "english_translation": "Multiplayer (Realms)" + }, + { + "key": "addServer.resourcePack.disabled", + "english_translation": "Disabled" + }, + { + "key": "advancements.nether.explore_nether.title", + "english_translation": "Hot Tourist Destinations" + }, + { + "key": "block.minecraft.banner.triangle_bottom.orange", + "english_translation": "Orange Chevron" + }, + { + "key": "block.minecraft.banner.half_vertical.blue", + "english_translation": "Blue Per Pale" + }, + { + "key": "debug.prefix", + "english_translation": "[Debug]:" + }, + { + "key": "stat.minecraft.time_since_death", + "english_translation": "Time Since Last Death" + }, + { + "key": "subtitles.block.lava.extinguish", + "english_translation": "Lava hisses" + }, + { + "key": "block.minecraft.banner.square_bottom_right.orange", + "english_translation": "Orange Base Sinister Canton" + }, + { + "key": "mco.upload.uploading", + "english_translation": "Uploading '%s'" + }, + { + "key": "options.chat.links.prompt", + "english_translation": "Prompt on Links" + }, + { + "key": "block.minecraft.banner.stripe_center.green", + "english_translation": "Green Pale" + }, + { + "key": "block.minecraft.banner.half_horizontal.orange", + "english_translation": "Orange Per Fess" + }, + { + "key": "gui.back", + "english_translation": "Back" + }, + { + "key": "death.attack.dryout", + "english_translation": "%1$s died from dehydration" + }, + { + "key": "biome.minecraft.sparse_jungle", + "english_translation": "Sparse Jungle" + }, + { + "key": "subtitles.entity.shulker.teleport", + "english_translation": "Shulker teleports" + }, + { + "key": "advancements.story.iron_tools.description", + "english_translation": "Upgrade your Pickaxe" + }, + { + "key": "argument.entity.selector.nearestPlayer", + "english_translation": "Nearest player" + }, + { + "key": "item.minecraft.bucket", + "english_translation": "Bucket" + }, + { + "key": "structure_block.structure_name", + "english_translation": "Structure Name" + }, + { + "key": "commands.scoreboard.players.operation.success.multiple", + "english_translation": "Updated %s for %s entities" + }, + { + "key": "argument.gamemode.invalid", + "english_translation": "Unknown game mode: %s" + }, + { + "key": "block.minecraft.banner.small_stripes.black", + "english_translation": "Black Paly" + }, + { + "key": "block.minecraft.yellow_glazed_terracotta", + "english_translation": "Yellow Glazed Terracotta" + }, + { + "key": "block.minecraft.brown_shulker_box", + "english_translation": "Brown Shulker Box" + }, + { + "key": "block.minecraft.lily_of_the_valley", + "english_translation": "Lily of the Valley" + }, + { + "key": "block.minecraft.twisting_vines", + "english_translation": "Twisting Vines" + }, + { + "key": "block.minecraft.banner.bricks.pink", + "english_translation": "Pink Field Masoned" + }, + { + "key": "subtitles.entity.player.hurt", + "english_translation": "Player hurts" + }, + { + "key": "subtitles.ui.loom.take_result", + "english_translation": "Loom used" + }, + { + "key": "gui.socialInteractions.server_label.single", + "english_translation": "%s - %s player" + }, + { + "key": "commands.stopsound.success.sourceless.sound", + "english_translation": "Stopped sound '%s'" + }, + { + "key": "mco.backup.entry.gameDifficulty", + "english_translation": "Game Difficulty" + }, + { + "key": "block.minecraft.banner.gradient_up.yellow", + "english_translation": "Yellow Base Gradient" + }, + { + "key": "subtitles.entity.panda.aggressive_ambient", + "english_translation": "Panda huffs" + }, + { + "key": "argument.scoreHolder.empty", + "english_translation": "No relevant score holders could be found" + }, + { + "key": "advMode.nearestPlayer", + "english_translation": "Use \"@p\" to target nearest player" + }, + { + "key": "block.minecraft.crimson_hanging_sign", + "english_translation": "Crimson Hanging Sign" + }, + { + "key": "advancements.nether.obtain_blaze_rod.title", + "english_translation": "Into Fire" + }, + { + "key": "block.minecraft.banner.straight_cross.yellow", + "english_translation": "Yellow Cross" + }, + { + "key": "advancements.story.root.title", + "english_translation": "Minecraft" + }, + { + "key": "block.minecraft.pumpkin_stem", + "english_translation": "Pumpkin Stem" + }, + { + "key": "argument.nbt.expected.key", + "english_translation": "Expected key" + }, + { + "key": "stat.minecraft.traded_with_villager", + "english_translation": "Traded with Villagers" + }, + { + "key": "mco.download.done", + "english_translation": "Download done" + }, + { + "key": "subtitles.entity.horse.jump", + "english_translation": "Horse jumps" + }, + { + "key": "item.minecraft.poisonous_potato", + "english_translation": "Poisonous Potato" + }, + { + "key": "options.difficulty.normal", + "english_translation": "Normal" + }, + { + "key": "options.darkMojangStudiosBackgroundColor.tooltip", + "english_translation": "Changes the Mojang Studios loading screen background color to black." + }, + { + "key": "block.minecraft.banner.stripe_right.purple", + "english_translation": "Purple Pale Sinister" + }, + { + "key": "block.minecraft.banner.half_vertical.lime", + "english_translation": "Lime Per Pale" + }, + { + "key": "argument.entity.options.scores.description", + "english_translation": "Entities with scores" + }, + { + "key": "block.minecraft.banner.piglin.yellow", + "english_translation": "Yellow Snout" + }, + { + "key": "painting.minecraft.fighters.title", + "english_translation": "Fighters" + }, + { + "key": "selectWorld.gameMode.hardcore.info", + "english_translation": "Survival Mode locked to 'Hard' difficulty. You can't respawn if you die." + }, + { + "key": "subtitles.entity.illusioner.cast_spell", + "english_translation": "Illusioner casts spell" + }, + { + "key": "debug.help.help", + "english_translation": "F3 + Q = Show this list" + }, + { + "key": "block.minecraft.magenta_candle_cake", + "english_translation": "Cake with Magenta Candle" + }, + { + "key": "commands.publish.started", + "english_translation": "Local game hosted on port %s" + }, + { + "key": "biome.minecraft.windswept_hills", + "english_translation": "Windswept Hills" + }, + { + "key": "block.minecraft.tube_coral_fan", + "english_translation": "Tube Coral Fan" + }, + { + "key": "death.attack.anvil.player", + "english_translation": "%1$s was squashed by a falling anvil whilst fighting %2$s" + }, + { + "key": "subtitles.entity.ghast.shoot", + "english_translation": "Ghast shoots" + }, + { + "key": "parsing.double.invalid", + "english_translation": "Invalid double '%s'" + }, + { + "key": "subtitles.block.sculk.spread", + "english_translation": "Sculk spreads" + }, + { + "key": "item.minecraft.donkey_spawn_egg", + "english_translation": "Donkey Spawn Egg" + }, + { + "key": "deathScreen.title", + "english_translation": "You Died!" + }, + { + "key": "options.notifications.display_time", + "english_translation": "Notification Time" + }, + { + "key": "structure_block.button.save", + "english_translation": "SAVE" + }, + { + "key": "block.minecraft.banner.small_stripes.cyan", + "english_translation": "Cyan Paly" + }, + { + "key": "block.minecraft.potted_azure_bluet", + "english_translation": "Potted Azure Bluet" + }, + { + "key": "structure_block.mode_info.save", + "english_translation": "Save Mode - Write to File" + }, + { + "key": "options.skinCustomisation", + "english_translation": "Skin Customization..." + }, + { + "key": "gui.socialInteractions.tab_hidden", + "english_translation": "Hidden" + }, + { + "key": "disconnect.loginFailedInfo.invalidSession", + "english_translation": "Invalid session (Try restarting your game and the launcher)" + }, + { + "key": "mco.upload.close.failure", + "english_translation": "Could not close your realm, please try again later" + }, + { + "key": "subtitles.block.anvil.destroy", + "english_translation": "Anvil destroyed" + }, + { + "key": "color.minecraft.purple", + "english_translation": "Purple" + }, + { + "key": "options.touchscreen", + "english_translation": "Touchscreen Mode" + }, + { + "key": "createWorld.customize.custom.useLavaLakes", + "english_translation": "Lava Lakes" + }, + { + "key": "item.minecraft.salmon_spawn_egg", + "english_translation": "Salmon Spawn Egg" + }, + { + "key": "item.minecraft.yellow_dye", + "english_translation": "Yellow Dye" + }, + { + "key": "commands.locate.poi.not_found", + "english_translation": "Could not find a point of interest of type \"%s\" within reasonable distance" + }, + { + "key": "block.minecraft.soul_sand", + "english_translation": "Soul Sand" + }, + { + "key": "stat.minecraft.raid_win", + "english_translation": "Raids Won" + }, + { + "key": "subtitles.entity.donkey.ambient", + "english_translation": "Donkey hee-haws" + }, + { + "key": "death.attack.stalagmite.player", + "english_translation": "%1$s was impaled on a stalagmite whilst fighting %2$s" + }, + { + "key": "item.minecraft.shield.magenta", + "english_translation": "Magenta Shield" + }, + { + "key": "item.minecraft.knowledge_book", + "english_translation": "Knowledge Book" + }, + { + "key": "parsing.quote.expected.end", + "english_translation": "Unclosed quoted string" + }, + { + "key": "item.minecraft.clock", + "english_translation": "Clock" + }, + { + "key": "block.minecraft.banner.mojang.green", + "english_translation": "Green Thing" + }, + { + "key": "block.minecraft.banner.triangle_bottom.blue", + "english_translation": "Blue Chevron" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.20", + "english_translation": "Yellowtail Parrotfish" + }, + { + "key": "item.minecraft.splash_potion.effect.poison", + "english_translation": "Splash Potion of Poison" + }, + { + "key": "block.minecraft.bedrock", + "english_translation": "Bedrock" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.13", + "english_translation": "Queen Angelfish" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.12", + "english_translation": "Parrotfish" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.11", + "english_translation": "Ornate Butterflyfish" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.10", + "english_translation": "Moorish Idol" + }, + { + "key": "advancements.nether.find_bastion.description", + "english_translation": "Enter a Bastion Remnant" + }, + { + "key": "block.minecraft.brown_banner", + "english_translation": "Brown Banner" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.17", + "english_translation": "Threadfin" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.16", + "english_translation": "Red Snapper" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.15", + "english_translation": "Red Lipped Blenny" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.14", + "english_translation": "Red Cichlid" + }, + { + "key": "item.minecraft.tipped_arrow", + "english_translation": "Tipped Arrow" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.19", + "english_translation": "Triggerfish" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.18", + "english_translation": "Tomato Clownfish" + }, + { + "key": "block.minecraft.banner.curly_border.pink", + "english_translation": "Pink Bordure Indented" + }, + { + "key": "block.minecraft.banner.stripe_left.light_blue", + "english_translation": "Light Blue Pale Dexter" + }, + { + "key": "block.minecraft.dead_bubble_coral_wall_fan", + "english_translation": "Dead Bubble Coral Wall Fan" + }, + { + "key": "death.attack.cramming.player", + "english_translation": "%1$s was squashed by %2$s" + }, + { + "key": "block.minecraft.banner.triangles_bottom.orange", + "english_translation": "Orange Base Indented" + }, + { + "key": "block.minecraft.polished_granite_slab", + "english_translation": "Polished Granite Slab" + }, + { + "key": "options.clouds.fancy", + "english_translation": "Fancy" + }, + { + "key": "advancements.end.respawn_dragon.title", + "english_translation": "The End... Again..." + }, + { + "key": "block.minecraft.banner.triangle_bottom.yellow", + "english_translation": "Yellow Chevron" + }, + { + "key": "advancements.husbandry.obtain_sniffer_egg.description", + "english_translation": "Obtain a Sniffer Egg" + }, + { + "key": "block.minecraft.stone_stairs", + "english_translation": "Stone Stairs" + }, + { + "key": "stat.minecraft.total_world_time", + "english_translation": "Time with World Open" + }, + { + "key": "block.minecraft.banner.bricks.purple", + "english_translation": "Purple Field Masoned" + }, + { + "key": "item.minecraft.warped_fungus_on_a_stick", + "english_translation": "Warped Fungus on a Stick" + }, + { + "key": "item.minecraft.music_disc_cat.desc", + "english_translation": "C418 - cat" + }, + { + "key": "item.minecraft.wooden_pickaxe", + "english_translation": "Wooden Pickaxe" + }, + { + "key": "death.attack.thorns", + "english_translation": "%1$s was killed trying to hurt %2$s" + }, + { + "key": "block.minecraft.light_blue_stained_glass_pane", + "english_translation": "Light Blue Stained Glass Pane" + }, + { + "key": "key.back", + "english_translation": "Walk Backwards" + }, + { + "key": "block.minecraft.banner.skull.brown", + "english_translation": "Brown Skull Charge" + }, + { + "key": "item.minecraft.piglin_banner_pattern", + "english_translation": "Banner Pattern" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.light_gray", + "english_translation": "Light Gray Per Bend Inverted" + }, + { + "key": "telemetry_info.screen.title", + "english_translation": "Telemetry Data Collection" + }, + { + "key": "block.minecraft.banner.stripe_downleft.lime", + "english_translation": "Lime Bend Sinister" + }, + { + "key": "commands.datapack.list.enabled.none", + "english_translation": "There are no data packs enabled" + }, + { + "key": "block.minecraft.dead_tube_coral", + "english_translation": "Dead Tube Coral" + }, + { + "key": "subtitles.entity.ravager.ambient", + "english_translation": "Ravager grunts" + }, + { + "key": "advancements.husbandry.wax_off.description", + "english_translation": "Scrape Wax off of a Copper block!" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.cyan", + "english_translation": "Cyan Per Fess Inverted" + }, + { + "key": "commands.execute.conditional.fail_count", + "english_translation": "Test failed, count: %s" + }, + { + "key": "itemGroup.op", + "english_translation": "Operator Utilities" + }, + { + "key": "subtitles.entity.axolotl.hurt", + "english_translation": "Axolotl hurts" + }, + { + "key": "block.minecraft.small_dripleaf", + "english_translation": "Small Dripleaf" + }, + { + "key": "item.minecraft.sugar", + "english_translation": "Sugar" + }, + { + "key": "argument.entity.options.limit.description", + "english_translation": "Maximum number of entities to return" + }, + { + "key": "block.minecraft.banner.curly_border.green", + "english_translation": "Green Bordure Indented" + }, + { + "key": "item.minecraft.music_disc_13.desc", + "english_translation": "C418 - 13" + }, + { + "key": "commands.weather.set.rain", + "english_translation": "Set the weather to rain" + }, + { + "key": "advMode.mode.conditional", + "english_translation": "Conditional" + }, + { + "key": "block.minecraft.blue_candle_cake", + "english_translation": "Cake with Blue Candle" + }, + { + "key": "color.minecraft.pink", + "english_translation": "Pink" + }, + { + "key": "advancements.nether.brew_potion.title", + "english_translation": "Local Brewery" + }, + { + "key": "block.minecraft.mangrove_sign", + "english_translation": "Mangrove Sign" + }, + { + "key": "advancements.adventure.hero_of_the_village.description", + "english_translation": "Successfully defend a village from a raid" + }, + { + "key": "item.minecraft.music_disc_wait", + "english_translation": "Music Disc" + }, + { + "key": "block.minecraft.light_blue_candle_cake", + "english_translation": "Cake with Light Blue Candle" + }, + { + "key": "item.minecraft.firework_star.custom_color", + "english_translation": "Custom" + }, + { + "key": "subtitles.block.sign.waxed_interact_fail", + "english_translation": "Sign wobbles" + }, + { + "key": "death.attack.generic", + "english_translation": "%1$s died" + }, + { + "key": "subtitles.entity.turtle.hurt", + "english_translation": "Turtle hurts" + }, + { + "key": "container.enchant.level.one", + "english_translation": "1 Enchantment Level" + }, + { + "key": "stat.minecraft.use_cauldron", + "english_translation": "Water Taken from Cauldron" + }, + { + "key": "item.minecraft.potion.effect.leaping", + "english_translation": "Potion of Leaping" + }, + { + "key": "subtitles.entity.parrot.ambient", + "english_translation": "Parrot talks" + }, + { + "key": "item.minecraft.potato", + "english_translation": "Potato" + }, + { + "key": "mco.notification.visitUrl.message.default", + "english_translation": "Please visit the link below" + }, + { + "key": "painting.minecraft.wither.title", + "english_translation": "Wither" + }, + { + "key": "gui.chatReport.select_chat", + "english_translation": "Select Chat Messages to Report" + }, + { + "key": "block.minecraft.banner.stripe_right.brown", + "english_translation": "Brown Pale Sinister" + }, + { + "key": "block.minecraft.banner.triangle_bottom.lime", + "english_translation": "Lime Chevron" + }, + { + "key": "subtitles.block.beacon.ambient", + "english_translation": "Beacon hums" + }, + { + "key": "mco.backup.button.upload", + "english_translation": "Upload world" + }, + { + "key": "subtitles.item.armor.equip_iron", + "english_translation": "Iron armor clanks" + }, + { + "key": "block.minecraft.cherry_leaves", + "english_translation": "Cherry Leaves" + }, + { + "key": "subtitles.entity.drowned.hurt", + "english_translation": "Drowned hurts" + }, + { + "key": "advancements.story.upgrade_tools.description", + "english_translation": "Construct a better Pickaxe" + }, + { + "key": "block.minecraft.fire_coral_block", + "english_translation": "Fire Coral Block" + }, + { + "key": "item.minecraft.shield.green", + "english_translation": "Green Shield" + }, + { + "key": "narration.component_list.usage", + "english_translation": "Press Tab to navigate to next element" + }, + { + "key": "argument.entity.options.unterminated", + "english_translation": "Expected end of options" + }, + { + "key": "block.minecraft.small_amethyst_bud", + "english_translation": "Small Amethyst Bud" + }, + { + "key": "mco.configure.world.description", + "english_translation": "Realm description" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.light_blue", + "english_translation": "Light Blue Per Bend Sinister Inverted" + }, + { + "key": "biome.minecraft.grove", + "english_translation": "Grove" + }, + { + "key": "block.minecraft.nether_sprouts", + "english_translation": "Nether Sprouts" + }, + { + "key": "block.minecraft.creeper_wall_head", + "english_translation": "Creeper Wall Head" + }, + { + "key": "debug.reload_resourcepacks.help", + "english_translation": "F3 + T = Reload resource packs" + }, + { + "key": "optimizeWorld.info.total", + "english_translation": "Total chunks: %s" + }, + { + "key": "entity.minecraft.giant", + "english_translation": "Giant" + }, + { + "key": "subtitles.block.fence_gate.toggle", + "english_translation": "Fence Gate creaks" + }, + { + "key": "item.minecraft.smithing_template.applies_to", + "english_translation": "Applies to:" + }, + { + "key": "advancements.husbandry.froglights.title", + "english_translation": "With Our Powers Combined!" + }, + { + "key": "block.minecraft.banner.triangle_top.light_gray", + "english_translation": "Light Gray Inverted Chevron" + }, + { + "key": "block.minecraft.banner.flower.light_gray", + "english_translation": "Light Gray Flower Charge" + }, + { + "key": "block.minecraft.banner.skull.blue", + "english_translation": "Blue Skull Charge" + }, + { + "key": "block.minecraft.green_concrete", + "english_translation": "Green Concrete" + }, + { + "key": "gui.socialInteractions.narration.show", + "english_translation": "Show messages from %s" + }, + { + "key": "argument.pos.missing.double", + "english_translation": "Expected a coordinate" + }, + { + "key": "block.minecraft.potted_brown_mushroom", + "english_translation": "Potted Brown Mushroom" + }, + { + "key": "menu.convertingLevel", + "english_translation": "Converting world" + }, + { + "key": "soundCategory.hostile", + "english_translation": "Hostile Creatures" + }, + { + "key": "block.minecraft.orange_concrete_powder", + "english_translation": "Orange Concrete Powder" + }, + { + "key": "block.minecraft.smithing_table", + "english_translation": "Smithing Table" + }, + { + "key": "mco.configure.world.subscription.start", + "english_translation": "Start date" + }, + { + "key": "stat.minecraft.ring_bell", + "english_translation": "Bells Rung" + }, + { + "key": "selectWorld.gameMode.adventure.info", + "english_translation": "Same as Survival Mode, but blocks can't be added or removed." + }, + { + "key": "subtitles.entity.puffer_fish.blow_out", + "english_translation": "Pufferfish deflates" + }, + { + "key": "item.minecraft.wither_skeleton_spawn_egg", + "english_translation": "Wither Skeleton Spawn Egg" + }, + { + "key": "block.minecraft.banner.triangles_bottom.white", + "english_translation": "White Base Indented" + }, + { + "key": "gui.chatReport.discard.discard", + "english_translation": "Leave and Discard Report" + }, + { + "key": "subtitles.block.tripwire.click", + "english_translation": "Tripwire clicks" + }, + { + "key": "subtitles.entity.cod.flop", + "english_translation": "Cod flops" + }, + { + "key": "entity.minecraft.tropical_fish.predefined.21", + "english_translation": "Yellow Tang" + }, + { + "key": "commands.scoreboard.players.add.success.multiple", + "english_translation": "Added %s to %s for %s entities" + }, + { + "key": "death.fell.killer", + "english_translation": "%1$s was doomed to fall" + }, + { + "key": "item.minecraft.quartz", + "english_translation": "Nether Quartz" + }, + { + "key": "item.modifiers.mainhand", + "english_translation": "When in Main Hand:" + }, + { + "key": "options.graphics.fancy", + "english_translation": "Fancy" + }, + { + "key": "structure_block.save_failure", + "english_translation": "Unable to save structure '%s'" + }, + { + "key": "block.minecraft.banner.square_bottom_right.white", + "english_translation": "White Base Sinister Canton" + }, + { + "key": "structure_block.integrity.seed", + "english_translation": "Structure Seed" + }, + { + "key": "itemGroup.natural", + "english_translation": "Natural Blocks" + }, + { + "key": "subtitles.entity.warden.heartbeat", + "english_translation": "Warden's heart beats" + }, + { + "key": "options.mainHand.right", + "english_translation": "Right" + }, + { + "key": "subtitles.entity.parrot.eats", + "english_translation": "Parrot eats" + }, + { + "key": "mco.template.button.publisher", + "english_translation": "Publisher" + }, + { + "key": "mco.configure.world.close.question.line1", + "english_translation": "Your realm will become unavailable." + }, + { + "key": "mco.configure.world.close.question.line2", + "english_translation": "Are you sure you want to continue?" + }, + { + "key": "block.minecraft.banner.stripe_center.red", + "english_translation": "Red Pale" + }, + { + "key": "subtitles.entity.parrot.imitate.evoker", + "english_translation": "Parrot murmurs" + }, + { + "key": "block.minecraft.banner.curly_border.black", + "english_translation": "Black Bordure Indented" + }, + { + "key": "item.minecraft.prismarine_shard", + "english_translation": "Prismarine Shard" + }, + { + "key": "item.minecraft.slime_spawn_egg", + "english_translation": "Slime Spawn Egg" + }, + { + "key": "options.skinCustomisation.title", + "english_translation": "Skin Customization" + }, + { + "key": "subtitles.entity.parrot.imitate.guardian", + "english_translation": "Parrot moans" + }, + { + "key": "block.minecraft.banner.half_horizontal.blue", + "english_translation": "Blue Per Fess" + }, + { + "key": "block.minecraft.sandstone", + "english_translation": "Sandstone" + }, + { + "key": "multiplayer.unsecureserver.toast.title", + "english_translation": "Chat messages can't be verified" + }, + { + "key": "narration.suggestion", + "english_translation": "Selected suggestion %s out of %s: %s" + }, + { + "key": "entity.minecraft.villager.farmer", + "english_translation": "Farmer" + }, + { + "key": "attribute.modifier.plus.0", + "english_translation": "+%s %s" + }, + { + "key": "gui.abuseReport.reason.terrorism_or_violent_extremism", + "english_translation": "Terrorism or violent extremism" + }, + { + "key": "attribute.modifier.plus.2", + "english_translation": "+%s%% %s" + }, + { + "key": "attribute.modifier.plus.1", + "english_translation": "+%s%% %s" + }, + { + "key": "block.minecraft.banner.triangle_top.green", + "english_translation": "Green Inverted Chevron" + }, + { + "key": "telemetry.property.game_version.title", + "english_translation": "Game Version" + }, + { + "key": "block.minecraft.brown_mushroom", + "english_translation": "Brown Mushroom" + }, + { + "key": "commands.setblock.failed", + "english_translation": "Could not set the block" + }, + { + "key": "block.minecraft.lodestone", + "english_translation": "Lodestone" + }, + { + "key": "commands.item.entity.set.success.single", + "english_translation": "Replaced a slot on %s with %s" + }, + { + "key": "gui.banned.reason.fraud", + "english_translation": "Fraudulent acquisition or use of content" + }, + { + "key": "block.minecraft.stone_brick_wall", + "english_translation": "Stone Brick Wall" + }, + { + "key": "subtitles.entity.llama.swag", + "english_translation": "Llama is decorated" + }, + { + "key": "commands.scoreboard.players.reset.all.multiple", + "english_translation": "Reset all scores for %s entities" + }, + { + "key": "gamerule.tntExplosionDropDecay.description", + "english_translation": "Some of the drops from blocks destroyed by explosions caused by TNT are lost in the explosion." + }, + { + "key": "entity.minecraft.furnace_minecart", + "english_translation": "Minecart with Furnace" + }, + { + "key": "attribute.name.generic.flying_speed", + "english_translation": "Flying Speed" + }, + { + "key": "gui.socialInteractions.tooltip.hide", + "english_translation": "Hide messages" + }, + { + "key": "block.minecraft.soul_fire", + "english_translation": "Soul Fire" + }, + { + "key": "death.fell.accident.generic", + "english_translation": "%1$s fell from a high place" + }, + { + "key": "mco.configure.world.delete.question.line1", + "english_translation": "Your realm will be permanently deleted" + }, + { + "key": "gui.advancements", + "english_translation": "Advancements" + }, + { + "key": "selectWorld.conversion", + "english_translation": "Must be converted!" + }, + { + "key": "item.minecraft.iron_hoe", + "english_translation": "Iron Hoe" + }, + { + "key": "mco.configure.world.delete.question.line2", + "english_translation": "Are you sure you want to continue?" + }, + { + "key": "mco.selectServer.purchase", + "english_translation": "Add Realm" + }, + { + "key": "block.minecraft.magenta_carpet", + "english_translation": "Magenta Carpet" + }, + { + "key": "item.minecraft.shield.black", + "english_translation": "Black Shield" + }, + { + "key": "block.minecraft.banner.piglin.orange", + "english_translation": "Orange Snout" + }, + { + "key": "commands.ride.mount.failure.loop", + "english_translation": "Can't mount entity on itself or any of its passengers" + }, + { + "key": "commands.setworldspawn.success", + "english_translation": "Set the world spawn point to %s, %s, %s [%s]" + }, + { + "key": "commands.pardon.success", + "english_translation": "Unbanned %s" + }, + { + "key": "item.minecraft.music_disc_ward", + "english_translation": "Music Disc" + }, + { + "key": "block.minecraft.blue_orchid", + "english_translation": "Blue Orchid" + }, + { + "key": "menu.savingChunks", + "english_translation": "Saving chunks" + }, + { + "key": "block.minecraft.banner.flower.brown", + "english_translation": "Brown Flower Charge" + }, + { + "key": "commands.jfr.start.failed", + "english_translation": "Failed to start JFR profiling" + }, + { + "key": "stat.mobsButton", + "english_translation": "Mobs" + }, + { + "key": "block.minecraft.banner.stripe_center.brown", + "english_translation": "Brown Pale" + }, + { + "key": "createWorld.customize.custom.seaLevel", + "english_translation": "Sea Level" + }, + { + "key": "block.minecraft.red_candle_cake", + "english_translation": "Cake with Red Candle" + }, + { + "key": "block.minecraft.gray_concrete", + "english_translation": "Gray Concrete" + }, + { + "key": "mco.minigame.world.starting.screen.title", + "english_translation": "Starting minigame..." + }, + { + "key": "block.minecraft.light_weighted_pressure_plate", + "english_translation": "Light Weighted Pressure Plate" + }, + { + "key": "subtitles.entity.drowned.death", + "english_translation": "Drowned dies" + }, + { + "key": "commands.bossbar.set.value.unchanged", + "english_translation": "Nothing changed. That's already the value of this bossbar" + }, + { + "key": "block.minecraft.black_stained_glass", + "english_translation": "Black Stained Glass" + }, + { + "key": "entity.minecraft.endermite", + "english_translation": "Endermite" + }, + { + "key": "commands.team.option.collisionRule.success", + "english_translation": "Collision rule for team %s is now \"%s\"" + }, + { + "key": "pack.folderInfo", + "english_translation": "(Place pack files here)" + }, + { + "key": "block.minecraft.banner.stripe_downleft.blue", + "english_translation": "Blue Bend Sinister" + }, + { + "key": "block.minecraft.red_nether_bricks", + "english_translation": "Red Nether Bricks" + }, + { + "key": "block.minecraft.banner.square_top_right.yellow", + "english_translation": "Yellow Chief Sinister Canton" + }, + { + "key": "argument.entity.options.gamemode.description", + "english_translation": "Players with game mode" + }, + { + "key": "lanServer.port.invalid", + "english_translation": "Not a valid port.\nLeave the edit box empty or enter a number between 1024 and 65535." + }, + { + "key": "block.minecraft.banner.half_horizontal.lime", + "english_translation": "Lime Per Fess" + }, + { + "key": "block.minecraft.banner.circle.purple", + "english_translation": "Purple Roundel" + }, + { + "key": "commands.scoreboard.players.list.entity.empty", + "english_translation": "%s has no scores to show" + }, + { + "key": "block.minecraft.emerald_block", + "english_translation": "Block of Emerald" + }, + { + "key": "item.minecraft.pufferfish", + "english_translation": "Pufferfish" + }, + { + "key": "block.minecraft.banner.stripe_downleft.orange", + "english_translation": "Orange Bend Sinister" + }, + { + "key": "enchantment.minecraft.feather_falling", + "english_translation": "Feather Falling" + }, + { + "key": "commands.tag.list.single.success", + "english_translation": "%s has %s tags: %s" + }, + { + "key": "advancements.adventure.kill_a_mob.description", + "english_translation": "Kill any hostile monster" + }, + { + "key": "block.minecraft.smooth_quartz_slab", + "english_translation": "Smooth Quartz Slab" + }, + { + "key": "stat_type.minecraft.picked_up", + "english_translation": "Picked Up" + }, + { + "key": "commands.forceload.added.failure", + "english_translation": "No chunks were marked for force loading" + }, + { + "key": "gamerule.maxCommandChainLength", + "english_translation": "Command chain size limit" + }, + { + "key": "block.minecraft.gold_ore", + "english_translation": "Gold Ore" + }, + { + "key": "block.minecraft.lime_stained_glass_pane", + "english_translation": "Lime Stained Glass Pane" + }, + { + "key": "stat.minecraft.fish_caught", + "english_translation": "Fish Caught" + }, + { + "key": "commands.teleport.success.location.multiple", + "english_translation": "Teleported %s entities to %s, %s, %s" + }, + { + "key": "item.minecraft.pottery_shard_skull", + "english_translation": "Skull Pottery Shard" + }, + { + "key": "options.chat.height.focused", + "english_translation": "Focused Height" + }, + { + "key": "item.minecraft.written_book", + "english_translation": "Written Book" + }, + { + "key": "multiplayer.disconnect.unsigned_chat", + "english_translation": "Received chat packet with missing or invalid signature." + }, + { + "key": "enchantment.minecraft.mending", + "english_translation": "Mending" + }, + { + "key": "item.minecraft.beetroot", + "english_translation": "Beetroot" + }, + { + "key": "gamerule.blockExplosionDropDecay.description", + "english_translation": "Some of the drops from blocks destroyed by explosions caused by block interactions are lost in the explosion." + }, + { + "key": "item.minecraft.string", + "english_translation": "String" + }, + { + "key": "commands.execute.blocks.toobig", + "english_translation": "Too many blocks in the specified area (maximum %s, specified %s)" + }, + { + "key": "subtitles.entity.piglin_brute.converted_to_zombified", + "english_translation": "Piglin Brute converts to Zombified Piglin" + }, + { + "key": "gui.recipebook.toggleRecipes.smokable", + "english_translation": "Showing Smokable" + }, + { + "key": "subtitles.entity.sniffer.sniffing", + "english_translation": "Sniffer sniffs" + }, + { + "key": "stat.minecraft.damage_taken", + "english_translation": "Damage Taken" + }, + { + "key": "block.minecraft.banner.square_bottom_right.red", + "english_translation": "Red Base Sinister Canton" + }, + { + "key": "generator.minecraft.single_biome_surface", + "english_translation": "Single Biome" + }, + { + "key": "createWorld.customize.custom.biomeDepthOffset", + "english_translation": "Biome Depth Offset" + }, + { + "key": "advancements.husbandry.fishy_business.description", + "english_translation": "Catch a fish" + }, + { + "key": "selectServer.deleteButton", + "english_translation": "Delete" + }, + { + "key": "subtitles.entity.evoker.ambient", + "english_translation": "Evoker murmurs" + }, + { + "key": "block.minecraft.pink_stained_glass_pane", + "english_translation": "Pink Stained Glass Pane" + }, + { + "key": "enchantment.minecraft.unbreaking", + "english_translation": "Unbreaking" + }, + { + "key": "item.minecraft.music_disc_blocks", + "english_translation": "Music Disc" + }, + { + "key": "createWorld.customize.custom.upperLimitScale", + "english_translation": "Upper Limit Scale" + }, + { + "key": "item.minecraft.lava_bucket", + "english_translation": "Lava Bucket" + }, + { + "key": "block.minecraft.oak_log", + "english_translation": "Oak Log" + }, + { + "key": "subtitles.entity.glow_squid.ambient", + "english_translation": "Glow Squid swims" + }, + { + "key": "commands.experience.add.levels.success.multiple", + "english_translation": "Gave %s experience levels to %s players" + }, + { + "key": "dataPack.title", + "english_translation": "Select Data Packs" + }, + { + "key": "block.minecraft.jungle_hanging_sign", + "english_translation": "Jungle Hanging Sign" + }, + { + "key": "commands.scoreboard.players.reset.specific.single", + "english_translation": "Reset %s for %s" + }, + { + "key": "item.minecraft.angler_pottery_shard", + "english_translation": "Angler Pottery Shard" + }, + { + "key": "selectWorld.targetFolder", + "english_translation": "Save folder: %s" + }, + { + "key": "mco.configure.world.spawn_toggle.title", + "english_translation": "Warning!" + }, + { + "key": "chat.type.advancement.challenge", + "english_translation": "%s has completed the challenge %s" + }, + { + "key": "createWorld.customize.custom.waterLakeChance", + "english_translation": "Water Lake Rarity" + }, + { + "key": "datapackFailure.safeMode.failed.description", + "english_translation": "This world contains invalid or corrupted save data." + }, + { + "key": "block.minecraft.potted_oak_sapling", + "english_translation": "Potted Oak Sapling" + }, + { + "key": "subtitles.entity.arrow.shoot", + "english_translation": "Arrow fired" + }, + { + "key": "item.durability", + "english_translation": "Durability: %s / %s" + }, + { + "key": "item.minecraft.wither_spawn_egg", + "english_translation": "Wither Spawn Egg" + }, + { + "key": "painting.minecraft.aztec.title", + "english_translation": "de_aztec" + }, + { + "key": "item.minecraft.command_block_minecart", + "english_translation": "Minecart with Command Block" + }, + { + "key": "block.minecraft.honey_block", + "english_translation": "Honey Block" + }, + { + "key": "credits_and_attribution.button.credits", + "english_translation": "Credits" + }, + { + "key": "entity.minecraft.chest_minecart", + "english_translation": "Minecart with Chest" + }, + { + "key": "multiplayer.disconnect.invalid_player_data", + "english_translation": "Invalid player data" + }, + { + "key": "subtitles.entity.piglin.converted_to_zombified", + "english_translation": "Piglin converts to Zombified Piglin" + }, + { + "key": "telemetry.property.render_time_samples.title", + "english_translation": "Render Time Samples" + }, + { + "key": "block.minecraft.lime_terracotta", + "english_translation": "Lime Terracotta" + }, + { + "key": "item.minecraft.shield", + "english_translation": "Shield" + }, + { + "key": "realms.missing.snapshot.error.text", + "english_translation": "Realms is currently not supported in snapshots" + }, + { + "key": "item.minecraft.pottery_shard_prize", + "english_translation": "Prize Pottery Shard" + }, + { + "key": "mco.configure.world.slot.tooltip.active", + "english_translation": "Join" + }, + { + "key": "block.minecraft.repeating_command_block", + "english_translation": "Repeating Command Block" + }, + { + "key": "block.minecraft.chiseled_bookshelf", + "english_translation": "Chiseled Bookshelf" + }, + { + "key": "arguments.block.tag.unknown", + "english_translation": "Unknown block tag '%s'" + }, + { + "key": "block.minecraft.red_nether_brick_wall", + "english_translation": "Red Nether Brick Wall" + }, + { + "key": "commands.worldborder.set.grow", + "english_translation": "Growing the world border to %s blocks wide over %s seconds" + }, + { + "key": "block.minecraft.purple_stained_glass", + "english_translation": "Purple Stained Glass" + }, + { + "key": "subtitles.block.pumpkin.carve", + "english_translation": "Shears carve" + }, + { + "key": "block.minecraft.banner.triangles_bottom.pink", + "english_translation": "Pink Base Indented" + }, + { + "key": "block.minecraft.peony", + "english_translation": "Peony" + }, + { + "key": "narrator.select.world", + "english_translation": "Selected %s, last played: %s, %s, %s, version: %s" + }, + { + "key": "item.minecraft.mojang_banner_pattern", + "english_translation": "Banner Pattern" + }, + { + "key": "commands.recipe.give.success.multiple", + "english_translation": "Unlocked %s recipes for %s players" + }, + { + "key": "commands.forceload.query.failure", + "english_translation": "Chunk at %s in %s is not marked for force loading" + }, + { + "key": "block.minecraft.potted_birch_sapling", + "english_translation": "Potted Birch Sapling" + }, + { + "key": "commands.damage.success", + "english_translation": "Applied %s damage to %s" + }, + { + "key": "advancements.adventure.trade_at_world_height.description", + "english_translation": "Trade with a Villager at the build height limit" + }, + { + "key": "subtitles.chiseled_bookshelf.take_enchanted", + "english_translation": "Enchanted Book taken" + }, + { + "key": "block.minecraft.mud_brick_wall", + "english_translation": "Mud Brick Wall" + }, + { + "key": "subtitles.block.comparator.click", + "english_translation": "Comparator clicks" + }, + { + "key": "subtitles.entity.potion.splash", + "english_translation": "Bottle smashes" + }, + { + "key": "flat_world_preset.minecraft.tunnelers_dream", + "english_translation": "Tunnelers' Dream" + }, + { + "key": "item.minecraft.tipped_arrow.effect.luck", + "english_translation": "Arrow of Luck" + }, + { + "key": "gui.socialInteractions.report", + "english_translation": "Report" + }, + { + "key": "key.keyboard.num.lock", + "english_translation": "Num Lock" + }, + { + "key": "item.minecraft.torchflower_seeds", + "english_translation": "Torchflower Seeds" + }, + { + "key": "selectWorld.edit.backup", + "english_translation": "Make Backup" + }, + { + "key": "item.minecraft.enchanted_golden_apple", + "english_translation": "Enchanted Golden Apple" + }, + { + "key": "subtitles.entity.fox.spit", + "english_translation": "Fox spits" + }, + { + "key": "commands.gamerule.query", + "english_translation": "Gamerule %s is currently set to: %s" + }, + { + "key": "block.minecraft.birch_wall_hanging_sign", + "english_translation": "Birch Wall Hanging Sign" + }, + { + "key": "title.multiplayer.other", + "english_translation": "Multiplayer (3rd-party Server)" + }, + { + "key": "subtitles.item.armor.equip_leather", + "english_translation": "Leather armor rustles" + }, + { + "key": "parsing.bool.invalid", + "english_translation": "Invalid boolean, expected 'true' or 'false' but found '%s'" + }, + { + "key": "subtitles.entity.hoglin.attack", + "english_translation": "Hoglin attacks" + }, + { + "key": "item.minecraft.cocoa_beans", + "english_translation": "Cocoa Beans" + }, + { + "key": "block.minecraft.brown_stained_glass", + "english_translation": "Brown Stained Glass" + }, + { + "key": "multiplayer.disconnect.unverified_username", + "english_translation": "Failed to verify username!" + }, + { + "key": "block.minecraft.mangrove_fence", + "english_translation": "Mangrove Fence" + }, + { + "key": "narration.checkbox.usage.hovered", + "english_translation": "Left click to toggle" + }, + { + "key": "block.minecraft.dead_tube_coral_fan", + "english_translation": "Dead Tube Coral Fan" + }, + { + "key": "block.minecraft.prismarine_stairs", + "english_translation": "Prismarine Stairs" + }, + { + "key": "resourcePack.load_fail", + "english_translation": "Resource reload failed" + }, + { + "key": "mco.configure.world.buttons.invite", + "english_translation": "Invite player" + }, + { + "key": "block.minecraft.cut_red_sandstone_slab", + "english_translation": "Cut Red Sandstone Slab" + }, + { + "key": "block.minecraft.banner.square_bottom_right.green", + "english_translation": "Green Base Sinister Canton" + }, + { + "key": "mco.configure.world.subscription.recurring.info", + "english_translation": "Changes made to your Realms subscription such as stacking time or turning off recurring billing will not be reflected until your next bill date." + }, + { + "key": "key.keyboard.backslash", + "english_translation": "\\" + }, + { + "key": "commands.worldborder.damage.amount.failed", + "english_translation": "Nothing changed. The world border damage is already that amount" + }, + { + "key": "block.minecraft.dead_bush", + "english_translation": "Dead Bush" + }, + { + "key": "translation.test.invalid2", + "english_translation": "hi % s" + }, + { + "key": "telemetry.property.load_time_pre_window_ms.title", + "english_translation": "Time Before Window Opens (Milliseconds)" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.orange", + "english_translation": "Orange Per Fess Inverted" + }, + { + "key": "block.minecraft.banner.half_vertical.yellow", + "english_translation": "Yellow Per Pale" + }, + { + "key": "selectServer.add", + "english_translation": "Add Server" + }, + { + "key": "entity.minecraft.skeleton_horse", + "english_translation": "Skeleton Horse" + }, + { + "key": "subtitles.entity.evoker_fangs.attack", + "english_translation": "Fangs snap" + }, + { + "key": "death.attack.indirectMagic", + "english_translation": "%1$s was killed by %2$s using magic" + }, + { + "key": "options.renderDistance", + "english_translation": "Render Distance" + }, + { + "key": "item.minecraft.music_disc_far.desc", + "english_translation": "C418 - far" + }, + { + "key": "title.multiplayer.disabled.banned.permanent", + "english_translation": "Your account is permanently suspended from online play" + }, + { + "key": "block.minecraft.banner.piglin.gray", + "english_translation": "Gray Snout" + }, + { + "key": "attribute.name.generic.attack_damage", + "english_translation": "Attack Damage" + }, + { + "key": "item.minecraft.netherite_ingot", + "english_translation": "Netherite Ingot" + }, + { + "key": "mco.configure.world.name", + "english_translation": "Realm name" + }, + { + "key": "chat.disabled.expiredProfileKey", + "english_translation": "Chat disabled due to expired profile public key. Please try reconnecting." + }, + { + "key": "advancements.end.levitate.description", + "english_translation": "Levitate up 50 blocks from the attacks of a Shulker" + }, + { + "key": "advancements.story.enchant_item.description", + "english_translation": "Enchant an item at an Enchanting Table" + }, + { + "key": "subtitles.entity.frog.hurt", + "english_translation": "Frog hurts" + }, + { + "key": "block.minecraft.rail", + "english_translation": "Rail" + }, + { + "key": "item.minecraft.stone_axe", + "english_translation": "Stone Axe" + }, + { + "key": "argument.pos.outofbounds", + "english_translation": "That position is outside the allowed boundaries." + }, + { + "key": "block.minecraft.bamboo_wall_sign", + "english_translation": "Bamboo Wall Sign" + }, + { + "key": "item.minecraft.bread", + "english_translation": "Bread" + }, + { + "key": "block.minecraft.banner.triangle_top.white", + "english_translation": "White Inverted Chevron" + }, + { + "key": "mco.configure.world.buttons.options", + "english_translation": "World options" + }, + { + "key": "block.minecraft.jungle_fence_gate", + "english_translation": "Jungle Fence Gate" + }, + { + "key": "multiplayer.status.ping", + "english_translation": "%s ms" + }, + { + "key": "gamerule.doFireTick", + "english_translation": "Update fire" + }, + { + "key": "subtitles.block.conduit.attack.target", + "english_translation": "Conduit attacks" + }, + { + "key": "entity.minecraft.witch", + "english_translation": "Witch" + }, + { + "key": "gamerule.universalAnger.description", + "english_translation": "Angered neutral mobs attack any nearby player, not just the player that angered them. Works best if forgiveDeadPlayers is disabled." + }, + { + "key": "gui.toMenu", + "english_translation": "Back to Server List" + }, + { + "key": "block.minecraft.banner.rhombus.yellow", + "english_translation": "Yellow Lozenge" + }, + { + "key": "block.minecraft.smooth_sandstone", + "english_translation": "Smooth Sandstone" + }, + { + "key": "mco.configure.world.forceGameMode", + "english_translation": "Force game mode" + }, + { + "key": "chat.filtered_full", + "english_translation": "The server has hidden your message for some players." + }, + { + "key": "itemGroup.spawnEggs", + "english_translation": "Spawn Eggs" + }, + { + "key": "debug.crash.warning", + "english_translation": "Crashing in %s..." + }, + { + "key": "advancements.adventure.spyglass_at_dragon.description", + "english_translation": "Look at the Ender Dragon through a Spyglass" + }, + { + "key": "block.minecraft.jungle_wood", + "english_translation": "Jungle Wood" + }, + { + "key": "subtitles.entity.polar_bear.warning", + "english_translation": "Polar Bear roars" + }, + { + "key": "painting.minecraft.fighters.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "entity.minecraft.wither", + "english_translation": "Wither" + }, + { + "key": "item.minecraft.music_disc_stal.desc", + "english_translation": "C418 - stal" + }, + { + "key": "item.minecraft.cow_spawn_egg", + "english_translation": "Cow Spawn Egg" + }, + { + "key": "block.minecraft.reinforced_deepslate", + "english_translation": "Reinforced Deepslate" + }, + { + "key": "subtitles.item.brush.brushing.sand", + "english_translation": "Brushing Sand" + }, + { + "key": "commands.title.show.subtitle.multiple", + "english_translation": "Showing new subtitle for %s players" + }, + { + "key": "item.minecraft.skeleton_spawn_egg", + "english_translation": "Skeleton Spawn Egg" + }, + { + "key": "commands.bossbar.set.style.success", + "english_translation": "Custom bossbar %s has changed style" + }, + { + "key": "container.blast_furnace", + "english_translation": "Blast Furnace" + }, + { + "key": "enchantment.minecraft.respiration", + "english_translation": "Respiration" + }, + { + "key": "block.minecraft.cherry_door", + "english_translation": "Cherry Door" + }, + { + "key": "death.attack.explosion.player", + "english_translation": "%1$s was blown up by %2$s" + }, + { + "key": "subtitles.entity.glow_item_frame.rotate_item", + "english_translation": "Glow Item Frame clicks" + }, + { + "key": "block.minecraft.banner.stripe_center.magenta", + "english_translation": "Magenta Pale" + }, + { + "key": "block.minecraft.mud", + "english_translation": "Mud" + }, + { + "key": "effect.minecraft.luck", + "english_translation": "Luck" + }, + { + "key": "block.minecraft.chiseled_sandstone", + "english_translation": "Chiseled Sandstone" + }, + { + "key": "options.fullscreen", + "english_translation": "Fullscreen" + }, + { + "key": "subtitles.entity.wither.spawn", + "english_translation": "Wither released" + }, + { + "key": "options.difficulty.peaceful", + "english_translation": "Peaceful" + }, + { + "key": "subtitles.entity.hoglin.angry", + "english_translation": "Hoglin growls angrily" + }, + { + "key": "death.attack.hotFloor", + "english_translation": "%1$s discovered the floor was lava" + }, + { + "key": "team.notFound", + "english_translation": "Unknown team '%s'" + }, + { + "key": "selectWorld.enterName", + "english_translation": "World Name" + }, + { + "key": "block.minecraft.infested_stone", + "english_translation": "Infested Stone" + }, + { + "key": "debug.advanced_tooltips.help", + "english_translation": "F3 + H = Advanced tooltips" + }, + { + "key": "subtitles.entity.tropical_fish.hurt", + "english_translation": "Tropical Fish hurts" + }, + { + "key": "death.attack.wither.player", + "english_translation": "%1$s withered away whilst fighting %2$s" + }, + { + "key": "itemGroup.coloredBlocks", + "english_translation": "Colored Blocks" + }, + { + "key": "painting.minecraft.bomb.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "telemetry.property.used_memory_samples.title", + "english_translation": "Used Random Access Memory" + }, + { + "key": "stat.minecraft.horse_one_cm", + "english_translation": "Distance by Horse" + }, + { + "key": "block.minecraft.jigsaw", + "english_translation": "Jigsaw Block" + }, + { + "key": "subtitles.block.respawn_anchor.charge", + "english_translation": "Respawn Anchor is charged" + }, + { + "key": "subtitles.entity.blaze.death", + "english_translation": "Blaze dies" + }, + { + "key": "gui.socialInteractions.empty_hidden", + "english_translation": "No players hidden in chat" + }, + { + "key": "commands.advancement.grant.criterion.to.many.failure", + "english_translation": "Couldn't grant criterion '%s' of advancement %s to %s players as they already have it" + }, + { + "key": "options.graphics.warning.vendor", + "english_translation": "Vendor detected: [%s]" + }, + { + "key": "selectWorld.locked", + "english_translation": "Locked by another running instance of Minecraft" + }, + { + "key": "demo.help.movement", + "english_translation": "Use the %1$s, %2$s, %3$s, %4$s keys and the mouse to move around" + }, + { + "key": "mco.configure.world.invites.ops.tooltip", + "english_translation": "Operator" + }, + { + "key": "block.minecraft.dead_brain_coral_block", + "english_translation": "Dead Brain Coral Block" + }, + { + "key": "gui.abuseReport.reason.child_sexual_exploitation_or_abuse", + "english_translation": "Child sexual exploitation or abuse" + }, + { + "key": "block.minecraft.fire_coral_fan", + "english_translation": "Fire Coral Fan" + }, + { + "key": "generator.minecraft.amplified.info", + "english_translation": "Notice: Just for fun! Requires a beefy computer." + }, + { + "key": "subtitles.entity.dolphin.attack", + "english_translation": "Dolphin attacks" + }, + { + "key": "block.minecraft.acacia_door", + "english_translation": "Acacia Door" + }, + { + "key": "item.minecraft.shield.orange", + "english_translation": "Orange Shield" + }, + { + "key": "block.minecraft.blue_terracotta", + "english_translation": "Blue Terracotta" + }, + { + "key": "block.minecraft.soul_soil", + "english_translation": "Soul Soil" + }, + { + "key": "block.minecraft.orange_stained_glass_pane", + "english_translation": "Orange Stained Glass Pane" + }, + { + "key": "subtitles.entity.villager.work_leatherworker", + "english_translation": "Leatherworker works" + }, + { + "key": "controls.resetAll", + "english_translation": "Reset Keys" + }, + { + "key": "telemetry.event.advancement_made.title", + "english_translation": "Advancement Made" + }, + { + "key": "telemetry.property.opt_in.title", + "english_translation": "Opt-In" + }, + { + "key": "lanServer.port", + "english_translation": "Port Number" + }, + { + "key": "block.minecraft.banner.square_top_left.cyan", + "english_translation": "Cyan Chief Dexter Canton" + }, + { + "key": "item.minecraft.danger_pottery_sherd", + "english_translation": "Danger Pottery Sherd" + }, + { + "key": "block.minecraft.banner.curly_border.white", + "english_translation": "White Bordure Indented" + }, + { + "key": "entity.minecraft.tropical_fish.type.clayfish", + "english_translation": "Clayfish" + }, + { + "key": "block.minecraft.banner.stripe_right.light_gray", + "english_translation": "Light Gray Pale Sinister" + }, + { + "key": "subtitles.block.portal.trigger", + "english_translation": "Portal noise intensifies" + }, + { + "key": "effect.minecraft.mining_fatigue", + "english_translation": "Mining Fatigue" + }, + { + "key": "demo.day.warning", + "english_translation": "Your time is almost up!" + }, + { + "key": "gui.banned.description.temporary", + "english_translation": "%s Until then, you can’t play online or join Realms." + }, + { + "key": "block.minecraft.banner.stripe_left.yellow", + "english_translation": "Yellow Pale Dexter" + }, + { + "key": "key.keyboard.left.control", + "english_translation": "Left Control" + }, + { + "key": "commands.datapack.disable.failed", + "english_translation": "Pack '%s' is not enabled!" + }, + { + "key": "block.minecraft.piglin_wall_head", + "english_translation": "Piglin Wall Head" + }, + { + "key": "block.minecraft.oxidized_cut_copper_stairs", + "english_translation": "Oxidized Cut Copper Stairs" + }, + { + "key": "item.minecraft.firework_star.shape.star", + "english_translation": "Star-shaped" + }, + { + "key": "block.minecraft.wither_skeleton_skull", + "english_translation": "Wither Skeleton Skull" + }, + { + "key": "item.minecraft.raw_copper", + "english_translation": "Raw Copper" + }, + { + "key": "block.minecraft.mangrove_log", + "english_translation": "Mangrove Log" + }, + { + "key": "death.attack.sting", + "english_translation": "%1$s was stung to death" + }, + { + "key": "item.minecraft.silverfish_spawn_egg", + "english_translation": "Silverfish Spawn Egg" + }, + { + "key": "block.minecraft.mangrove_stairs", + "english_translation": "Mangrove Stairs" + }, + { + "key": "subtitles.entity.creeper.hurt", + "english_translation": "Creeper hurts" + }, + { + "key": "structure_block.load_not_found", + "english_translation": "Structure '%s' is not available" + }, + { + "key": "optimizeWorld.stage.failed", + "english_translation": "Failed! :(" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.purple", + "english_translation": "Purple Per Bend Inverted" + }, + { + "key": "key.keyboard.left.win", + "english_translation": "Left Win" + }, + { + "key": "advancements.adventure.walk_on_powder_snow_with_leather_boots.description", + "english_translation": "Walk on Powder Snow... without sinking in it" + }, + { + "key": "block.minecraft.allium", + "english_translation": "Allium" + }, + { + "key": "multiplayer.unsecureserver.toast", + "english_translation": "Messages sent on this server may be modified and might not reflect the original message" + }, + { + "key": "stat.minecraft.inspect_dispenser", + "english_translation": "Dispensers Searched" + }, + { + "key": "block.minecraft.loom", + "english_translation": "Loom" + }, + { + "key": "selectWorld.experimental.details.title", + "english_translation": "Experimental feature requirements" + }, + { + "key": "telemetry.property.dedicated_memory_kb.title", + "english_translation": "Dedicated Memory (kB)" + }, + { + "key": "particle.notFound", + "english_translation": "Unknown particle: %s" + }, + { + "key": "block.minecraft.banner.border.lime", + "english_translation": "Lime Bordure" + }, + { + "key": "subtitles.entity.creeper.death", + "english_translation": "Creeper dies" + }, + { + "key": "block.minecraft.banner.mojang.magenta", + "english_translation": "Magenta Thing" + }, + { + "key": "selectWorld.gameMode.survival.line1", + "english_translation": "Search for resources, craft, gain" + }, + { + "key": "subtitles.entity.piglin_brute.step", + "english_translation": "Piglin Brute steps" + }, + { + "key": "selectWorld.gameMode.survival.line2", + "english_translation": "levels, health and hunger" + }, + { + "key": "trim_pattern.minecraft.wild", + "english_translation": "Wild Armor Trim" + }, + { + "key": "block.minecraft.spawn.not_valid", + "english_translation": "You have no home bed or charged respawn anchor, or it was obstructed" + }, + { + "key": "advancements.nether.obtain_ancient_debris.description", + "english_translation": "Obtain Ancient Debris" + }, + { + "key": "chat.type.team.sent", + "english_translation": "-> %s <%s> %s" + }, + { + "key": "mco.template.default.name", + "english_translation": "World template" + }, + { + "key": "subtitles.block.bubble_column.upwards_ambient", + "english_translation": "Bubbles flow" + }, + { + "key": "commands.scoreboard.players.list.entity.entry", + "english_translation": "%s: %s" + }, + { + "key": "commands.give.success.single", + "english_translation": "Gave %s %s to %s" + }, + { + "key": "subtitles.entity.generic.big_fall", + "english_translation": "Something fell" + }, + { + "key": "subtitles.entity.bee.sting", + "english_translation": "Bee stings" + }, + { + "key": "commands.data.storage.query", + "english_translation": "Storage %s has the following contents: %s" + }, + { + "key": "gamerule.globalSoundEvents", + "english_translation": "Global sound events" + }, + { + "key": "selectWorld.edit.title", + "english_translation": "Edit World" + }, + { + "key": "block.minecraft.banner.stripe_top.black", + "english_translation": "Black Chief" + }, + { + "key": "death.attack.fallingBlock.player", + "english_translation": "%1$s was squashed by a falling block whilst fighting %2$s" + }, + { + "key": "mco.configure.world.invite.narration", + "english_translation": "You have %s new invite(s)" + }, + { + "key": "spectatorMenu.team_teleport.prompt", + "english_translation": "Select a team to teleport to" + }, + { + "key": "block.minecraft.rose_bush", + "english_translation": "Rose Bush" + }, + { + "key": "block.minecraft.iron_bars", + "english_translation": "Iron Bars" + }, + { + "key": "commands.worldborder.damage.amount.success", + "english_translation": "Set the world border damage to %s per block each second" + }, + { + "key": "block.minecraft.banner.small_stripes.gray", + "english_translation": "Gray Paly" + }, + { + "key": "commands.advancement.grant.one.to.one.success", + "english_translation": "Granted the advancement %s to %s" + }, + { + "key": "mco.backup.entry.seed", + "english_translation": "Seed" + }, + { + "key": "commands.drop.success.single", + "english_translation": "Dropped %s %s" + }, + { + "key": "block.minecraft.banner.diagonal_left.light_gray", + "english_translation": "Light Gray Per Bend Sinister" + }, + { + "key": "options.narrator.system", + "english_translation": "Narrates System" + }, + { + "key": "death.attack.explosion.player.item", + "english_translation": "%1$s was blown up by %2$s using %3$s" + }, + { + "key": "entity.minecraft.tropical_fish.type.brinely", + "english_translation": "Brinely" + }, + { + "key": "item.minecraft.blaze_powder", + "english_translation": "Blaze Powder" + }, + { + "key": "tutorial.bundleInsert.description", + "english_translation": "Right Click to add items" + }, + { + "key": "chat.type.advancement.task", + "english_translation": "%s has made the advancement %s" + }, + { + "key": "disconnect.quitting", + "english_translation": "Quitting" + }, + { + "key": "block.minecraft.quartz_slab", + "english_translation": "Quartz Slab" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.light_blue", + "english_translation": "Light Blue Per Fess Inverted" + }, + { + "key": "effect.minecraft.slow_falling", + "english_translation": "Slow Falling" + }, + { + "key": "subtitles.entity.glow_squid.hurt", + "english_translation": "Glow Squid hurts" + }, + { + "key": "commands.spectate.not_spectator", + "english_translation": "%s is not in spectator mode" + }, + { + "key": "block.minecraft.yellow_candle_cake", + "english_translation": "Cake with Yellow Candle" + }, + { + "key": "commands.perf.reportSaved", + "english_translation": "Created debug report in %s" + }, + { + "key": "advancements.empty", + "english_translation": "There doesn't seem to be anything here..." + }, + { + "key": "block.minecraft.acacia_stairs", + "english_translation": "Acacia Stairs" + }, + { + "key": "block.minecraft.dark_oak_sign", + "english_translation": "Dark Oak Sign" + }, + { + "key": "block.minecraft.jack_o_lantern", + "english_translation": "Jack o'Lantern" + }, + { + "key": "block.minecraft.banner.square_bottom_right.magenta", + "english_translation": "Magenta Base Sinister Canton" + }, + { + "key": "block.minecraft.lime_wool", + "english_translation": "Lime Wool" + }, + { + "key": "item.minecraft.shield.light_gray", + "english_translation": "Light Gray Shield" + }, + { + "key": "item.minecraft.wooden_shovel", + "english_translation": "Wooden Shovel" + }, + { + "key": "key.keyboard.end", + "english_translation": "End" + }, + { + "key": "block.minecraft.deepslate_brick_wall", + "english_translation": "Deepslate Brick Wall" + }, + { + "key": "item.minecraft.green_dye", + "english_translation": "Green Dye" + }, + { + "key": "block.minecraft.banner.border.blue", + "english_translation": "Blue Bordure" + }, + { + "key": "block.minecraft.crimson_planks", + "english_translation": "Crimson Planks" + }, + { + "key": "block.minecraft.sandstone_wall", + "english_translation": "Sandstone Wall" + }, + { + "key": "item.minecraft.potion.effect.strength", + "english_translation": "Potion of Strength" + }, + { + "key": "subtitles.entity.parrot.imitate.shulker", + "english_translation": "Parrot lurks" + }, + { + "key": "block.minecraft.carved_pumpkin", + "english_translation": "Carved Pumpkin" + }, + { + "key": "commands.datapack.modify.enable", + "english_translation": "Enabling data pack %s" + }, + { + "key": "block.minecraft.banner.stripe_downright.red", + "english_translation": "Red Bend" + }, + { + "key": "item.minecraft.shield.white", + "english_translation": "White Shield" + }, + { + "key": "block.minecraft.potted_acacia_sapling", + "english_translation": "Potted Acacia Sapling" + }, + { + "key": "commands.stopsound.success.sourceless.any", + "english_translation": "Stopped all sounds" + }, + { + "key": "block.minecraft.weathered_cut_copper_stairs", + "english_translation": "Weathered Cut Copper Stairs" + }, + { + "key": "block.minecraft.nether_brick_stairs", + "english_translation": "Nether Brick Stairs" + }, + { + "key": "argument.entity.selector.unknown", + "english_translation": "Unknown selector type '%s'" + }, + { + "key": "advancements.story.obtain_armor.description", + "english_translation": "Protect yourself with a piece of iron armor" + }, + { + "key": "commands.experience.set.points.invalid", + "english_translation": "Cannot set experience points above the maximum points for the player's current level" + }, + { + "key": "entity.minecraft.pig", + "english_translation": "Pig" + }, + { + "key": "commands.advancement.criterionNotFound", + "english_translation": "The advancement %1$s does not contain the criterion '%2$s'" + }, + { + "key": "mco.configure.worlds.title", + "english_translation": "Worlds" + }, + { + "key": "dataPack.validation.reset", + "english_translation": "Reset to Default" + }, + { + "key": "commands.stopsound.success.source.any", + "english_translation": "Stopped all '%s' sounds" + }, + { + "key": "block.minecraft.banner.stripe_bottom.lime", + "english_translation": "Lime Base" + }, + { + "key": "block.minecraft.banner.square_top_right.brown", + "english_translation": "Brown Chief Sinister Canton" + }, + { + "key": "commands.teleport.success.entity.multiple", + "english_translation": "Teleported %s entities to %s" + }, + { + "key": "entity.minecraft.falling_block", + "english_translation": "Falling Block" + }, + { + "key": "item.minecraft.debug_stick.empty", + "english_translation": "%s has no properties" + }, + { + "key": "subtitles.entity.donkey.chest", + "english_translation": "Donkey Chest equips" + }, + { + "key": "entity.minecraft.villager", + "english_translation": "Villager" + }, + { + "key": "advancements.husbandry.wax_off.title", + "english_translation": "Wax Off" + }, + { + "key": "item.minecraft.firework_star.shape.burst", + "english_translation": "Burst" + }, + { + "key": "gui.chatSelection.message.narrate", + "english_translation": "%s said: %s at %s" + }, + { + "key": "block.minecraft.banner.flower.pink", + "english_translation": "Pink Flower Charge" + }, + { + "key": "item.minecraft.axolotl_spawn_egg", + "english_translation": "Axolotl Spawn Egg" + }, + { + "key": "gamerule.lavaSourceConversion.description", + "english_translation": "When flowing lava is surrounded on two sides by lava sources it converts into a source." + }, + { + "key": "subtitles.block.composter.ready", + "english_translation": "Composter composts" + }, + { + "key": "subtitles.entity.warden.hurt", + "english_translation": "Warden hurts" + }, + { + "key": "biome.minecraft.sunflower_plains", + "english_translation": "Sunflower Plains" + }, + { + "key": "chat.type.text", + "english_translation": "<%s> %s" + }, + { + "key": "menu.returnToGame", + "english_translation": "Back to Game" + }, + { + "key": "commands.attribute.base_value.get.success", + "english_translation": "Base value of attribute %s for entity %s is %s" + }, + { + "key": "item.minecraft.compass", + "english_translation": "Compass" + }, + { + "key": "mco.reset.world.upload", + "english_translation": "Upload world" + }, + { + "key": "subtitles.entity.zombie_villager.converted", + "english_translation": "Zombie Villager vociferates" }, { "key": "key.keyboard.home", "english_translation": "Home" }, { - "key": "key.keyboard.insert", - "english_translation": "Insert" + "key": "painting.minecraft.plant.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "connect.encrypting", + "english_translation": "Encrypting..." + }, + { + "key": "options.invertMouse", + "english_translation": "Invert Mouse" + }, + { + "key": "gui.chatReport.draft.edit", + "english_translation": "Continue Editing" + }, + { + "key": "block.minecraft.redstone_block", + "english_translation": "Block of Redstone" + }, + { + "key": "item.minecraft.melon_slice", + "english_translation": "Melon Slice" + }, + { + "key": "block.minecraft.acacia_hanging_sign", + "english_translation": "Acacia Hanging Sign" + }, + { + "key": "block.minecraft.zombie_wall_head", + "english_translation": "Zombie Wall Head" + }, + { + "key": "stat.minecraft.fill_cauldron", + "english_translation": "Cauldrons Filled" + }, + { + "key": "block.minecraft.polished_deepslate_stairs", + "english_translation": "Polished Deepslate Stairs" + }, + { + "key": "tutorial.look.description", + "english_translation": "Use your mouse to turn" + }, + { + "key": "container.shulkerBox.more", + "english_translation": "and %s more..." + }, + { + "key": "debug.profiling.help", + "english_translation": "F3 + L = Start/stop profiling" + }, + { + "key": "item.minecraft.paper", + "english_translation": "Paper" + }, + { + "key": "entity.minecraft.villager.cartographer", + "english_translation": "Cartographer" + }, + { + "key": "block.minecraft.smooth_stone", + "english_translation": "Smooth Stone" + }, + { + "key": "argument.entity.options.name.description", + "english_translation": "Entity name" + }, + { + "key": "subtitles.entity.vindicator.celebrate", + "english_translation": "Vindicator cheers" + }, + { + "key": "item.minecraft.brush", + "english_translation": "Brush" + }, + { + "key": "block.minecraft.banner.stripe_bottom.blue", + "english_translation": "Blue Base" + }, + { + "key": "subtitles.entity.llama.death", + "english_translation": "Llama dies" + }, + { + "key": "item.minecraft.globe_banner_pattern.desc", + "english_translation": "Globe" + }, + { + "key": "language.region", + "english_translation": "United States" + }, + { + "key": "narration.cycle_button.usage.focused", + "english_translation": "Press Enter to switch to %s" + }, + { + "key": "subtitles.entity.wandering_trader.ambient", + "english_translation": "Wandering Trader mumbles" + }, + { + "key": "block.minecraft.banner.straight_cross.lime", + "english_translation": "Lime Cross" + }, + { + "key": "stat.minecraft.play_record", + "english_translation": "Music Discs Played" + }, + { + "key": "effect.minecraft.poison", + "english_translation": "Poison" + }, + { + "key": "block.minecraft.crimson_stem", + "english_translation": "Crimson Stem" + }, + { + "key": "advancements.husbandry.plant_any_sniffer_seed.title", + "english_translation": "Planting the Past" + }, + { + "key": "selectWorld.search", + "english_translation": "search for worlds" + }, + { + "key": "block.minecraft.banner.bricks.brown", + "english_translation": "Brown Field Masoned" + }, + { + "key": "realms.missing.module.error.text", + "english_translation": "Realms could not be opened right now, please try again later" + }, + { + "key": "block.minecraft.mangrove_wall_sign", + "english_translation": "Mangrove Wall Sign" + }, + { + "key": "item.minecraft.netherite_shovel", + "english_translation": "Netherite Shovel" + }, + { + "key": "stat.minecraft.swim_one_cm", + "english_translation": "Distance Swum" + }, + { + "key": "narrator.toast.enabled", + "english_translation": "Narrator Enabled" + }, + { + "key": "item.minecraft.piglin_spawn_egg", + "english_translation": "Piglin Spawn Egg" + }, + { + "key": "options.modelPart.jacket", + "english_translation": "Jacket" + }, + { + "key": "argument.block.id.invalid", + "english_translation": "Unknown block type '%s'" + }, + { + "key": "block.minecraft.crafting_table", + "english_translation": "Crafting Table" + }, + { + "key": "block.minecraft.red_glazed_terracotta", + "english_translation": "Red Glazed Terracotta" + }, + { + "key": "block.minecraft.banner.globe.pink", + "english_translation": "Pink Globe" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.white", + "english_translation": "White Per Bend Inverted" + }, + { + "key": "selectWorld.tooltip.snapshot1", + "english_translation": "Don't forget to back up this world" + }, + { + "key": "selectWorld.tooltip.snapshot2", + "english_translation": "before you load it in this snapshot." + }, + { + "key": "block.minecraft.coal_ore", + "english_translation": "Coal Ore" + }, + { + "key": "argument.pos.outofworld", + "english_translation": "That position is out of this world!" + }, + { + "key": "item.minecraft.sheaf_pottery_sherd", + "english_translation": "Sheaf Pottery Sherd" + }, + { + "key": "block.minecraft.end_stone_brick_slab", + "english_translation": "End Stone Brick Slab" + }, + { + "key": "item.minecraft.iron_chestplate", + "english_translation": "Iron Chestplate" + }, + { + "key": "key.keyboard.escape", + "english_translation": "Escape" + }, + { + "key": "commands.team.option.seeFriendlyInvisibles.disabled", + "english_translation": "Team %s can no longer see invisible teammates" + }, + { + "key": "stat.minecraft.damage_resisted", + "english_translation": "Damage Resisted" + }, + { + "key": "subtitles.entity.drowned.step", + "english_translation": "Drowned steps" + }, + { + "key": "painting.minecraft.courbet.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "argument.time.tick_count_too_low", + "english_translation": "Tick count must not be less than %s, found %s" + }, + { + "key": "commands.experience.set.points.success.multiple", + "english_translation": "Set %s experience points on %s players" + }, + { + "key": "block.minecraft.cherry_fence_gate", + "english_translation": "Cherry Fence Gate" + }, + { + "key": "block.minecraft.exposed_cut_copper_stairs", + "english_translation": "Exposed Cut Copper Stairs" + }, + { + "key": "subtitles.item.brush.brushing.gravel", + "english_translation": "Brushing Gravel" + }, + { + "key": "mco.brokenworld.nonowner.error", + "english_translation": "Please wait for the realm owner to reset the world" + }, + { + "key": "entity.minecraft.tropical_fish.type.glitter", + "english_translation": "Glitter" + }, + { + "key": "item.minecraft.vindicator_spawn_egg", + "english_translation": "Vindicator Spawn Egg" + }, + { + "key": "mco.configure.world.edit.slot.name", + "english_translation": "World name" + }, + { + "key": "block.minecraft.blast_furnace", + "english_translation": "Blast Furnace" + }, + { + "key": "subtitles.item.totem.use", + "english_translation": "Totem activates" + }, + { + "key": "block.minecraft.black_candle_cake", + "english_translation": "Cake with Black Candle" + }, + { + "key": "options.directionalAudio.off.tooltip", + "english_translation": "Classic Stereo sound" + }, + { + "key": "block.minecraft.attached_melon_stem", + "english_translation": "Attached Melon Stem" + }, + { + "key": "block.minecraft.banner.mojang.white", + "english_translation": "White Thing" + }, + { + "key": "block.minecraft.banner.straight_cross.blue", + "english_translation": "Blue Cross" + }, + { + "key": "block.minecraft.banner.stripe_downright.pink", + "english_translation": "Pink Bend" + }, + { + "key": "mco.configure.world.uninvite.player", + "english_translation": "Are you sure that you want to uninvite '%s'?" + }, + { + "key": "subtitles.entity.generic.small_fall", + "english_translation": "Something trips" + }, + { + "key": "mco.errorMessage.serviceBusy", + "english_translation": "Realms is busy at the moment.\nPlease try connecting to your Realm again in a couple of minutes." + }, + { + "key": "subtitles.entity.warden.agitated", + "english_translation": "Warden groans angrily" + }, + { + "key": "command.failed", + "english_translation": "An unexpected error occurred trying to execute that command" + }, + { + "key": "block.minecraft.lime_bed", + "english_translation": "Lime Bed" + }, + { + "key": "block.minecraft.banner.diagonal_left.brown", + "english_translation": "Brown Per Bend Sinister" + }, + { + "key": "mco.configure.world.pvp", + "english_translation": "PVP" + }, + { + "key": "block.minecraft.spruce_fence_gate", + "english_translation": "Spruce Fence Gate" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.red", + "english_translation": "Red Per Bend Sinister Inverted" + }, + { + "key": "subtitles.entity.polar_bear.death", + "english_translation": "Polar Bear dies" + }, + { + "key": "advancements.husbandry.kill_axolotl_target.title", + "english_translation": "The Healing Power of Friendship!" + }, + { + "key": "entity.minecraft.elder_guardian", + "english_translation": "Elder Guardian" + }, + { + "key": "generator.minecraft.normal", + "english_translation": "Default" + }, + { + "key": "advancements.husbandry.axolotl_in_a_bucket.title", + "english_translation": "The Cutest Predator" + }, + { + "key": "advancements.nether.loot_bastion.description", + "english_translation": "Loot a Chest in a Bastion Remnant" + }, + { + "key": "structure_block.load_success", + "english_translation": "Structure loaded from '%s'" + }, + { + "key": "advancements.husbandry.tame_an_animal.description", + "english_translation": "Tame an animal" + }, + { + "key": "item.minecraft.horse_spawn_egg", + "english_translation": "Horse Spawn Egg" + }, + { + "key": "item.minecraft.zombie_spawn_egg", + "english_translation": "Zombie Spawn Egg" + }, + { + "key": "generator.minecraft.large_biomes", + "english_translation": "Large Biomes" + }, + { + "key": "stat.minecraft.interact_with_brewingstand", + "english_translation": "Interactions with Brewing Stand" + }, + { + "key": "block.minecraft.banner.rhombus.light_gray", + "english_translation": "Light Gray Lozenge" + }, + { + "key": "multiplayer.player.joined", + "english_translation": "%s joined the game" + }, + { + "key": "subtitles.entity.mule.ambient", + "english_translation": "Mule hee-haws" + }, + { + "key": "subtitles.entity.parrot.imitate.zombie", + "english_translation": "Parrot groans" + }, + { + "key": "options.controls", + "english_translation": "Controls..." + }, + { + "key": "entity.minecraft.tropical_fish.type.flopper", + "english_translation": "Flopper" + }, + { + "key": "effect.minecraft.wither", + "english_translation": "Wither" + }, + { + "key": "block.minecraft.banner.diagonal_left.pink", + "english_translation": "Pink Per Bend Sinister" + }, + { + "key": "stat.minecraft.clean_armor", + "english_translation": "Armor Pieces Cleaned" + }, + { + "key": "subtitles.entity.donkey.eat", + "english_translation": "Donkey eats" + }, + { + "key": "subtitles.entity.parrot.imitate.ender_dragon", + "english_translation": "Parrot roars" + }, + { + "key": "block.minecraft.jungle_pressure_plate", + "english_translation": "Jungle Pressure Plate" + }, + { + "key": "block.minecraft.banner.triangle_top.black", + "english_translation": "Black Inverted Chevron" + }, + { + "key": "effect.minecraft.blindness", + "english_translation": "Blindness" + }, + { + "key": "commands.team.option.color.success", + "english_translation": "Updated the color for team %s to %s" + }, + { + "key": "block.minecraft.pink_shulker_box", + "english_translation": "Pink Shulker Box" + }, + { + "key": "subtitles.entity.strider.death", + "english_translation": "Strider dies" + }, + { + "key": "options.operatorItemsTab", + "english_translation": "Operator Items Tab" + }, + { + "key": "block.minecraft.waxed_exposed_cut_copper", + "english_translation": "Waxed Exposed Cut Copper" + }, + { + "key": "item.minecraft.bat_spawn_egg", + "english_translation": "Bat Spawn Egg" + }, + { + "key": "commands.datapack.modify.disable", + "english_translation": "Disabling data pack %s" + }, + { + "key": "item.minecraft.trident", + "english_translation": "Trident" + }, + { + "key": "block.minecraft.acacia_sapling", + "english_translation": "Acacia Sapling" + }, + { + "key": "block.minecraft.dragon_head", + "english_translation": "Dragon Head" + }, + { + "key": "subtitles.block.beehive.work", + "english_translation": "Bees work" + }, + { + "key": "commands.message.display.incoming", + "english_translation": "%s whispers to you: %s" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.black", + "english_translation": "Black Per Bend Inverted" + }, + { + "key": "block.minecraft.banner.stripe_right.lime", + "english_translation": "Lime Pale Sinister" + }, + { + "key": "block.minecraft.spruce_leaves", + "english_translation": "Spruce Leaves" + }, + { + "key": "gui.socialInteractions.narration.hide", + "english_translation": "Hide messages from %s" + }, + { + "key": "death.attack.drown.player", + "english_translation": "%1$s drowned whilst trying to escape %2$s" + }, + { + "key": "commands.data.modify.expected_value", + "english_translation": "Expected value, got: %s" + }, + { + "key": "death.attack.sweetBerryBush", + "english_translation": "%1$s was poked to death by a sweet berry bush" + }, + { + "key": "mco.invites.pending", + "english_translation": "New invite(s)!" + }, + { + "key": "telemetry_info.property_title", + "english_translation": "Included Data" + }, + { + "key": "mco.minigame.world.switch.new", + "english_translation": "Select another minigame?" + }, + { + "key": "commands.team.option.deathMessageVisibility.unchanged", + "english_translation": "Nothing changed. Death message visibility is already that value" + }, + { + "key": "gui.abuseReport.reason.hate_speech.description", + "english_translation": "Someone is attacking you or another player based on characteristics of their identity, like religion, race, or sexuality." + }, + { + "key": "block.minecraft.banner.square_top_left.yellow", + "english_translation": "Yellow Chief Dexter Canton" + }, + { + "key": "block.minecraft.stripped_cherry_wood", + "english_translation": "Stripped Cherry Wood" + }, + { + "key": "item.minecraft.splash_potion.effect.regeneration", + "english_translation": "Splash Potion of Regeneration" + }, + { + "key": "block.minecraft.banner.mojang.black", + "english_translation": "Black Thing" + }, + { + "key": "subtitles.entity.llama.hurt", + "english_translation": "Llama hurts" + }, + { + "key": "fabric.gui.creativeTabPage", + "english_translation": "Page %s/%s" + }, + { + "key": "block.minecraft.banner.rhombus.gray", + "english_translation": "Gray Lozenge" + }, + { + "key": "advancements.end.root.title", + "english_translation": "The End" + }, + { + "key": "block.minecraft.purple_candle", + "english_translation": "Purple Candle" + }, + { + "key": "subtitles.entity.fishing_bobber.throw", + "english_translation": "Bobber thrown" + }, + { + "key": "narrator.screen.usage", + "english_translation": "Use mouse cursor or Tab button to select element" + }, + { + "key": "subtitles.entity.shulker.death", + "english_translation": "Shulker dies" + }, + { + "key": "argument.entity.options.distance.description", + "english_translation": "Distance to entity" + }, + { + "key": "item.minecraft.recovery_compass", + "english_translation": "Recovery Compass" + }, + { + "key": "options.graphics.fabulous.tooltip", + "english_translation": "%s graphics uses screen shaders for drawing weather, clouds, and particles behind translucent blocks and water.\nThis may severely impact performance for portable devices and 4K displays." + }, + { + "key": "subtitles.entity.fox.sleep", + "english_translation": "Fox snores" + }, + { + "key": "narrator.button.accessibility", + "english_translation": "Accessibility" + }, + { + "key": "block.minecraft.banner.half_vertical_right.lime", + "english_translation": "Lime Per Pale Inverted" + }, + { + "key": "options.onlyShowSecureChat", + "english_translation": "Only Show Secure Chat" + }, + { + "key": "block.minecraft.banner.border.light_blue", + "english_translation": "Light Blue Bordure" + }, + { + "key": "block.minecraft.banner.stripe_top.orange", + "english_translation": "Orange Chief" + }, + { + "key": "options.accessibility.text_background_opacity", + "english_translation": "Text Background Opacity" + }, + { + "key": "spectatorMenu.team_teleport", + "english_translation": "Teleport to Team Member" + }, + { + "key": "subtitles.entity.frog.lay_spawn", + "english_translation": "Frog lays spawn" + }, + { + "key": "createWorld.customize.custom.dungeonChance", + "english_translation": "Dungeon Count" + }, + { + "key": "mco.configure.world.spawn_toggle.message", + "english_translation": "Turning this option off will REMOVE ALL existing entities of that type" + }, + { + "key": "entity.minecraft.pillager", + "english_translation": "Pillager" + }, + { + "key": "gui.banned.reason.sexually_inappropriate", + "english_translation": "Topics or content of a sexual nature" + }, + { + "key": "block.minecraft.bed.obstructed", + "english_translation": "This bed is obstructed" + }, + { + "key": "subtitles.entity.polar_bear.hurt", + "english_translation": "Polar Bear hurts" + }, + { + "key": "advancements.adventure.bullseye.title", + "english_translation": "Bullseye" + }, + { + "key": "gui.chatReport.send", + "english_translation": "Send Report" + }, + { + "key": "block.minecraft.pink_candle_cake", + "english_translation": "Cake with Pink Candle" + }, + { + "key": "key.categories.misc", + "english_translation": "Miscellaneous" + }, + { + "key": "tutorial.open_inventory.title", + "english_translation": "Open your inventory" + }, + { + "key": "mco.backup.entry.description", + "english_translation": "Description" + }, + { + "key": "subtitles.block.trapdoor.toggle", + "english_translation": "Trapdoor creaks" + }, + { + "key": "mco.configure.world.slot.switch.question.line2", + "english_translation": "Are you sure you want to continue?" + }, + { + "key": "mco.configure.world.slot.switch.question.line1", + "english_translation": "Your realm will be switched to another world" + }, + { + "key": "block.minecraft.banner.stripe_right.blue", + "english_translation": "Blue Pale Sinister" + }, + { + "key": "block.minecraft.cherry_slab", + "english_translation": "Cherry Slab" + }, + { + "key": "disconnect.exceeded_packet_rate", + "english_translation": "Kicked for exceeding packet rate limit" + }, + { + "key": "gamerule.mobExplosionDropDecay", + "english_translation": "In mob explosions, some blocks won't drop their loot" + }, + { + "key": "advancements.adventure.spyglass_at_ghast.description", + "english_translation": "Look at a Ghast through a Spyglass" + }, + { + "key": "advancement.advancementNotFound", + "english_translation": "Unknown advancement: %s" + }, + { + "key": "subtitles.entity.rabbit.jump", + "english_translation": "Rabbit hops" + }, + { + "key": "mco.template.button.trailer", + "english_translation": "Trailer" + }, + { + "key": "block.minecraft.light_blue_banner", + "english_translation": "Light Blue Banner" + }, + { + "key": "parsing.bool.expected", + "english_translation": "Expected boolean" + }, + { + "key": "block.minecraft.banner.square_bottom_left.lime", + "english_translation": "Lime Base Dexter Canton" + }, + { + "key": "gui.chatReport.describe", + "english_translation": "Sharing details will help us make a well-informed decision." + }, + { + "key": "createWorld.customize.presets", + "english_translation": "Presets" + }, + { + "key": "flat_world_preset.minecraft.redstone_ready", + "english_translation": "Redstone Ready" + }, + { + "key": "block.minecraft.cauldron", + "english_translation": "Cauldron" + }, + { + "key": "container.upgrade", + "english_translation": "Upgrade Gear" + }, + { + "key": "multiplayer.status.finished", + "english_translation": "Finished" + }, + { + "key": "subtitles.entity.parrot.imitate.magma_cube", + "english_translation": "Parrot squishes" + }, + { + "key": "block.minecraft.nether_brick_fence", + "english_translation": "Nether Brick Fence" + }, + { + "key": "commands.forceload.list.multiple", + "english_translation": "%s force loaded chunks were found in %s at: %s" + }, + { + "key": "flat_world_preset.minecraft.the_void", + "english_translation": "The Void" + }, + { + "key": "block.minecraft.banner.globe.orange", + "english_translation": "Orange Globe" + }, + { + "key": "block.minecraft.banner.skull.lime", + "english_translation": "Lime Skull Charge" + }, + { + "key": "soundCategory.player", + "english_translation": "Players" + }, + { + "key": "stat_type.minecraft.mined", + "english_translation": "Times Mined" + }, + { + "key": "subtitles.entity.goat.horn_break", + "english_translation": "Goat Horn breaks off" + }, + { + "key": "argument.entity.options.dx.description", + "english_translation": "Entities between x and x + dx" + }, + { + "key": "item_modifier.unknown", + "english_translation": "Unknown item modifier: %s" + }, + { + "key": "block.minecraft.banner.globe.light_blue", + "english_translation": "Light Blue Globe" + }, + { + "key": "item.minecraft.heartbreak_pottery_sherd", + "english_translation": "Heartbreak Pottery Sherd" + }, + { + "key": "gui.socialInteractions.status_hidden_offline", + "english_translation": "Hidden - Offline" + }, + { + "key": "item.minecraft.splash_potion.effect.night_vision", + "english_translation": "Splash Potion of Night Vision" + }, + { + "key": "block.minecraft.wither_skeleton_wall_skull", + "english_translation": "Wither Skeleton Wall Skull" + }, + { + "key": "item.minecraft.cooked_beef", + "english_translation": "Steak" + }, + { + "key": "block.minecraft.banner.half_vertical_right.blue", + "english_translation": "Blue Per Pale Inverted" + }, + { + "key": "item.minecraft.magma_cube_spawn_egg", + "english_translation": "Magma Cube Spawn Egg" + }, + { + "key": "advancements.husbandry.kill_axolotl_target.description", + "english_translation": "Team up with an Axolotl and win a fight" + }, + { + "key": "painting.minecraft.donkey_kong.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "subtitles.chiseled_bookshelf.insert_enchanted", + "english_translation": "Enchanted Book placed" + }, + { + "key": "commands.advancement.revoke.one.to.one.failure", + "english_translation": "Couldn't revoke advancement %s from %s as they don't have it" + }, + { + "key": "container.repair.expensive", + "english_translation": "Too Expensive!" + }, + { + "key": "optimizeWorld.stage.counting", + "english_translation": "Counting chunks..." + }, + { + "key": "mco.minigame.world.title", + "english_translation": "Switch realm to minigame" + }, + { + "key": "container.inventory", + "english_translation": "Inventory" + }, + { + "key": "trim_pattern.minecraft.snout", + "english_translation": "Snout Armor Trim" + }, + { + "key": "arguments.nbtpath.too_deep", + "english_translation": "Resulting NBT too deeply nested" + }, + { + "key": "block.minecraft.magenta_stained_glass", + "english_translation": "Magenta Stained Glass" + }, + { + "key": "block.minecraft.weathered_cut_copper", + "english_translation": "Weathered Cut Copper" + }, + { + "key": "mco.account.privacyinfo", + "english_translation": "Mojang implements certain procedures to help protect children and their privacy including complying with the Children’s Online Privacy Protection Act (COPPA) and General Data Protection Regulation (GDPR).\n\nYou may need to obtain parental consent before accessing your Realms account.\n\nIf you have an older Minecraft account (you log in with your username), you need to migrate the account to a Mojang account in order to access Realms." + }, + { + "key": "options.pixel_value", + "english_translation": "%s: %spx" + }, + { + "key": "item.minecraft.splash_potion.effect.water_breathing", + "english_translation": "Splash Potion of Water Breathing" + }, + { + "key": "mco.create.world.error", + "english_translation": "You must enter a name!" + }, + { + "key": "gui.socialInteractions.tab_all", + "english_translation": "All" + }, + { + "key": "death.attack.freeze", + "english_translation": "%1$s froze to death" + }, + { + "key": "argument.integer.low", + "english_translation": "Integer must not be less than %s, found %s" + }, + { + "key": "block.minecraft.banner.stripe_bottom.purple", + "english_translation": "Purple Base" + }, + { + "key": "resourcePack.broken_assets", + "english_translation": "BROKEN ASSETS DETECTED" + }, + { + "key": "subtitles.entity.pig.hurt", + "english_translation": "Pig hurts" + }, + { + "key": "block.minecraft.banner.square_bottom_left.blue", + "english_translation": "Blue Base Dexter Canton" + }, + { + "key": "item.minecraft.potion.effect.awkward", + "english_translation": "Awkward Potion" + }, + { + "key": "block.minecraft.banner.stripe_top.light_gray", + "english_translation": "Light Gray Chief" + }, + { + "key": "block.minecraft.white_banner", + "english_translation": "White Banner" + }, + { + "key": "entity.minecraft.rabbit", + "english_translation": "Rabbit" + }, + { + "key": "block.minecraft.large_fern", + "english_translation": "Large Fern" + }, + { + "key": "options.reducedDebugInfo", + "english_translation": "Reduced Debug Info" + }, + { + "key": "arguments.objective.notFound", + "english_translation": "Unknown scoreboard objective '%s'" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.green", + "english_translation": "Green Per Bend Inverted" + }, + { + "key": "multiplayer.status.unrequested", + "english_translation": "Received unrequested status" + }, + { + "key": "block.minecraft.banner.triangles_top.brown", + "english_translation": "Brown Chief Indented" + }, + { + "key": "advancements.story.iron_tools.title", + "english_translation": "Isn't It Iron Pick" + }, + { + "key": "menu.generatingLevel", + "english_translation": "Generating world" + }, + { + "key": "block.minecraft.banner.square_bottom_left.purple", + "english_translation": "Purple Base Dexter Canton" + }, + { + "key": "block.minecraft.dirt_path", + "english_translation": "Dirt Path" + }, + { + "key": "subtitles.entity.generic.hurt", + "english_translation": "Something hurts" + }, + { + "key": "entity.minecraft.villager.none", + "english_translation": "Villager" + }, + { + "key": "narrator.position.tab", + "english_translation": "Selected tab %s out of %s" + }, + { + "key": "subtitles.item.goat_horn.play", + "english_translation": "Goat Horn plays" + }, + { + "key": "commands.scoreboard.players.enable.success.single", + "english_translation": "Enabled trigger %s for %s" + }, + { + "key": "subtitles.entity.villager.work_cleric", + "english_translation": "Cleric works" + }, + { + "key": "advancements.husbandry.silk_touch_nest.title", + "english_translation": "Total Beelocation" + }, + { + "key": "gui.banned.reason.false_reporting", + "english_translation": "Excessive false or inaccurate reports" + }, + { + "key": "block.minecraft.coarse_dirt", + "english_translation": "Coarse Dirt" + }, + { + "key": "item.minecraft.crossbow", + "english_translation": "Crossbow" + }, + { + "key": "selectServer.select", + "english_translation": "Join Server" + }, + { + "key": "block.minecraft.banner.stripe_top.cyan", + "english_translation": "Cyan Chief" + }, + { + "key": "death.attack.player.item", + "english_translation": "%1$s was slain by %2$s using %3$s" + }, + { + "key": "commands.execute.conditional.fail", + "english_translation": "Test failed" + }, + { + "key": "subtitles.entity.wither_skeleton.hurt", + "english_translation": "Wither Skeleton hurts" + }, + { + "key": "inventory.binSlot", + "english_translation": "Destroy Item" + }, + { + "key": "mco.configure.world.spawnProtection", + "english_translation": "Spawn protection" + }, + { + "key": "gui.recipebook.moreRecipes", + "english_translation": "Right Click for More" + }, + { + "key": "commands.locate.poi.success", + "english_translation": "The nearest %s is at %s (%s blocks away)" + }, + { + "key": "item.minecraft.globe_banner_pattern", + "english_translation": "Banner Pattern" + }, + { + "key": "item.minecraft.splash_potion.effect.levitation", + "english_translation": "Splash Potion of Levitation" + }, + { + "key": "gui.socialInteractions.narration.report", + "english_translation": "Report player %s" + }, + { + "key": "commands.advancement.revoke.many.to.one.failure", + "english_translation": "Couldn't revoke %s advancements from %s as they don't have them" + }, + { + "key": "chat.link.warning", + "english_translation": "Never open links from people that you don't trust!" + }, + { + "key": "subtitles.entity.allay.hurt", + "english_translation": "Allay hurts" + }, + { + "key": "item.minecraft.music_disc_chirp", + "english_translation": "Music Disc" + }, + { + "key": "item.minecraft.howl_pottery_sherd", + "english_translation": "Howl Pottery Sherd" + }, + { + "key": "block.minecraft.lapis_ore", + "english_translation": "Lapis Lazuli Ore" + }, + { + "key": "subtitles.entity.fishing_bobber.splash", + "english_translation": "Fishing Bobber splashes" + }, + { + "key": "block.minecraft.bamboo_stairs", + "english_translation": "Bamboo Stairs" + }, + { + "key": "block.minecraft.banner.base.yellow", + "english_translation": "Fully Yellow Field" + }, + { + "key": "item.minecraft.stray_spawn_egg", + "english_translation": "Stray Spawn Egg" + }, + { + "key": "block.minecraft.banner.base.pink", + "english_translation": "Fully Pink Field" + }, + { + "key": "commands.debug.function.success.multiple", + "english_translation": "Traced %s command(s) from %s functions to output file %s" + }, + { + "key": "mco.configure.world.invited.number", + "english_translation": "Invited (%s)" + }, + { + "key": "item.minecraft.splash_potion.effect.thick", + "english_translation": "Thick Splash Potion" + }, + { + "key": "item.minecraft.cooked_cod", + "english_translation": "Cooked Cod" + }, + { + "key": "clear.failed.single", + "english_translation": "No items were found on player %s" + }, + { + "key": "gui.socialInteractions.tooltip.report", + "english_translation": "Report player" + }, + { + "key": "block.minecraft.observer", + "english_translation": "Observer" + }, + { + "key": "block.minecraft.banner.stripe_bottom.cyan", + "english_translation": "Cyan Base" + }, + { + "key": "block.minecraft.banner.creeper.purple", + "english_translation": "Purple Creeper Charge" + }, + { + "key": "subtitles.entity.silverfish.ambient", + "english_translation": "Silverfish hisses" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.brown", + "english_translation": "Brown Per Fess Inverted" + }, + { + "key": "commands.team.option.friendlyfire.alreadyDisabled", + "english_translation": "Nothing changed. Friendly fire is already disabled for that team" + }, + { + "key": "item.minecraft.firework_star.shape.large_ball", + "english_translation": "Large Ball" + }, + { + "key": "item.minecraft.heart_pottery_sherd", + "english_translation": "Heart Pottery Sherd" + }, + { + "key": "telemetry.property.server_type.title", + "english_translation": "Server Type" + }, + { + "key": "block.minecraft.prismarine_brick_slab", + "english_translation": "Prismarine Brick Slab" + }, + { + "key": "death.fell.accident.twisting_vines", + "english_translation": "%1$s fell off some twisting vines" + }, + { + "key": "block.minecraft.jungle_trapdoor", + "english_translation": "Jungle Trapdoor" + }, + { + "key": "connect.aborted", + "english_translation": "Aborted" + }, + { + "key": "block.minecraft.banner.triangles_top.lime", + "english_translation": "Lime Chief Indented" + }, + { + "key": "commands.team.list.teams.success", + "english_translation": "There are %s team(s): %s" + }, + { + "key": "gui.abuseReport.reason.narration", + "english_translation": "%s: %s" + }, + { + "key": "options.narrator.all", + "english_translation": "Narrates All" + }, + { + "key": "subtitles.entity.donkey.angry", + "english_translation": "Donkey neighs" + }, + { + "key": "multiplayer.status.cannot_resolve", + "english_translation": "Can't resolve hostname" + }, + { + "key": "attribute.name.generic.movement_speed", + "english_translation": "Speed" + }, + { + "key": "narrator.position.list", + "english_translation": "Selected list row %s out of %s" + }, + { + "key": "commands.item.target.no_such_slot", + "english_translation": "The target does not have slot %s" + }, + { + "key": "gui.abuseReport.reason.title", + "english_translation": "Select Report Category" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.magenta", + "english_translation": "Magenta Per Bend Inverted" + }, + { + "key": "block.minecraft.banner.square_top_right.light_gray", + "english_translation": "Light Gray Chief Sinister Canton" + }, + { + "key": "block.minecraft.dead_brain_coral_fan", + "english_translation": "Dead Brain Coral Fan" + }, + { + "key": "block.minecraft.banner.flower.white", + "english_translation": "White Flower Charge" + }, + { + "key": "stat.minecraft.sneak_time", + "english_translation": "Sneak Time" + }, + { + "key": "argument.nbt.trailing", + "english_translation": "Unexpected trailing data" + }, + { + "key": "mco.selectServer.note", + "english_translation": "Note:" + }, + { + "key": "options.fov.min", + "english_translation": "Normal" + }, + { + "key": "mco.minigame.world.restore.question.line2", + "english_translation": "Are you sure you want to continue?" + }, + { + "key": "subtitles.entity.zombie.destroy_egg", + "english_translation": "Turtle Egg stomped" + }, + { + "key": "biome.minecraft.lukewarm_ocean", + "english_translation": "Lukewarm Ocean" + }, + { + "key": "entity.minecraft.wither_skull", + "english_translation": "Wither Skull" + }, + { + "key": "mco.minigame.world.restore.question.line1", + "english_translation": "The minigame will end and your realm will be restored." + }, + { + "key": "entity.minecraft.eye_of_ender", + "english_translation": "Eye of Ender" + }, + { + "key": "createWorld.tab.world.title", + "english_translation": "World" + }, + { + "key": "block.minecraft.banner.triangle_bottom.red", + "english_translation": "Red Chevron" + }, + { + "key": "block.minecraft.cyan_carpet", + "english_translation": "Cyan Carpet" + }, + { + "key": "argument.double.big", + "english_translation": "Double must not be more than %s, found %s" + }, + { + "key": "color.minecraft.red", + "english_translation": "Red" + }, + { + "key": "block.minecraft.oak_door", + "english_translation": "Oak Door" + }, + { + "key": "block.minecraft.flowering_azalea_leaves", + "english_translation": "Flowering Azalea Leaves" + }, + { + "key": "item.minecraft.prismarine_crystals", + "english_translation": "Prismarine Crystals" + }, + { + "key": "commands.scoreboard.players.enable.success.multiple", + "english_translation": "Enabled trigger %s for %s entities" + }, + { + "key": "menu.disconnect", + "english_translation": "Disconnect" + }, + { + "key": "entity.minecraft.chest_boat", + "english_translation": "Boat with Chest" + }, + { + "key": "item.minecraft.tipped_arrow.effect.slow_falling", + "english_translation": "Arrow of Slow Falling" + }, + { + "key": "stat_type.minecraft.killed_by", + "english_translation": "%s killed you %s time(s)" + }, + { + "key": "commands.place.jigsaw.invalid", + "english_translation": "There is no template pool with type \"%s\"" + }, + { + "key": "options.online", + "english_translation": "Online..." + }, + { + "key": "commands.banip.invalid", + "english_translation": "Invalid IP address or unknown player" + }, + { + "key": "block.minecraft.banner.square_top_left.light_gray", + "english_translation": "Light Gray Chief Dexter Canton" + }, + { + "key": "advancements.adventure.kill_mob_near_sculk_catalyst.title", + "english_translation": "It Spreads" + }, + { + "key": "subtitles.entity.elder_guardian.death", + "english_translation": "Elder Guardian dies" + }, + { + "key": "multiplayer.disconnect.authservers_down", + "english_translation": "Authentication servers are down. Please try again later, sorry!" + }, + { + "key": "color.minecraft.gray", + "english_translation": "Gray" + }, + { + "key": "item.minecraft.furnace_minecart", + "english_translation": "Minecart with Furnace" + }, + { + "key": "mco.selectServer.expiredList", + "english_translation": "Your subscription has expired" + }, + { + "key": "gui.abuseReport.reason.harassment_or_bullying.description", + "english_translation": "Someone is shaming, attacking, or bullying you or someone else. This includes when someone is repeatedly trying to contact you or someone else without consent or posting private personal information about you or someone else without consent (\"doxing\")." + }, + { + "key": "multiplayer.disconnect.idling", + "english_translation": "You have been idle for too long!" + }, + { + "key": "soundCategory.record", + "english_translation": "Jukebox/Note Blocks" + }, + { + "key": "block.minecraft.prismarine_slab", + "english_translation": "Prismarine Slab" + }, + { + "key": "block.minecraft.nether_portal", + "english_translation": "Nether Portal" + }, + { + "key": "advancements.story.obtain_armor.title", + "english_translation": "Suit Up" + }, + { + "key": "subtitles.entity.ender_dragon.flap", + "english_translation": "Dragon flaps" + }, + { + "key": "block.minecraft.purple_banner", + "english_translation": "Purple Banner" + }, + { + "key": "entity.minecraft.spider", + "english_translation": "Spider" + }, + { + "key": "subtitles.entity.endermite.death", + "english_translation": "Endermite dies" + }, + { + "key": "telemetry.event.advancement_made.description", + "english_translation": "Understanding the context behind receiving an advancement can help us better understand and improve the progression of the game." + }, + { + "key": "container.isLocked", + "english_translation": "%s is locked!" + }, + { + "key": "commands.time.set", + "english_translation": "Set the time to %s" + }, + { + "key": "block.minecraft.yellow_banner", + "english_translation": "Yellow Banner" + }, + { + "key": "item.minecraft.potion.effect.swiftness", + "english_translation": "Potion of Swiftness" + }, + { + "key": "subtitles.entity.frog.long_jump", + "english_translation": "Frog jumps" + }, + { + "key": "container.grindstone_title", + "english_translation": "Repair & Disenchant" + }, + { + "key": "mco.configure.world.opening", + "english_translation": "Opening the realm..." + }, + { + "key": "block.minecraft.clay", + "english_translation": "Clay" + }, + { + "key": "container.barrel", + "english_translation": "Barrel" + }, + { + "key": "commands.title.times.single", + "english_translation": "Changed title display times for %s" + }, + { + "key": "key.keyboard.period", + "english_translation": "." + }, + { + "key": "key.mouse.right", + "english_translation": "Right Button" + }, + { + "key": "death.attack.fireball", + "english_translation": "%1$s was fireballed by %2$s" + }, + { + "key": "itemGroup.search", + "english_translation": "Search Items" + }, + { + "key": "argument.entity.notfound.entity", + "english_translation": "No entity was found" + }, + { + "key": "block.minecraft.polished_diorite_slab", + "english_translation": "Polished Diorite Slab" + }, + { + "key": "block.minecraft.banner.piglin.green", + "english_translation": "Green Snout" + }, + { + "key": "resourcepack.requesting", + "english_translation": "Making Request..." + }, + { + "key": "block.minecraft.banner.cross.magenta", + "english_translation": "Magenta Saltire" + }, + { + "key": "block.minecraft.cobblestone_slab", + "english_translation": "Cobblestone Slab" + }, + { + "key": "mco.question", + "english_translation": "Question" + }, + { + "key": "block.minecraft.banner.diagonal_right.purple", + "english_translation": "Purple Per Bend" + }, + { + "key": "block.minecraft.big_dripleaf", + "english_translation": "Big Dripleaf" + }, + { + "key": "item.minecraft.camel_spawn_egg", + "english_translation": "Camel Spawn Egg" + }, + { + "key": "commands.bossbar.list.bars.none", + "english_translation": "There are no custom bossbars active" + }, + { + "key": "advancements.nether.find_fortress.title", + "english_translation": "A Terrible Fortress" + }, + { + "key": "painting.minecraft.courbet.title", + "english_translation": "Bonjour Monsieur Courbet" + }, + { + "key": "block.minecraft.blackstone_stairs", + "english_translation": "Blackstone Stairs" + }, + { + "key": "advancements.husbandry.feed_snifflet.title", + "english_translation": "Little Sniffs" + }, + { + "key": "block.minecraft.banner.triangles_top.blue", + "english_translation": "Blue Chief Indented" + }, + { + "key": "effect.none", + "english_translation": "No Effects" + }, + { + "key": "block.minecraft.deepslate_tile_slab", + "english_translation": "Deepslate Tile Slab" + }, + { + "key": "commands.locate.structure.success", + "english_translation": "The nearest %s is at %s (%s blocks away)" + }, + { + "key": "mco.backup.entry", + "english_translation": "Backup (%s)" + }, + { + "key": "telemetry_info.button.give_feedback", + "english_translation": "Give Feedback" + }, + { + "key": "item.minecraft.piglin_banner_pattern.desc", + "english_translation": "Snout" + }, + { + "key": "subtitles.entity.blaze.hurt", + "english_translation": "Blaze hurts" + }, + { + "key": "gamerule.doEntityDrops", + "english_translation": "Drop entity equipment" + }, + { + "key": "block.minecraft.exposed_cut_copper_slab", + "english_translation": "Exposed Cut Copper Slab" + }, + { + "key": "selectWorld.create", + "english_translation": "Create New World" + }, + { + "key": "death.attack.fireworks", + "english_translation": "%1$s went off with a bang" + }, + { + "key": "block.minecraft.banner.triangle_top.lime", + "english_translation": "Lime Inverted Chevron" + }, + { + "key": "block.minecraft.potted_dead_bush", + "english_translation": "Potted Dead Bush" + }, + { + "key": "subtitles.entity.ender_dragon.growl", + "english_translation": "Dragon growls" + }, + { + "key": "block.minecraft.banner.half_horizontal.brown", + "english_translation": "Brown Per Fess" + }, + { + "key": "commands.advancement.revoke.one.to.many.success", + "english_translation": "Revoked the advancement %s from %s players" + }, + { + "key": "item.minecraft.splash_potion.effect.water", + "english_translation": "Splash Water Bottle" + }, + { + "key": "mco.configure.world.subscription.months", + "english_translation": "months" + }, + { + "key": "createWorld.customize.custom.preset.waterWorld", + "english_translation": "Water World" + }, + { + "key": "block.minecraft.banner.diagonal_right.red", + "english_translation": "Red Per Bend" + }, + { + "key": "entity.minecraft.experience_orb", + "english_translation": "Experience Orb" + }, + { + "key": "commands.function.success.multiple", + "english_translation": "Executed %s command(s) from %s functions" + }, + { + "key": "death.attack.inWall", + "english_translation": "%1$s suffocated in a wall" + }, + { + "key": "advancements.husbandry.plant_seed.title", + "english_translation": "A Seedy Place" + }, + { + "key": "chat.type.announcement", + "english_translation": "[%s] %s" + }, + { + "key": "advancements.end.dragon_breath.title", + "english_translation": "You Need a Mint" + }, + { + "key": "mco.errorMessage.6003", + "english_translation": "Download limit reached" + }, + { + "key": "mco.errorMessage.6002", + "english_translation": "Terms of service not accepted" + }, + { + "key": "commands.attribute.base_value.set.success", + "english_translation": "Base value for attribute %s for entity %s set to %s" + }, + { + "key": "mco.errorMessage.6001", + "english_translation": "Client outdated" + }, + { + "key": "commands.title.cleared.multiple", + "english_translation": "Cleared titles for %s players" + }, + { + "key": "key.keyboard.page.up", + "english_translation": "Page Up" + }, + { + "key": "mco.errorMessage.6007", + "english_translation": "User in too many Realms" + }, + { + "key": "telemetry.property.minecraft_session_id.title", + "english_translation": "Minecraft Session ID" + }, + { + "key": "mco.errorMessage.6006", + "english_translation": "World is out of date" + }, + { + "key": "mco.errorMessage.6005", + "english_translation": "World locked" + }, + { + "key": "mco.errorMessage.6004", + "english_translation": "Upload limit reached" + }, + { + "key": "block.minecraft.banner.piglin.light_blue", + "english_translation": "Light Blue Snout" + }, + { + "key": "event.minecraft.raid.defeat", + "english_translation": "Defeat" + }, + { + "key": "mco.errorMessage.6009", + "english_translation": "Invalid Realm description" + }, + { + "key": "mco.errorMessage.6008", + "english_translation": "Invalid Realm name" + }, + { + "key": "options.rawMouseInput", + "english_translation": "Raw Input" + }, + { + "key": "gui.yes", + "english_translation": "Yes" + }, + { + "key": "soundCategory.ambient", + "english_translation": "Ambient/Environment" + }, + { + "key": "block.minecraft.medium_amethyst_bud", + "english_translation": "Medium Amethyst Bud" + }, + { + "key": "block.minecraft.banner.straight_cross.orange", + "english_translation": "Orange Cross" + }, + { + "key": "entity.minecraft.stray", + "english_translation": "Stray" + }, + { + "key": "commands.bossbar.get.players.some", + "english_translation": "Custom bossbar %s has %s player(s) currently online: %s" + }, + { + "key": "options.gamma.default", + "english_translation": "Default" + }, + { + "key": "subtitles.entity.axolotl.splash", + "english_translation": "Axolotl splashes" + }, + { + "key": "block.minecraft.potted_crimson_fungus", + "english_translation": "Potted Crimson Fungus" + }, + { + "key": "commands.teleport.success.entity.single", + "english_translation": "Teleported %s to %s" + }, + { + "key": "advancements.adventure.bullseye.description", + "english_translation": "Hit the bullseye of a Target block from at least 30 meters away" + }, + { + "key": "block.minecraft.pink_terracotta", + "english_translation": "Pink Terracotta" + }, + { + "key": "chat.type.team.text", + "english_translation": "%s <%s> %s" + }, + { + "key": "connect.connecting", + "english_translation": "Connecting to the server..." + }, + { + "key": "death.attack.flyIntoWall", + "english_translation": "%1$s experienced kinetic energy" + }, + { + "key": "item.minecraft.orange_dye", + "english_translation": "Orange Dye" + }, + { + "key": "advancements.husbandry.leash_all_frog_variants.description", + "english_translation": "Get each Frog variant on a Lead" + }, + { + "key": "block.minecraft.warped_fence_gate", + "english_translation": "Warped Fence Gate" + }, + { + "key": "itemGroup.functional", + "english_translation": "Functional Blocks" + }, + { + "key": "block.minecraft.magenta_stained_glass_pane", + "english_translation": "Magenta Stained Glass Pane" + }, + { + "key": "subtitles.event.raid.horn", + "english_translation": "Ominous horn blares" + }, + { + "key": "biome.minecraft.soul_sand_valley", + "english_translation": "Soul Sand Valley" + }, + { + "key": "block.minecraft.flower_pot", + "english_translation": "Flower Pot" + }, + { + "key": "item.minecraft.fishing_rod", + "english_translation": "Fishing Rod" + }, + { + "key": "argument.player.toomany", + "english_translation": "Only one player is allowed, but the provided selector allows more than one" + }, + { + "key": "block.minecraft.light_gray_stained_glass_pane", + "english_translation": "Light Gray Stained Glass Pane" + }, + { + "key": "mco.configure.world.buttons.done", + "english_translation": "Done" + }, + { + "key": "block.minecraft.banner.triangle_top.blue", + "english_translation": "Blue Inverted Chevron" + }, + { + "key": "selectWorld.allowCommands.info", + "english_translation": "Commands like /gamemode, /experience" + }, + { + "key": "block.minecraft.mossy_stone_brick_stairs", + "english_translation": "Mossy Stone Brick Stairs" + }, + { + "key": "block.minecraft.brown_mushroom_block", + "english_translation": "Brown Mushroom Block" + }, + { + "key": "commands.ride.mount.success", + "english_translation": "%s started riding %s" + }, + { + "key": "selectWorld.experimental.title", + "english_translation": "Experimental Features Warning" + }, + { + "key": "subtitles.block.barrel.close", + "english_translation": "Barrel closes" + }, + { + "key": "subtitles.block.growing_plant.crop", + "english_translation": "Plant cropped" + }, + { + "key": "subtitles.entity.rabbit.death", + "english_translation": "Rabbit dies" + }, + { + "key": "telemetry.event.required", + "english_translation": "%s (Required)" + }, + { + "key": "block.minecraft.polished_andesite_stairs", + "english_translation": "Polished Andesite Stairs" + }, + { + "key": "key.pickItem", + "english_translation": "Pick Block" + }, + { + "key": "block.minecraft.banner.half_vertical_right.brown", + "english_translation": "Brown Per Pale Inverted" + }, + { + "key": "biome.minecraft.cherry_grove", + "english_translation": "Cherry Grove" + }, + { + "key": "commands.bossbar.set.color.unchanged", + "english_translation": "Nothing changed. That's already the color of this bossbar" + }, + { + "key": "argument.block.property.unclosed", + "english_translation": "Expected closing ] for block state properties" + }, + { + "key": "block.minecraft.banner.bricks.red", + "english_translation": "Red Field Masoned" + }, + { + "key": "subtitles.entity.sniffer.drop_seed", + "english_translation": "Sniffer drops seed" + }, + { + "key": "subtitles.entity.panda.step", + "english_translation": "Panda steps" + }, + { + "key": "createWorld.customize.custom.page1", + "english_translation": "Ore Settings" + }, + { + "key": "item.minecraft.enderman_spawn_egg", + "english_translation": "Enderman Spawn Egg" + }, + { + "key": "createWorld.customize.custom.page2", + "english_translation": "Advanced Settings (Expert Users Only!)" + }, + { + "key": "createWorld.customize.custom.page3", + "english_translation": "Extra Advanced Settings (Expert Users Only!)" + }, + { + "key": "advancements.adventure.voluntary_exile.description", + "english_translation": "Kill a raid captain.\nMaybe consider staying away from villages for the time being..." + }, + { + "key": "block.minecraft.pink_concrete_powder", + "english_translation": "Pink Concrete Powder" + }, + { + "key": "subtitles.entity.enderman.death", + "english_translation": "Enderman dies" + }, + { + "key": "createWorld.customize.custom.page0", + "english_translation": "Basic Settings" + }, + { + "key": "subtitles.entity.axolotl.swim", + "english_translation": "Axolotl swims" + }, + { + "key": "trim_pattern.minecraft.shaper", + "english_translation": "Shaper Armor Trim" + }, + { + "key": "key.mouse.middle", + "english_translation": "Middle Button" + }, + { + "key": "block.minecraft.spruce_fence", + "english_translation": "Spruce Fence" + }, + { + "key": "death.attack.starve", + "english_translation": "%1$s starved to death" + }, + { + "key": "block.minecraft.polished_granite", + "english_translation": "Polished Granite" + }, + { + "key": "subtitles.entity.cat.eat", + "english_translation": "Cat eats" + }, + { + "key": "options.telemetry.button", + "english_translation": "Data Collection" + }, + { + "key": "gui.socialInteractions.tooltip.report.no_messages", + "english_translation": "No reportable messages from player %s" + }, + { + "key": "debug.reload_chunks.help", + "english_translation": "F3 + A = Reload chunks" + }, + { + "key": "block.minecraft.tnt", + "english_translation": "TNT" + }, + { + "key": "commands.experience.set.levels.success.multiple", + "english_translation": "Set %s experience levels on %s players" + }, + { + "key": "subtitles.entity.witch.hurt", + "english_translation": "Witch hurts" + }, + { + "key": "selectWorld.gameMode.hardcore", + "english_translation": "Hardcore" + }, + { + "key": "subtitles.entity.item_frame.remove_item", + "english_translation": "Item Frame empties" + }, + { + "key": "subtitles.entity.zoglin.ambient", + "english_translation": "Zoglin growls" + }, + { + "key": "item.minecraft.turtle_spawn_egg", + "english_translation": "Turtle Spawn Egg" + }, + { + "key": "narration.cycle_button.usage.hovered", + "english_translation": "Left click to switch to %s" + }, + { + "key": "block.minecraft.banner.half_vertical.light_gray", + "english_translation": "Light Gray Per Pale" + }, + { + "key": "item.minecraft.pottery_shard_archer", + "english_translation": "Archer Pottery Shard" + }, + { + "key": "entity.minecraft.leash_knot", + "english_translation": "Leash Knot" + }, + { + "key": "key.categories.multiplayer", + "english_translation": "Multiplayer" + }, + { + "key": "advancements.adventure.shoot_arrow.description", + "english_translation": "Shoot something with an Arrow" + }, + { + "key": "soundCategory.block", + "english_translation": "Blocks" + }, + { + "key": "multiplayer.disconnect.expired_public_key", + "english_translation": "Expired profile public key. Check that your system time is synchronized, and try restarting your game." + }, + { + "key": "subtitles.entity.mule.hurt", + "english_translation": "Mule hurts" + }, + { + "key": "createWorld.customize.flat.layer", + "english_translation": "%s" + }, + { + "key": "entity.minecraft.ocelot", + "english_translation": "Ocelot" + }, + { + "key": "block.minecraft.cyan_candle", + "english_translation": "Cyan Candle" + }, + { + "key": "stat.minecraft.interact_with_lectern", + "english_translation": "Interactions with Lectern" + }, + { + "key": "structure_block.mode.save", + "english_translation": "Save" + }, + { + "key": "block.minecraft.chest", + "english_translation": "Chest" + }, + { + "key": "stat_type.minecraft.dropped", + "english_translation": "Dropped" + }, + { + "key": "block.minecraft.furnace", + "english_translation": "Furnace" + }, + { + "key": "commands.attribute.failed.modifier_already_present", + "english_translation": "Modifier %s is already present on attribute %s for entity %s" + }, + { + "key": "gamerule.naturalRegeneration", + "english_translation": "Regenerate health" + }, + { + "key": "mco.configure.world.switch.slot", + "english_translation": "Create world" + }, + { + "key": "subtitles.entity.chicken.death", + "english_translation": "Chicken dies" + }, + { + "key": "item.minecraft.phantom_membrane", + "english_translation": "Phantom Membrane" + }, + { + "key": "block.minecraft.banner.border.red", + "english_translation": "Red Bordure" + }, + { + "key": "subtitles.entity.evoker.prepare_wololo", + "english_translation": "Evoker prepares charming" + }, + { + "key": "selectWorld.tooltip.fromNewerVersion2", + "english_translation": "loading this world could cause problems!" + }, + { + "key": "item.minecraft.cat_spawn_egg", + "english_translation": "Cat Spawn Egg" + }, + { + "key": "selectWorld.tooltip.fromNewerVersion1", + "english_translation": "World was saved in a newer version," + }, + { + "key": "block.minecraft.cut_red_sandstone", + "english_translation": "Cut Red Sandstone" + }, + { + "key": "block.minecraft.oxidized_copper", + "english_translation": "Oxidized Copper" + }, + { + "key": "commands.ban.success", + "english_translation": "Banned %s: %s" + }, + { + "key": "options.realmsNotifications", + "english_translation": "Realms News & Invites" + }, + { + "key": "advancements.adventure.trim_with_any_armor_pattern.title", + "english_translation": "Crafting a New Look" + }, + { + "key": "block.minecraft.jungle_sign", + "english_translation": "Jungle Sign" + }, + { + "key": "subtitles.entity.firework_rocket.twinkle", + "english_translation": "Firework twinkles" + }, + { + "key": "block.minecraft.banner.circle.white", + "english_translation": "White Roundel" + }, + { + "key": "biome.minecraft.jagged_peaks", + "english_translation": "Jagged Peaks" + }, + { + "key": "commands.difficulty.failure", + "english_translation": "The difficulty did not change; it is already set to %s" + }, + { + "key": "multiplayer.disconnect.generic", + "english_translation": "Disconnected" + }, + { + "key": "gui.cancel", + "english_translation": "Cancel" + }, + { + "key": "block.minecraft.redstone_wall_torch", + "english_translation": "Redstone Wall Torch" + }, + { + "key": "commands.data.storage.get", + "english_translation": "%s in storage %s after scale factor of %s is %s" + }, + { + "key": "demo.help.movementShort", + "english_translation": "Move by pressing the %1$s, %2$s, %3$s, %4$s keys" + }, + { + "key": "block.minecraft.white_carpet", + "english_translation": "White Carpet" + }, + { + "key": "death.attack.cramming", + "english_translation": "%1$s was squished too much" + }, + { + "key": "subtitles.entity.vex.hurt", + "english_translation": "Vex hurts" + }, + { + "key": "block.minecraft.red_sandstone", + "english_translation": "Red Sandstone" + }, + { + "key": "subtitles.item.bottle.empty", + "english_translation": "Bottle empties" + }, + { + "key": "commands.difficulty.success", + "english_translation": "The difficulty has been set to %s" + }, + { + "key": "commands.team.option.friendlyfire.alreadyEnabled", + "english_translation": "Nothing changed. Friendly fire is already enabled for that team" + }, + { + "key": "options.difficulty.hard", + "english_translation": "Hard" + }, + { + "key": "item.minecraft.smithing_template.upgrade", + "english_translation": "Upgrade: " + }, + { + "key": "item.minecraft.ocelot_spawn_egg", + "english_translation": "Ocelot Spawn Egg" + }, + { + "key": "mco.configure.world.reset.question.line1", + "english_translation": "Your world will be regenerated and your current world will be lost" + }, + { + "key": "mco.configure.world.reset.question.line2", + "english_translation": "Are you sure you want to continue?" + }, + { + "key": "item.minecraft.potion.effect.invisibility", + "english_translation": "Potion of Invisibility" + }, + { + "key": "telemetry.event.world_load_times.title", + "english_translation": "World Load Times" + }, + { + "key": "commands.clear.success.single", + "english_translation": "Removed %s item(s) from player %s" + }, + { + "key": "block.minecraft.mangrove_door", + "english_translation": "Mangrove Door" + }, + { + "key": "createWorld.customize.custom.useCaves", + "english_translation": "Caves" + }, + { + "key": "advancements.adventure.ol_betsy.description", + "english_translation": "Shoot a Crossbow" + }, + { + "key": "item.minecraft.music_disc_wait.desc", + "english_translation": "C418 - wait" + }, + { + "key": "block.minecraft.banner.stripe_downright.light_gray", + "english_translation": "Light Gray Bend" + }, + { + "key": "gui.banned.description.temporary.duration", + "english_translation": "Your account is temporarily suspended and will be reactivated in %s." + }, + { + "key": "subtitles.entity.sniffer.death", + "english_translation": "Sniffer dies" + }, + { + "key": "addServer.add", + "english_translation": "Done" + }, + { + "key": "attribute.name.generic.attack_knockback", + "english_translation": "Attack Knockback" + }, + { + "key": "mco.configure.world.uninvite.question", + "english_translation": "Are you sure that you want to uninvite" + }, + { + "key": "block.minecraft.light_gray_stained_glass", + "english_translation": "Light Gray Stained Glass" + }, + { + "key": "subtitles.entity.villager.work_librarian", + "english_translation": "Librarian works" + }, + { + "key": "filled_map.mansion", + "english_translation": "Woodland Explorer Map" + }, + { + "key": "item.minecraft.gold_nugget", + "english_translation": "Gold Nugget" + }, + { + "key": "permissions.requires.player", + "english_translation": "A player is required to run this command here" + }, + { + "key": "subtitles.entity.zombie_horse.death", + "english_translation": "Zombie Horse dies" + }, + { + "key": "item.minecraft.smithing_template.armor_trim.additions_slot_description", + "english_translation": "Add ingot or crystal" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.brown", + "english_translation": "Brown Per Bend Sinister Inverted" + }, + { + "key": "block.minecraft.black_candle", + "english_translation": "Black Candle" + }, + { + "key": "block.minecraft.dripstone_block", + "english_translation": "Dripstone Block" + }, + { + "key": "commands.place.feature.invalid", + "english_translation": "There is no feature with type \"%s\"" + }, + { + "key": "mco.configure.world.switch.slot.subtitle", + "english_translation": "This world is empty, choose how to create your world" + }, + { + "key": "jigsaw_block.final_state", + "english_translation": "Turns into:" + }, + { + "key": "item.minecraft.shield.light_blue", + "english_translation": "Light Blue Shield" + }, + { + "key": "mco.download.speed", + "english_translation": "(%s/s)" + }, + { + "key": "trim_material.minecraft.gold", + "english_translation": "Gold Material" + }, + { + "key": "block.minecraft.banner.stripe_bottom.white", + "english_translation": "White Base" + }, + { + "key": "block.minecraft.daylight_detector", + "english_translation": "Daylight Detector" + }, + { + "key": "entity.minecraft.illusioner", + "english_translation": "Illusioner" + }, + { + "key": "subtitles.entity.cat.beg_for_food", + "english_translation": "Cat begs" + }, + { + "key": "options.visible", + "english_translation": "Shown" + }, + { + "key": "block.minecraft.green_candle", + "english_translation": "Green Candle" + }, + { + "key": "commands.scoreboard.objectives.display.cleared", + "english_translation": "Cleared any objectives in display slot %s" + }, + { + "key": "subtitles.block.piston.move", + "english_translation": "Piston moves" + }, + { + "key": "block.minecraft.orange_carpet", + "english_translation": "Orange Carpet" + }, + { + "key": "mco.configure.world.players.inviting", + "english_translation": "Inviting player..." + }, + { + "key": "options.chat.width", + "english_translation": "Width" + }, + { + "key": "item.minecraft.danger_pottery_shard", + "english_translation": "Danger Pottery Shard" + }, + { + "key": "mco.configure.world.buttons.activity", + "english_translation": "Player activity" + }, + { + "key": "options.graphics.fast", + "english_translation": "Fast" + }, + { + "key": "debug.show_hitboxes.on", + "english_translation": "Hitboxes: shown" + }, + { + "key": "attribute.name.generic.max_health", + "english_translation": "Max Health" + }, + { + "key": "entity.minecraft.block_display", + "english_translation": "Block Display" + }, + { + "key": "selectWorld.gameMode.spectator", + "english_translation": "Spectator" + }, + { + "key": "entity.minecraft.tropical_fish.type.blockfish", + "english_translation": "Blockfish" + }, + { + "key": "painting.dimensions", + "english_translation": "%sx%s" + }, + { + "key": "container.chest", + "english_translation": "Chest" + }, + { + "key": "item.minecraft.gunpowder", + "english_translation": "Gunpowder" + }, + { + "key": "gui.banned.reason.generic_violation", + "english_translation": "Violating Community Standards" + }, + { + "key": "block.minecraft.banner.stripe_right.yellow", + "english_translation": "Yellow Pale Sinister" + }, + { + "key": "painting.minecraft.burning_skull.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "block.minecraft.polished_diorite_stairs", + "english_translation": "Polished Diorite Stairs" + }, + { + "key": "mco.download.extracting", + "english_translation": "Extracting" + }, + { + "key": "block.minecraft.banner.piglin.white", + "english_translation": "White Snout" + }, + { + "key": "block.minecraft.banner.diagonal_left.magenta", + "english_translation": "Magenta Per Bend Sinister" + }, + { + "key": "block.minecraft.dark_oak_trapdoor", + "english_translation": "Dark Oak Trapdoor" + }, + { + "key": "subtitles.entity.parrot.hurts", + "english_translation": "Parrot hurts" + }, + { + "key": "mco.configure.world.title", + "english_translation": "Configure realm:" + }, + { + "key": "commands.scoreboard.players.set.success.multiple", + "english_translation": "Set %s for %s entities to %s" + }, + { + "key": "mco.selectServer.expires.soon", + "english_translation": "Expires soon" + }, + { + "key": "commands.team.list.members.success", + "english_translation": "Team %s has %s member(s): %s" + }, + { + "key": "block.minecraft.potted_wither_rose", + "english_translation": "Potted Wither Rose" + }, + { + "key": "block.minecraft.powder_snow_cauldron", + "english_translation": "Powder Snow Cauldron" + }, + { + "key": "item.minecraft.leather_helmet", + "english_translation": "Leather Cap" + }, + { + "key": "block.minecraft.spruce_wood", + "english_translation": "Spruce Wood" + }, + { + "key": "commands.bossbar.set.visibility.unchanged.hidden", + "english_translation": "Nothing changed. The bossbar is already hidden" + }, + { + "key": "block.minecraft.smooth_red_sandstone_stairs", + "english_translation": "Smooth Red Sandstone Stairs" + }, + { + "key": "options.fov.max", + "english_translation": "Quake Pro" + }, + { + "key": "commands.advancement.grant.one.to.many.failure", + "english_translation": "Couldn't grant advancement %s to %s players as they already have it" + }, + { + "key": "commands.advancement.grant.one.to.many.success", + "english_translation": "Granted the advancement %s to %s players" + }, + { + "key": "item.minecraft.brewer_pottery_shard", + "english_translation": "Brewer Pottery Shard" + }, + { + "key": "options.fullscreen.resolution", + "english_translation": "Fullscreen Resolution" + }, + { + "key": "entity.minecraft.silverfish", + "english_translation": "Silverfish" + }, + { + "key": "multiplayer.status.cannot_connect", + "english_translation": "Can't connect to server" + }, + { + "key": "enchantment.minecraft.binding_curse", + "english_translation": "Curse of Binding" + }, + { + "key": "block.minecraft.birch_fence_gate", + "english_translation": "Birch Fence Gate" + }, + { + "key": "commands.pardonip.success", + "english_translation": "Unbanned IP %s" + }, + { + "key": "block.minecraft.banner.mojang.light_gray", + "english_translation": "Light Gray Thing" + }, + { + "key": "options.chat.color", + "english_translation": "Colors" + }, + { + "key": "debug.chunk_boundaries.on", + "english_translation": "Chunk borders: shown" + }, + { + "key": "subtitles.entity.strider.happy", + "english_translation": "Strider warbles" + }, + { + "key": "subtitles.entity.zombie_villager.death", + "english_translation": "Zombie Villager dies" + }, + { + "key": "block.minecraft.red_stained_glass", + "english_translation": "Red Stained Glass" + }, + { + "key": "commands.team.empty.unchanged", + "english_translation": "Nothing changed. That team is already empty" + }, + { + "key": "selectWorld.import_worldgen_settings.failure", + "english_translation": "Error importing settings" + }, + { + "key": "item.minecraft.firework_rocket.flight", + "english_translation": "Flight Duration:" + }, + { + "key": "advancements.end.dragon_egg.title", + "english_translation": "The Next Generation" + }, + { + "key": "options.ao.off", + "english_translation": "OFF" + }, + { + "key": "block.minecraft.potted_lily_of_the_valley", + "english_translation": "Potted Lily of the Valley" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.purple", + "english_translation": "Purple Per Bend Sinister Inverted" + }, + { + "key": "subtitles.item.honey_bottle.drink", + "english_translation": "Gulping" + }, + { + "key": "item.minecraft.lime_dye", + "english_translation": "Lime Dye" + }, + { + "key": "mco.configure.world.buttons.moreoptions", + "english_translation": "More options" + }, + { + "key": "block.minecraft.spruce_trapdoor", + "english_translation": "Spruce Trapdoor" + }, + { + "key": "entity.minecraft.fishing_bobber", + "english_translation": "Fishing Bobber" + }, + { + "key": "subtitles.entity.llama.eat", + "english_translation": "Llama eats" + }, + { + "key": "block.minecraft.acacia_fence_gate", + "english_translation": "Acacia Fence Gate" + }, + { + "key": "gui.recipebook.toggleRecipes.all", + "english_translation": "Showing All" + }, + { + "key": "block.minecraft.deepslate_lapis_ore", + "english_translation": "Deepslate Lapis Lazuli Ore" + }, + { + "key": "options.sounds.title", + "english_translation": "Music & Sound Options" + }, + { + "key": "biome.minecraft.badlands", + "english_translation": "Badlands" + }, + { + "key": "block.minecraft.dark_oak_wood", + "english_translation": "Dark Oak Wood" + }, + { + "key": "block.minecraft.dark_prismarine_stairs", + "english_translation": "Dark Prismarine Stairs" + }, + { + "key": "command.exception", + "english_translation": "Could not parse command: %s" + }, + { + "key": "block.minecraft.blue_bed", + "english_translation": "Blue Bed" + }, + { + "key": "block.minecraft.oak_leaves", + "english_translation": "Oak Leaves" + }, + { + "key": "subtitles.entity.silverfish.death", + "english_translation": "Silverfish dies" + }, + { + "key": "item.minecraft.smithing_template.netherite_upgrade.base_slot_description", + "english_translation": "Add diamond armor, weapon, or tool" + }, + { + "key": "block.minecraft.moss_carpet", + "english_translation": "Moss Carpet" + }, + { + "key": "block.minecraft.cracked_polished_blackstone_bricks", + "english_translation": "Cracked Polished Blackstone Bricks" + }, + { + "key": "item.minecraft.wolf_spawn_egg", + "english_translation": "Wolf Spawn Egg" + }, + { + "key": "structure_block.save_success", + "english_translation": "Structure saved as '%s'" + }, + { + "key": "entity.minecraft.slime", + "english_translation": "Slime" + }, + { + "key": "advancements.story.form_obsidian.description", + "english_translation": "Obtain a block of Obsidian" + }, + { + "key": "commands.scoreboard.objectives.list.success", + "english_translation": "There are %s objective(s): %s" + }, + { + "key": "block.minecraft.banner.stripe_middle.purple", + "english_translation": "Purple Fess" + }, + { + "key": "item.minecraft.witch_spawn_egg", + "english_translation": "Witch Spawn Egg" + }, + { + "key": "selectWorld.experiments", + "english_translation": "Experiments" + }, + { + "key": "advancements.husbandry.netherite_hoe.title", + "english_translation": "Serious Dedication" + }, + { + "key": "commands.worldborder.set.shrink", + "english_translation": "Shrinking the world border to %s block(s) wide over %s second(s)" + }, + { + "key": "block.minecraft.banner.flower.green", + "english_translation": "Green Flower Charge" + }, + { + "key": "subtitles.entity.guardian.hurt", + "english_translation": "Guardian hurts" + }, + { + "key": "fabric-registry-sync-v0.unknown-remote.title.singular", + "english_translation": "Received a registry entry that is unknown to this client.\n" + }, + { + "key": "item.minecraft.shield.gray", + "english_translation": "Gray Shield" + }, + { + "key": "mco.template.info.tooltip", + "english_translation": "Publisher website" + }, + { + "key": "commands.perf.started", + "english_translation": "Started 10 second performance profiling run (use '/perf stop' to stop early)" + }, + { + "key": "gui.banned.reason.hate_speech", + "english_translation": "Hate speech or discrimination" + }, + { + "key": "key.keyboard.comma", + "english_translation": "," + }, + { + "key": "options.telemetry", + "english_translation": "Telemetry Data..." + }, + { + "key": "selectWorld.backupQuestion.customized", + "english_translation": "Customized worlds are no longer supported" + }, + { + "key": "options.mainHand.left", + "english_translation": "Left" + }, + { + "key": "gui.banned.description.reason", + "english_translation": "We recently received a report for bad behavior by your account. Our moderators have now reviewed your case and identified it as %s, which goes against the Minecraft Community Standards." + }, + { + "key": "structure_block.hover.data", + "english_translation": "Data: %s" + }, + { + "key": "block.minecraft.cyan_concrete", + "english_translation": "Cyan Concrete" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.orange", + "english_translation": "Orange Per Bend Inverted" + }, + { + "key": "quickplay.error.invalid_identifier", + "english_translation": "Could not find world with the provided identifier" + }, + { + "key": "subtitles.entity.villager.no", + "english_translation": "Villager disagrees" + }, + { + "key": "menu.resetdemo", + "english_translation": "Reset Demo World" + }, + { + "key": "block.minecraft.sweet_berry_bush", + "english_translation": "Sweet Berry Bush" + }, + { + "key": "block.minecraft.acacia_pressure_plate", + "english_translation": "Acacia Pressure Plate" + }, + { + "key": "block.minecraft.weathered_copper", + "english_translation": "Weathered Copper" + }, + { + "key": "enchantment.minecraft.depth_strider", + "english_translation": "Depth Strider" + }, + { + "key": "entity.minecraft.experience_bottle", + "english_translation": "Thrown Bottle o' Enchanting" + }, + { + "key": "block.minecraft.banner.triangle_bottom.light_gray", + "english_translation": "Light Gray Chevron" + }, + { + "key": "subtitles.entity.generic.swim", + "english_translation": "Swimming" + }, + { + "key": "subtitles.entity.villager.celebrate", + "english_translation": "Villager cheers" + }, + { + "key": "block.minecraft.turtle_egg", + "english_translation": "Turtle Egg" + }, + { + "key": "subtitles.entity.llama.angry", + "english_translation": "Llama bleats angrily" + }, + { + "key": "subtitles.entity.spider.ambient", + "english_translation": "Spider hisses" + }, + { + "key": "debug.profiling.start", + "english_translation": "Profiling started for %s seconds. Use F3 + L to stop early" + }, + { + "key": "subtitles.block.anvil.use", + "english_translation": "Anvil used" + }, + { + "key": "options.difficulty.hardcore", + "english_translation": "Hardcore" + }, + { + "key": "subtitles.entity.warden.angry", + "english_translation": "Warden rages" + }, + { + "key": "item.minecraft.phantom_spawn_egg", + "english_translation": "Phantom Spawn Egg" + }, + { + "key": "block.minecraft.end_stone_brick_stairs", + "english_translation": "End Stone Brick Stairs" + }, + { + "key": "death.attack.cactus.player", + "english_translation": "%1$s walked into a cactus whilst trying to escape %2$s" + }, + { + "key": "block.minecraft.warped_button", + "english_translation": "Warped Button" + }, + { + "key": "chat.type.emote", + "english_translation": "* %s %s" + }, + { + "key": "subtitles.item.bucket.fill_tadpole", + "english_translation": "Tadpole captured" + }, + { + "key": "key.keyboard.keypad.enter", + "english_translation": "Keypad Enter" + }, + { + "key": "block.minecraft.dark_oak_log", + "english_translation": "Dark Oak Log" + }, + { + "key": "commands.pardon.failed", + "english_translation": "Nothing changed. The player isn't banned" + }, + { + "key": "argument.entity.options.x_rotation.description", + "english_translation": "Entity's x rotation" + }, + { + "key": "options.multiplier", + "english_translation": "%sx" + }, + { + "key": "commands.advancement.revoke.one.to.many.failure", + "english_translation": "Couldn't revoke advancement %s from %s players as they don't have it" + }, + { + "key": "options.clouds.fast", + "english_translation": "Fast" + }, + { + "key": "mco.errorMessage.connectionFailure", + "english_translation": "An error occurred, please try again later." + }, + { + "key": "biome.minecraft.snowy_taiga", + "english_translation": "Snowy Taiga" + }, + { + "key": "options.attack.crosshair", + "english_translation": "Crosshair" + }, + { + "key": "jigsaw_block.joint.aligned", + "english_translation": "Aligned" + }, + { + "key": "record.nowPlaying", + "english_translation": "Now Playing: %s" + }, + { + "key": "advancements.husbandry.axolotl_in_a_bucket.description", + "english_translation": "Catch an Axolotl in a Bucket" + }, + { + "key": "block.minecraft.black_carpet", + "english_translation": "Black Carpet" + }, + { + "key": "block.minecraft.bubble_coral_block", + "english_translation": "Bubble Coral Block" + }, + { + "key": "commands.spreadplayers.failed.invalid.height", + "english_translation": "Invalid maxHeight %s; expected higher than world minimum %s" + }, + { + "key": "block.minecraft.brown_candle_cake", + "english_translation": "Cake with Brown Candle" + }, + { + "key": "block.minecraft.banner.skull.purple", + "english_translation": "Purple Skull Charge" + }, + { + "key": "commands.trigger.set.success", + "english_translation": "Triggered %s (set value to %s)" + }, + { + "key": "item.minecraft.netherite_chestplate", + "english_translation": "Netherite Chestplate" + }, + { + "key": "item.minecraft.mojang_banner_pattern.desc", + "english_translation": "Thing" + }, + { + "key": "trim_material.minecraft.emerald", + "english_translation": "Emerald Material" + }, + { + "key": "block.minecraft.magenta_candle", + "english_translation": "Magenta Candle" + }, + { + "key": "mco.configure.world.settings.title", + "english_translation": "Settings" + }, + { + "key": "block.minecraft.pitcher_crop", + "english_translation": "Pitcher Crop" + }, + { + "key": "item.minecraft.smithing_template.netherite_upgrade.ingredients", + "english_translation": "Netherite Ingot" + }, + { + "key": "death.attack.magic", + "english_translation": "%1$s was killed by magic" + }, + { + "key": "commands.fill.success", + "english_translation": "Successfully filled %s block(s)" + }, + { + "key": "item.minecraft.music_disc_mellohi", + "english_translation": "Music Disc" + }, + { + "key": "block.minecraft.mud_brick_stairs", + "english_translation": "Mud Brick Stairs" + }, + { + "key": "block.minecraft.jungle_button", + "english_translation": "Jungle Button" + }, + { + "key": "stat.minecraft.open_shulker_box", + "english_translation": "Shulker Boxes Opened" + }, + { + "key": "createWorld.customize.custom.useMineShafts", + "english_translation": "Mineshafts" + }, + { + "key": "item.minecraft.lead", + "english_translation": "Lead" + }, + { + "key": "subtitles.entity.turtle.egg_break", + "english_translation": "Turtle Egg breaks" + }, + { + "key": "subtitles.block.lever.click", + "english_translation": "Lever clicks" + }, + { + "key": "item.minecraft.golden_apple", + "english_translation": "Golden Apple" + }, + { + "key": "block.minecraft.banner.stripe_downright.gray", + "english_translation": "Gray Bend" + }, + { + "key": "block.minecraft.hopper", + "english_translation": "Hopper" + }, + { + "key": "commands.save.alreadyOn", + "english_translation": "Saving is already turned on" + }, + { + "key": "subtitles.entity.cod.death", + "english_translation": "Cod dies" + }, + { + "key": "gui.socialInteractions.status_blocked", + "english_translation": "Blocked" + }, + { + "key": "advancements.nether.fast_travel.title", + "english_translation": "Subspace Bubble" + }, + { + "key": "subtitles.entity.dolphin.swim", + "english_translation": "Dolphin swims" + }, + { + "key": "advancements.nether.ride_strider.description", + "english_translation": "Ride a Strider with a Warped Fungus on a Stick" + }, + { + "key": "block.minecraft.cracked_stone_bricks", + "english_translation": "Cracked Stone Bricks" + }, + { + "key": "block.minecraft.banner.half_horizontal.light_blue", + "english_translation": "Light Blue Per Fess" + }, + { + "key": "block.minecraft.slime_block", + "english_translation": "Slime Block" + }, + { + "key": "block.minecraft.banner.bricks.cyan", + "english_translation": "Cyan Field Masoned" + }, + { + "key": "createWorld.customize.custom.baseSize", + "english_translation": "Depth Base Size" + }, + { + "key": "commands.effect.clear.specific.failed", + "english_translation": "Target doesn't have the requested effect" + }, + { + "key": "block.minecraft.end_rod", + "english_translation": "End Rod" + }, + { + "key": "block.minecraft.pink_carpet", + "english_translation": "Pink Carpet" + }, + { + "key": "painting.minecraft.pool.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "item.minecraft.tipped_arrow.effect.strength", + "english_translation": "Arrow of Strength" + }, + { + "key": "biome.minecraft.eroded_badlands", + "english_translation": "Eroded Badlands" + }, + { + "key": "block.minecraft.polished_granite_stairs", + "english_translation": "Polished Granite Stairs" + }, + { + "key": "upgrade.minecraft.netherite_upgrade", + "english_translation": "Netherite Upgrade" + }, + { + "key": "block.minecraft.smooth_quartz", + "english_translation": "Smooth Quartz Block" + }, + { + "key": "subtitles.entity.tnt.primed", + "english_translation": "TNT fizzes" + }, + { + "key": "symlink_warning.message", + "english_translation": "Loading worlds from folders with symbolic links can be unsafe if you don't know exactly what you are doing. Please visit %s to learn more." + }, + { + "key": "block.minecraft.banner.curly_border.light_gray", + "english_translation": "Light Gray Bordure Indented" + }, + { + "key": "gui.chatReport.draft.quittotitle.content", + "english_translation": "Would you like to continue editing it or discard it?" + }, + { + "key": "block.minecraft.banner.half_horizontal.yellow", + "english_translation": "Yellow Per Fess" + }, + { + "key": "subtitles.block.brewing_stand.brew", + "english_translation": "Brewing Stand bubbles" + }, + { + "key": "selectWorld.deleteButton", + "english_translation": "Delete" + }, + { + "key": "commands.forceload.removed.failure", + "english_translation": "No chunks were removed from force loading" + }, + { + "key": "selectWorld.experiments.info", + "english_translation": "Experiments are potential new features. Be careful as things might break. Experiments can't be turned off after world creation." + }, + { + "key": "item.minecraft.splash_potion.effect.turtle_master", + "english_translation": "Splash Potion of the Turtle Master" + }, + { + "key": "gui.socialInteractions.hide", + "english_translation": "Hide in Chat" + }, + { + "key": "block.minecraft.banner.gradient.light_blue", + "english_translation": "Light Blue Gradient" + }, + { + "key": "selectWorld.title", + "english_translation": "Select World" + }, + { + "key": "subtitles.entity.armor_stand.fall", + "english_translation": "Something fell" + }, + { + "key": "mco.upload.entry.id", + "english_translation": "%1$s (%2$s)" + }, + { + "key": "block.minecraft.acacia_fence", + "english_translation": "Acacia Fence" + }, + { + "key": "entity.minecraft.tropical_fish.type.dasher", + "english_translation": "Dasher" + }, + { + "key": "block.minecraft.warped_wall_sign", + "english_translation": "Warped Wall Sign" + }, + { + "key": "block.minecraft.white_candle", + "english_translation": "White Candle" + }, + { + "key": "entity.minecraft.enderman", + "english_translation": "Enderman" + }, + { + "key": "subtitles.block.portal.travel", + "english_translation": "Portal noise fades" + }, + { + "key": "block.minecraft.orange_candle", + "english_translation": "Orange Candle" + }, + { + "key": "block.minecraft.stripped_acacia_wood", + "english_translation": "Stripped Acacia Wood" + }, + { + "key": "block.minecraft.gray_terracotta", + "english_translation": "Gray Terracotta" + }, + { + "key": "block.minecraft.light_blue_concrete_powder", + "english_translation": "Light Blue Concrete Powder" + }, + { + "key": "subtitles.entity.item_frame.add_item", + "english_translation": "Item Frame fills" + }, + { + "key": "advancements.nether.root.title", + "english_translation": "Nether" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.blue", + "english_translation": "Blue Per Bend Sinister Inverted" + }, + { + "key": "key.keyboard.semicolon", + "english_translation": ";" + }, + { + "key": "gamerule.blockExplosionDropDecay", + "english_translation": "In block interaction explosions, some blocks won't drop their loot" + }, + { + "key": "block.minecraft.banner.straight_cross.light_gray", + "english_translation": "Light Gray Cross" + }, + { + "key": "block.minecraft.banner.triangles_top.orange", + "english_translation": "Orange Chief Indented" + }, + { + "key": "biome.minecraft.deep_ocean", + "english_translation": "Deep Ocean" + }, + { + "key": "mco.backup.entry.gameServerVersion", + "english_translation": "Game Server Version" + }, + { + "key": "effect.minecraft.glowing", + "english_translation": "Glowing" + }, + { + "key": "block.minecraft.banner.small_stripes.light_gray", + "english_translation": "Light Gray Paly" + }, + { + "key": "options.mouse_settings", + "english_translation": "Mouse Settings..." + }, + { + "key": "advancements.nether.all_effects.description", + "english_translation": "Have every effect applied at the same time" + }, + { + "key": "commands.item.target.no_changed.known_item", + "english_translation": "No targets accepted item %s into slot %s" + }, + { + "key": "subtitles.entity.generic.burn", + "english_translation": "Burning" + }, + { + "key": "block.minecraft.spruce_stairs", + "english_translation": "Spruce Stairs" + }, + { + "key": "advancements.adventure.trim_with_any_armor_pattern.description", + "english_translation": "Craft a trimmed armor at a Smithing Table" + }, + { + "key": "block.minecraft.banner.small_stripes.pink", + "english_translation": "Pink Paly" + }, + { + "key": "debug.profiling.stop", + "english_translation": "Profiling ended. Saved results to %s" + }, + { + "key": "item.minecraft.drowned_spawn_egg", + "english_translation": "Drowned Spawn Egg" + }, + { + "key": "item.minecraft.glow_item_frame", + "english_translation": "Glow Item Frame" + }, + { + "key": "advancements.husbandry.fishy_business.title", + "english_translation": "Fishy Business" + }, + { + "key": "multiplayer.requiredTexturePrompt.line2", + "english_translation": "Rejecting this custom resource pack will disconnect you from this server." + }, + { + "key": "multiplayer.requiredTexturePrompt.line1", + "english_translation": "This server requires the use of a custom resource pack." + }, + { + "key": "item.minecraft.splash_potion.effect.empty", + "english_translation": "Splash Uncraftable Potion" + }, + { + "key": "selectWorld.experimental.details.entry", + "english_translation": "Required experimental features: %s" + }, + { + "key": "subtitles.entity.generic.extinguish_fire", + "english_translation": "Fire extinguishes" + }, + { + "key": "spectatorMenu.root.prompt", + "english_translation": "Press a key to select a command, and again to use it." + }, + { + "key": "painting.minecraft.burning_skull.title", + "english_translation": "Skull On Fire" + }, + { + "key": "options.accessibility.link", + "english_translation": "Accessibility Guide" + }, + { + "key": "translation.test.world", + "english_translation": "world" + }, + { + "key": "block.minecraft.polished_deepslate_slab", + "english_translation": "Polished Deepslate Slab" + }, + { + "key": "options.graphics", + "english_translation": "Graphics" + }, + { + "key": "commands.trigger.add.success", + "english_translation": "Triggered %s (added %s to value)" + }, + { + "key": "subtitles.block.pointed_dripstone.drip_water", + "english_translation": "Water drips" + }, + { + "key": "gui.banned.reason.nudity_or_pornography", + "english_translation": "Displaying lewd or pornographic material" + }, + { + "key": "block.minecraft.blue_banner", + "english_translation": "Blue Banner" + }, + { + "key": "block.minecraft.mangrove_slab", + "english_translation": "Mangrove Slab" + }, + { + "key": "block.minecraft.banner.rhombus.brown", + "english_translation": "Brown Lozenge" + }, + { + "key": "chat.type.admin", + "english_translation": "[%s: %s]" + }, + { + "key": "deathScreen.respawn", + "english_translation": "Respawn" + }, + { + "key": "subtitles.block.beacon.activate", + "english_translation": "Beacon activates" + }, + { + "key": "subtitles.entity.warden.sonic_boom", + "english_translation": "Warden booms" + }, + { + "key": "createWorld.customize.custom.preset.isleLand", + "english_translation": "Isle Land" + }, + { + "key": "options.glintSpeed.tooltip", + "english_translation": "Controls how fast the visual glint shimmers across enchanted items." + }, + { + "key": "mount.onboard", + "english_translation": "Press %1$s to Dismount" + }, + { + "key": "subtitles.entity.cat.hiss", + "english_translation": "Cat hisses" + }, + { + "key": "block.minecraft.nether_gold_ore", + "english_translation": "Nether Gold Ore" + }, + { + "key": "item.minecraft.explorer_pottery_shard", + "english_translation": "Explorer Pottery Shard" + }, + { + "key": "block.minecraft.banner.flower.gray", + "english_translation": "Gray Flower Charge" + }, + { + "key": "multiplayer.disconnect.outdated_server", + "english_translation": "Incompatible client! Please use %s" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.lime", + "english_translation": "Lime Per Bend Sinister Inverted" + }, + { + "key": "block.minecraft.nether_wart", + "english_translation": "Nether Wart" + }, + { + "key": "commands.ban.failed", + "english_translation": "Nothing changed. The player is already banned" + }, + { + "key": "stat.minecraft.interact_with_stonecutter", + "english_translation": "Interactions with Stonecutter" + }, + { + "key": "item.minecraft.smithing_template.netherite_upgrade.additions_slot_description", + "english_translation": "Add Netherite Ingot" + }, + { + "key": "subtitles.block.lava.ambient", + "english_translation": "Lava pops" + }, + { + "key": "block.minecraft.scaffolding", + "english_translation": "Scaffolding" + }, + { + "key": "subtitles.entity.fox.bite", + "english_translation": "Fox bites" + }, + { + "key": "item.minecraft.potion.effect.levitation", + "english_translation": "Potion of Levitation" + }, + { + "key": "mco.upload.select.world.none", + "english_translation": "No singleplayer worlds found!" + }, + { + "key": "createWorld.customize.custom.center", + "english_translation": "Center Height" + }, + { + "key": "createWorld.customize.custom.confirmTitle", + "english_translation": "Warning!" + }, + { + "key": "subtitles.entity.camel.stand", + "english_translation": "Camel stands up" + }, + { + "key": "item.minecraft.pufferfish_spawn_egg", + "english_translation": "Pufferfish Spawn Egg" + }, + { + "key": "commands.team.option.nametagVisibility.success", + "english_translation": "Nametag visibility for team %s is now \"%s\"" + }, + { + "key": "item.minecraft.elytra", + "english_translation": "Elytra" + }, + { + "key": "biome.minecraft.deep_frozen_ocean", + "english_translation": "Deep Frozen Ocean" + }, + { + "key": "block.minecraft.banner.creeper.pink", + "english_translation": "Pink Creeper Charge" + }, + { + "key": "commands.scoreboard.players.remove.success.multiple", + "english_translation": "Removed %s from %s for %s entities" + }, + { + "key": "block.minecraft.banner.diagonal_right.blue", + "english_translation": "Blue Per Bend" + }, + { + "key": "key.inventory", + "english_translation": "Open/Close Inventory" + }, + { + "key": "structure_block.mode_info.data", + "english_translation": "Data Mode - Game Logic Marker" + }, + { + "key": "gui.socialInteractions.server_label.multiple", + "english_translation": "%s - %s players" + }, + { + "key": "options.telemetry.state.none", + "english_translation": "None" + }, + { + "key": "gamerule.doImmediateRespawn", + "english_translation": "Respawn immediately" + }, + { + "key": "advancements.adventure.voluntary_exile.title", + "english_translation": "Voluntary Exile" + }, + { + "key": "mco.backup.nobackups", + "english_translation": "This realm doesn't have any backups currently." + }, + { + "key": "gui.chatReport.selected_chat", + "english_translation": "%s Chat Message(s) Selected to Report" + }, + { + "key": "argument.entity.options.unknown", + "english_translation": "Unknown option '%s'" + }, + { + "key": "commands.place.feature.failed", + "english_translation": "Failed to place feature" + }, + { + "key": "subtitles.entity.turtle.egg_hatch", + "english_translation": "Turtle Egg hatches" + }, + { + "key": "item.minecraft.mutton", + "english_translation": "Raw Mutton" + }, + { + "key": "block.minecraft.banner.curly_border.brown", + "english_translation": "Brown Bordure Indented" + }, + { + "key": "entity.minecraft.cave_spider", + "english_translation": "Cave Spider" + }, + { + "key": "disconnect.unknownHost", + "english_translation": "Unknown host" + }, + { + "key": "gui.continue", + "english_translation": "Continue" + }, + { + "key": "controls.keybinds.title", + "english_translation": "Key Binds" + }, + { + "key": "block.minecraft.banner.half_vertical_right.magenta", + "english_translation": "Magenta Per Pale Inverted" + }, + { + "key": "subtitles.item.bundle.remove_one", + "english_translation": "Item unpacked" + }, + { + "key": "commands.data.entity.get", + "english_translation": "%s on %s after scale factor of %s is %s" + }, + { + "key": "commands.advancement.revoke.criterion.to.one.failure", + "english_translation": "Couldn't revoke criterion '%s' of advancement %s from %s as they don't have it" + }, + { + "key": "block.minecraft.skeleton_wall_skull", + "english_translation": "Skeleton Wall Skull" + }, + { + "key": "subtitles.entity.frog.death", + "english_translation": "Frog dies" + }, + { + "key": "gameMode.survival", + "english_translation": "Survival Mode" + }, + { + "key": "item.minecraft.sign", + "english_translation": "Sign" + }, + { + "key": "block.minecraft.purpur_stairs", + "english_translation": "Purpur Stairs" + }, + { + "key": "commands.scoreboard.objectives.display.alreadySet", + "english_translation": "Nothing changed. That display slot is already showing that objective" + }, + { + "key": "block.minecraft.banner.circle.green", + "english_translation": "Green Roundel" + }, + { + "key": "entity.minecraft.llama", + "english_translation": "Llama" + }, + { + "key": "subtitles.entity.iron_golem.death", + "english_translation": "Iron Golem dies" + }, + { + "key": "subtitles.entity.parrot.imitate.stray", + "english_translation": "Parrot rattles" + }, + { + "key": "item.minecraft.lingering_potion.effect.healing", + "english_translation": "Lingering Potion of Healing" + }, + { + "key": "mco.configure.world.location", + "english_translation": "Location" + }, + { + "key": "argument.float.low", + "english_translation": "Float must not be less than %s, found %s" + }, + { + "key": "block.minecraft.banner.half_vertical.brown", + "english_translation": "Brown Per Pale" + }, + { + "key": "block.minecraft.hay_block", + "english_translation": "Hay Bale" + }, + { + "key": "createWorld.customize.flat.removeLayer", + "english_translation": "Remove Layer" + }, + { + "key": "mco.configure.world.players.error", + "english_translation": "A player with the provided name does not exist" + }, + { + "key": "block.minecraft.banner.stripe_bottom.light_gray", + "english_translation": "Light Gray Base" + }, + { + "key": "block.minecraft.crimson_fungus", + "english_translation": "Crimson Fungus" + }, + { + "key": "subtitles.entity.sniffer.happy", + "english_translation": "Sniffer delights" + }, + { + "key": "selectWorld.versionJoinButton", + "english_translation": "Load Anyway" + }, + { + "key": "gameMode.adventure", + "english_translation": "Adventure Mode" + }, + { + "key": "subtitles.entity.bee.pollinate", + "english_translation": "Bee buzzes happily" + }, + { + "key": "block.minecraft.note_block", + "english_translation": "Note Block" + }, + { + "key": "item.minecraft.golden_leggings", + "english_translation": "Golden Leggings" + }, + { + "key": "item.minecraft.pumpkin_pie", + "english_translation": "Pumpkin Pie" + }, + { + "key": "subtitles.item.crop.plant", + "english_translation": "Crop planted" + }, + { + "key": "mco.configure.world.subscription.remaining.months.days", + "english_translation": "%1$s month(s), %2$s day(s)" + }, + { + "key": "subtitles.entity.camel.saddle", + "english_translation": "Saddle equips" + }, + { + "key": "commands.bossbar.create.success", + "english_translation": "Created custom bossbar %s" + }, + { + "key": "block.minecraft.banner.curly_border.lime", + "english_translation": "Lime Bordure Indented" + }, + { + "key": "mco.brokenworld.downloaded", + "english_translation": "Downloaded" + }, + { + "key": "advancements.story.mine_diamond.description", + "english_translation": "Acquire diamonds" + }, + { + "key": "block.minecraft.red_shulker_box", + "english_translation": "Red Shulker Box" + }, + { + "key": "subtitles.entity.turtle.swim", + "english_translation": "Turtle swims" + }, + { + "key": "block.minecraft.banner.flower.light_blue", + "english_translation": "Light Blue Flower Charge" + }, + { + "key": "painting.minecraft.aztec2.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "stat_type.minecraft.broken", + "english_translation": "Times Broken" + }, + { + "key": "subtitles.entity.fishing_bobber.retrieve", + "english_translation": "Bobber retrieved" + }, + { + "key": "block.minecraft.wall_torch", + "english_translation": "Wall Torch" + }, + { + "key": "entity.minecraft.horse", + "english_translation": "Horse" + }, + { + "key": "mco.backup.info.title", + "english_translation": "Changes from last backup" + }, + { + "key": "options.audioDevice", + "english_translation": "Device" + }, + { + "key": "key.spectatorOutlines", + "english_translation": "Highlight Players (Spectators)" + }, + { + "key": "block.minecraft.diorite_stairs", + "english_translation": "Diorite Stairs" + }, + { + "key": "block.minecraft.acacia_wall_hanging_sign", + "english_translation": "Acacia Wall Hanging Sign" + }, + { + "key": "block.minecraft.light_gray_terracotta", + "english_translation": "Light Gray Terracotta" + }, + { + "key": "block.minecraft.banner.piglin.black", + "english_translation": "Black Snout" + }, + { + "key": "attribute.name.generic.armor_toughness", + "english_translation": "Armor Toughness" + }, + { + "key": "block.minecraft.banner.stripe_bottom.green", + "english_translation": "Green Base" + }, + { + "key": "block.minecraft.banner.square_top_left.red", + "english_translation": "Red Chief Dexter Canton" + }, + { + "key": "death.attack.indirectMagic.item", + "english_translation": "%1$s was killed by %2$s using %3$s" + }, + { + "key": "gamerule.doMobLoot", + "english_translation": "Drop mob loot" + }, + { + "key": "item.minecraft.music_disc_otherside", + "english_translation": "Music Disc" + }, + { + "key": "block.minecraft.banner.small_stripes.brown", + "english_translation": "Brown Paly" + }, + { + "key": "block.minecraft.player_head", + "english_translation": "Player Head" + }, + { + "key": "advancements.end.enter_end_gateway.description", + "english_translation": "Escape the island" + }, + { + "key": "dataPack.validation.back", + "english_translation": "Go Back" + }, + { + "key": "item.minecraft.netherite_scrap", + "english_translation": "Netherite Scrap" + }, + { + "key": "argument.item.tag.disallowed", + "english_translation": "Tags aren't allowed here, only actual items" + }, + { + "key": "options.key.hold", + "english_translation": "Hold" + }, + { + "key": "selectWorld.recreate.error.title", + "english_translation": "An error occurred!" + }, + { + "key": "filled_map.id", + "english_translation": "Id #%s" + }, + { + "key": "gui.socialInteractions.tooltip.show", + "english_translation": "Show messages" + }, + { + "key": "subtitles.entity.phantom.flap", + "english_translation": "Phantom flaps" + }, + { + "key": "generator.single_biome_caves", + "english_translation": "Caves" + }, + { + "key": "subtitles.entity.rabbit.hurt", + "english_translation": "Rabbit hurts" + }, + { + "key": "subtitles.entity.ravager.roar", + "english_translation": "Ravager roars" + }, + { + "key": "block.minecraft.banner.mojang.blue", + "english_translation": "Blue Thing" + }, + { + "key": "mco.upload.preparing", + "english_translation": "Preparing your world" + }, + { + "key": "block.minecraft.banner.stripe_left.brown", + "english_translation": "Brown Pale Dexter" + }, + { + "key": "enchantment.minecraft.loyalty", + "english_translation": "Loyalty" + }, + { + "key": "block.minecraft.banner.circle.black", + "english_translation": "Black Roundel" + }, + { + "key": "menu.loadingForcedChunks", + "english_translation": "Loading forced chunks for dimension %s" + }, + { + "key": "subtitles.entity.illusioner.hurt", + "english_translation": "Illusioner hurts" + }, + { + "key": "block.minecraft.torchflower_crop", + "english_translation": "Torchflower Crop" + }, + { + "key": "subtitles.entity.silverfish.hurt", + "english_translation": "Silverfish hurts" + }, + { + "key": "block.minecraft.banner.square_top_right.pink", + "english_translation": "Pink Chief Sinister Canton" + }, + { + "key": "block.minecraft.banner.curly_border.blue", + "english_translation": "Blue Bordure Indented" + }, + { + "key": "item.minecraft.blade_pottery_shard", + "english_translation": "Blade Pottery Shard" + }, + { + "key": "block.minecraft.banner.square_top_left.gray", + "english_translation": "Gray Chief Dexter Canton" + }, + { + "key": "block.minecraft.mangrove_leaves", + "english_translation": "Mangrove Leaves" + }, + { + "key": "selectWorld.enterSeed", + "english_translation": "Seed for the world generator" + }, + { + "key": "subtitles.block.pointed_dripstone.land", + "english_translation": "Stalactite crashes down" + }, + { + "key": "pack.source.feature", + "english_translation": "feature" + }, + { + "key": "commands.publish.failed", + "english_translation": "Unable to host local game" + }, + { + "key": "gui.proceed", + "english_translation": "Proceed" + }, + { + "key": "block.minecraft.banner.rhombus.pink", + "english_translation": "Pink Lozenge" + }, + { + "key": "item.minecraft.blaze_rod", + "english_translation": "Blaze Rod" + }, + { + "key": "structure_block.position", + "english_translation": "Relative Position" + }, + { + "key": "item.minecraft.tipped_arrow.effect.turtle_master", + "english_translation": "Arrow of the Turtle Master" + }, + { + "key": "item.minecraft.iron_sword", + "english_translation": "Iron Sword" + }, + { + "key": "subtitles.entity.mooshroom.suspicious_milk", + "english_translation": "Mooshroom gets milked suspiciously" + }, + { + "key": "death.fell.accident.vines", + "english_translation": "%1$s fell off some vines" + }, + { + "key": "block.minecraft.banner.stripe_downleft.cyan", + "english_translation": "Cyan Bend Sinister" + }, + { + "key": "block.minecraft.banner.bricks.magenta", + "english_translation": "Magenta Field Masoned" + }, + { + "key": "gui.socialInteractions.show", + "english_translation": "Show in Chat" + }, + { + "key": "container.creative", + "english_translation": "Item Selection" + }, + { + "key": "block.minecraft.banner.mojang.lime", + "english_translation": "Lime Thing" + }, + { + "key": "entity.minecraft.armor_stand", + "english_translation": "Armor Stand" + }, + { + "key": "telemetry.property.world_load_time_ms.title", + "english_translation": "World Load Time (Milliseconds)" + }, + { + "key": "block.minecraft.banner.stripe_center.gray", + "english_translation": "Gray Pale" + }, + { + "key": "entity.minecraft.zoglin", + "english_translation": "Zoglin" + }, + { + "key": "gui.narrate.tab", + "english_translation": "%s tab" + }, + { + "key": "block.minecraft.candle_cake", + "english_translation": "Cake with Candle" + }, + { + "key": "subtitles.entity.cow.death", + "english_translation": "Cow dies" + }, + { + "key": "effect.minecraft.invisibility", + "english_translation": "Invisibility" + }, + { + "key": "gamerule.mobExplosionDropDecay.description", + "english_translation": "Some of the drops from blocks destroyed by explosions caused by mobs are lost in the explosion." + }, + { + "key": "block.minecraft.acacia_leaves", + "english_translation": "Acacia Leaves" + }, + { + "key": "block.minecraft.banner.stripe_bottom.black", + "english_translation": "Black Base" + }, + { + "key": "commands.effect.clear.everything.failed", + "english_translation": "Target has no effects to remove" + }, + { + "key": "block.minecraft.banner.gradient.red", + "english_translation": "Red Gradient" + }, + { + "key": "block.minecraft.banner.diagonal_right.lime", + "english_translation": "Lime Per Bend" + }, + { + "key": "block.minecraft.banner.flower.black", + "english_translation": "Black Flower Charge" + }, + { + "key": "options.chat.visibility", + "english_translation": "Chat" + }, + { + "key": "block.minecraft.warped_stem", + "english_translation": "Warped Stem" + }, + { + "key": "block.minecraft.soul_wall_torch", + "english_translation": "Soul Wall Torch" + }, + { + "key": "death.attack.witherSkull", + "english_translation": "%1$s was shot by a skull from %2$s" + }, + { + "key": "mco.brokenworld.reset", + "english_translation": "Reset" + }, + { + "key": "block.minecraft.banner.triangle_bottom.cyan", + "english_translation": "Cyan Chevron" + }, + { + "key": "potion.potency.5", + "english_translation": "VI" + }, + { + "key": "tutorial.craft_planks.description", + "english_translation": "The recipe book can help" + }, + { + "key": "key.keyboard.keypad.multiply", + "english_translation": "Keypad *" + }, + { + "key": "commands.scoreboard.players.add.success.single", + "english_translation": "Added %s to %s for %s (now %s)" + }, + { + "key": "item.minecraft.lingering_potion.effect.luck", + "english_translation": "Lingering Potion of Luck" + }, + { + "key": "gui.chatReport.draft.title", + "english_translation": "Edit draft chat report?" + }, + { + "key": "block.minecraft.banner.stripe_right.magenta", + "english_translation": "Magenta Pale Sinister" + }, + { + "key": "gamerule.universalAnger", + "english_translation": "Universal anger" + }, + { + "key": "subtitles.entity.cow.hurt", + "english_translation": "Cow hurts" + }, + { + "key": "subtitles.item.hoe.till", + "english_translation": "Hoe tills" + }, + { + "key": "stat.minecraft.walk_on_water_one_cm", + "english_translation": "Distance Walked on Water" + }, + { + "key": "item.minecraft.friend_pottery_shard", + "english_translation": "Friend Pottery Shard" + }, + { + "key": "commands.save.saving", + "english_translation": "Saving the game (this may take a moment!)" + }, + { + "key": "block.minecraft.dead_fire_coral_block", + "english_translation": "Dead Fire Coral Block" + }, + { + "key": "block.minecraft.birch_planks", + "english_translation": "Birch Planks" + }, + { + "key": "block.minecraft.stone_slab", + "english_translation": "Stone Slab" + }, + { + "key": "gamerule.spectatorsGenerateChunks", + "english_translation": "Allow spectators to generate terrain" + }, + { + "key": "entity.minecraft.guardian", + "english_translation": "Guardian" + }, + { + "key": "potion.potency.0", + "english_translation": "" + }, + { + "key": "gui.abuseReport.reason.false_reporting", + "english_translation": "False Reporting" + }, + { + "key": "block.minecraft.frosted_ice", + "english_translation": "Frosted Ice" + }, + { + "key": "potion.potency.4", + "english_translation": "V" + }, + { + "key": "block.minecraft.oak_slab", + "english_translation": "Oak Slab" + }, + { + "key": "commands.whitelist.alreadyOff", + "english_translation": "Whitelist is already turned off" + }, + { + "key": "potion.potency.3", + "english_translation": "IV" + }, + { + "key": "potion.potency.2", + "english_translation": "III" + }, + { + "key": "potion.potency.1", + "english_translation": "II" + }, + { + "key": "selectWorld.futureworld.error.text", + "english_translation": "Something went wrong while trying to load a world from a future version. This was a risky operation to begin with; sorry it didn't work." + }, + { + "key": "block.minecraft.pearlescent_froglight", + "english_translation": "Pearlescent Froglight" + }, + { + "key": "mco.selectServer.minigameNotSupportedInVersion", + "english_translation": "Can't play this minigame in %s" + }, + { + "key": "translation.test.args", + "english_translation": "%s %s" + }, + { + "key": "entity.minecraft.painting", + "english_translation": "Painting" + }, + { + "key": "selectWorld.experimental.details", + "english_translation": "Details" + }, + { + "key": "hanging_sign.edit", + "english_translation": "Edit Hanging Sign Message" + }, + { + "key": "entity.minecraft.villager.librarian", + "english_translation": "Librarian" + }, + { + "key": "argument.entity.options.y_rotation.description", + "english_translation": "Entity's y rotation" + }, + { + "key": "advancements.story.lava_bucket.title", + "english_translation": "Hot Stuff" + }, + { + "key": "narration.checkbox", + "english_translation": "Checkbox: %s" + }, + { + "key": "item.minecraft.vex_spawn_egg", + "english_translation": "Vex Spawn Egg" + }, + { + "key": "stat.minecraft.boat_one_cm", + "english_translation": "Distance by Boat" + }, + { + "key": "biome.minecraft.dripstone_caves", + "english_translation": "Dripstone Caves" + }, + { + "key": "subtitles.block.big_dripleaf.tilt_up", + "english_translation": "Dripleaf tilts up" + }, + { + "key": "gui.banned.description.reason_id_message", + "english_translation": "Code: %s - %s" + }, + { + "key": "advancements.adventure.spyglass_at_parrot.title", + "english_translation": "Is It a Bird?" + }, + { + "key": "block.minecraft.banner.circle.red", + "english_translation": "Red Roundel" + }, + { + "key": "debug.gamemodes.press_f4", + "english_translation": "[ F4 ]" + }, + { + "key": "block.minecraft.muddy_mangrove_roots", + "english_translation": "Muddy Mangrove Roots" + }, + { + "key": "event.minecraft.raid", + "english_translation": "Raid" + }, + { + "key": "enchantment.minecraft.power", + "english_translation": "Power" + }, + { + "key": "options.prioritizeChunkUpdates.none", + "english_translation": "Threaded" + }, + { + "key": "subtitles.entity.ravager.hurt", + "english_translation": "Ravager hurts" + }, + { + "key": "block.minecraft.warped_pressure_plate", + "english_translation": "Warped Pressure Plate" + }, + { + "key": "block.minecraft.horn_coral_fan", + "english_translation": "Horn Coral Fan" + }, + { + "key": "advancements.toast.challenge", + "english_translation": "Challenge Complete!" + }, + { + "key": "commands.experience.add.points.success.single", + "english_translation": "Gave %s experience points to %s" + }, + { + "key": "item.minecraft.zoglin_spawn_egg", + "english_translation": "Zoglin Spawn Egg" + }, + { + "key": "generator.minecraft.amplified", + "english_translation": "AMPLIFIED" + }, + { + "key": "subtitles.block.bubble_column.upwards_inside", + "english_translation": "Bubbles woosh" + }, + { + "key": "item.minecraft.lingering_potion.effect.water", + "english_translation": "Lingering Water Bottle" + }, + { + "key": "commands.team.empty.success", + "english_translation": "Removed %s member(s) from team %s" + }, + { + "key": "death.fell.accident.weeping_vines", + "english_translation": "%1$s fell off some weeping vines" + }, + { + "key": "mco.configure.world.slot.empty", + "english_translation": "Empty" + }, + { + "key": "enchantment.minecraft.lure", + "english_translation": "Lure" + }, + { + "key": "item.minecraft.miner_pottery_shard", + "english_translation": "Miner Pottery Shard" + }, + { + "key": "commands.team.option.color.unchanged", + "english_translation": "Nothing changed. That team already has that color" + }, + { + "key": "subtitles.entity.axolotl.idle_air", + "english_translation": "Axolotl chirps" + }, + { + "key": "argument.nbt.expected.value", + "english_translation": "Expected value" + }, + { + "key": "mco.backup.entry.name", + "english_translation": "Name" + }, + { + "key": "soundCategory.neutral", + "english_translation": "Friendly Creatures" + }, + { + "key": "block.minecraft.pointed_dripstone", + "english_translation": "Pointed Dripstone" + }, + { + "key": "subtitles.block.generic.place", + "english_translation": "Block placed" + }, + { + "key": "advancements.nether.summon_wither.title", + "english_translation": "Withering Heights" + }, + { + "key": "mco.configure.world.edit.subscreen.adventuremap", + "english_translation": "Some settings are disabled since your current world is an adventure" + }, + { + "key": "block.minecraft.banner.diagonal_left.white", + "english_translation": "White Per Bend Sinister" + }, + { + "key": "block.minecraft.banner.small_stripes.magenta", + "english_translation": "Magenta Paly" + }, + { + "key": "subtitles.entity.blaze.ambient", + "english_translation": "Blaze breathes" + }, + { + "key": "gamerule.fireDamage", + "english_translation": "Deal fire damage" + }, + { + "key": "commands.pardonip.failed", + "english_translation": "Nothing changed. That IP isn't banned" + }, + { + "key": "telemetry.event.game_load_times.title", + "english_translation": "Game Load Times" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.white", + "english_translation": "White Per Bend Sinister Inverted" + }, + { + "key": "telemetry.event.world_loaded.title", + "english_translation": "World Loaded" + }, + { + "key": "stat.minecraft.talked_to_villager", + "english_translation": "Talked to Villagers" + }, + { + "key": "title.multiplayer.lan", + "english_translation": "Multiplayer (LAN)" + }, + { + "key": "commands.effect.give.failed", + "english_translation": "Unable to apply this effect (target is either immune to effects, or has something stronger)" + }, + { + "key": "subtitles.entity.zombified_piglin.hurt", + "english_translation": "Zombified Piglin hurts" + }, + { + "key": "advancements.husbandry.tadpole_in_a_bucket.description", + "english_translation": "Catch a Tadpole in a Bucket" + }, + { + "key": "block.minecraft.bamboo_pressure_plate", + "english_translation": "Bamboo Pressure Plate" + }, + { + "key": "painting.minecraft.aztec.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "demo.help.buy", + "english_translation": "Purchase Now!" + }, + { + "key": "mco.error.invalid.session.title", + "english_translation": "Invalid session" + }, + { + "key": "subtitles.entity.lightning_bolt.thunder", + "english_translation": "Thunder roars" + }, + { + "key": "disconnect.loginFailedInfo.serversUnavailable", + "english_translation": "The authentication servers are currently not reachable. Please try again." + }, + { + "key": "mco.warning", + "english_translation": "Warning!" + }, + { + "key": "item.minecraft.disc_fragment_5.desc", + "english_translation": "Music Disc - 5" + }, + { + "key": "mco.configure.world.closing", + "english_translation": "Closing the realm..." + }, + { + "key": "block.minecraft.yellow_concrete", + "english_translation": "Yellow Concrete" + }, + { + "key": "entity.minecraft.villager.armorer", + "english_translation": "Armorer" + }, + { + "key": "subtitles.entity.sniffer.idle", + "english_translation": "Sniffer grunts" + }, + { + "key": "block.minecraft.cherry_stairs", + "english_translation": "Cherry Stairs" + }, + { + "key": "mco.backup.button.restore", + "english_translation": "Restore" + }, + { + "key": "gui.socialInteractions.title", + "english_translation": "Social Interactions" + }, + { + "key": "item.minecraft.ravager_spawn_egg", + "english_translation": "Ravager Spawn Egg" + }, + { + "key": "block.minecraft.twisting_vines_plant", + "english_translation": "Twisting Vines Plant" + }, + { + "key": "block.minecraft.banner.half_vertical.white", + "english_translation": "White Per Pale" + }, + { + "key": "effect.minecraft.hero_of_the_village", + "english_translation": "Hero of the Village" + }, + { + "key": "createWorld.customize.flat.layer.top", + "english_translation": "Top - %s" + }, + { + "key": "mco.reset.world.warning", + "english_translation": "This will replace the current world of your realm" + }, + { + "key": "death.attack.arrow", + "english_translation": "%1$s was shot by %2$s" + }, + { + "key": "block.minecraft.void_air", + "english_translation": "Void Air" + }, + { + "key": "item.minecraft.ghast_spawn_egg", + "english_translation": "Ghast Spawn Egg" + }, + { + "key": "block.minecraft.gray_concrete_powder", + "english_translation": "Gray Concrete Powder" + }, + { + "key": "commands.place.template.invalid", + "english_translation": "There is no template with id \"%s\"" + }, + { + "key": "multiplayer.disconnect.ip_banned", + "english_translation": "You have been IP banned from this server" + }, + { + "key": "mco.download.cancelled", + "english_translation": "Download cancelled" + }, + { + "key": "options.percent_add_value", + "english_translation": "%s: +%s%%" + }, + { + "key": "item.minecraft.firework_star.light_gray", + "english_translation": "Light Gray" + }, + { + "key": "entity.minecraft.zombie_horse", + "english_translation": "Zombie Horse" + }, + { + "key": "argument.resource.not_found", + "english_translation": "Can't find element '%s' of type '%s'" + }, + { + "key": "flat_world_preset.minecraft.bottomless_pit", + "english_translation": "Bottomless Pit" + }, + { + "key": "subtitles.entity.turtle.shamble", + "english_translation": "Turtle shambles" + }, + { + "key": "argument.entity.options.valueless", + "english_translation": "Expected value for option '%s'" + }, + { + "key": "addServer.resourcePack", + "english_translation": "Server Resource Packs" + }, + { + "key": "commands.worldborder.get", + "english_translation": "The world border is currently %s block(s) wide" + }, + { + "key": "key.screenshot", + "english_translation": "Take Screenshot" + }, + { + "key": "gui.banned.title.temporary", + "english_translation": "Account temporarily suspended" + }, + { + "key": "block.minecraft.banner.triangles_bottom.cyan", + "english_translation": "Cyan Base Indented" + }, + { + "key": "block.minecraft.white_concrete", + "english_translation": "White Concrete" + }, + { + "key": "block.minecraft.birch_wall_sign", + "english_translation": "Birch Wall Sign" + }, + { + "key": "advancements.husbandry.ride_a_boat_with_a_goat.title", + "english_translation": "Whatever Floats Your Goat!" + }, + { + "key": "block.minecraft.banner.base.gray", + "english_translation": "Fully Gray Field" + }, + { + "key": "item.minecraft.experience_bottle", + "english_translation": "Bottle o' Enchanting" + }, + { + "key": "subtitles.entity.bat.death", + "english_translation": "Bat dies" + }, + { + "key": "instrument.minecraft.sing_goat_horn", + "english_translation": "Sing" + }, + { + "key": "subtitles.block.generic.break", + "english_translation": "Block broken" + }, + { + "key": "gui.banned.description.unknownreason", + "english_translation": "We recently received a report for bad behavior by your account. Our moderators have now reviewed your case and identified that it goes against the Minecraft Community Standards." + }, + { + "key": "commands.whitelist.add.success", + "english_translation": "Added %s to the whitelist" + }, + { + "key": "commands.clone.success", + "english_translation": "Successfully cloned %s block(s)" + }, + { + "key": "death.attack.explosion", + "english_translation": "%1$s blew up" + }, + { + "key": "entity.minecraft.glow_squid", + "english_translation": "Glow Squid" + }, + { + "key": "block.minecraft.crimson_hyphae", + "english_translation": "Crimson Hyphae" + }, + { + "key": "pack.dropInfo", + "english_translation": "Drag and drop files into this window to add packs" + }, + { + "key": "block.minecraft.black_wool", + "english_translation": "Black Wool" + }, + { + "key": "selectWorld.warning.experimental.question", + "english_translation": "These settings are experimental and could one day stop working. Do you wish to proceed?" + }, + { + "key": "block.minecraft.magenta_bed", + "english_translation": "Magenta Bed" + }, + { + "key": "subtitles.entity.snow_golem.death", + "english_translation": "Snow Golem dies" + }, + { + "key": "commands.spectate.self", + "english_translation": "Cannot spectate yourself" + }, + { + "key": "item.minecraft.lingering_potion.effect.regeneration", + "english_translation": "Lingering Potion of Regeneration" + }, + { + "key": "telemetry.property.load_time_loading_overlay_ms.title", + "english_translation": "Time in Loading Screen (Milliseconds)" + }, + { + "key": "block.minecraft.banner.cross.red", + "english_translation": "Red Saltire" + }, + { + "key": "block.minecraft.red_mushroom_block", + "english_translation": "Red Mushroom Block" + }, + { + "key": "entity.minecraft.fireball", + "english_translation": "Fireball" + }, + { + "key": "instrument.minecraft.ponder_goat_horn", + "english_translation": "Ponder" + }, + { + "key": "mirror.none", + "english_translation": "|" + }, + { + "key": "subtitles.entity.zombie.converted_to_drowned", + "english_translation": "Zombie converts to Drowned" + }, + { + "key": "subtitles.entity.wandering_trader.no", + "english_translation": "Wandering Trader disagrees" + }, + { + "key": "stat.minecraft.leave_game", + "english_translation": "Games Quit" + }, + { + "key": "block.minecraft.banner.gradient_up.blue", + "english_translation": "Blue Base Gradient" + }, + { + "key": "advancements.nether.ride_strider_in_overworld_lava.title", + "english_translation": "Feels Like Home" + }, + { + "key": "item.minecraft.mooshroom_spawn_egg", + "english_translation": "Mooshroom Spawn Egg" + }, + { + "key": "commands.attribute.modifier.value.get.success", + "english_translation": "Value of modifier %s on attribute %s for entity %s is %s" + }, + { + "key": "stat.minecraft.damage_blocked_by_shield", + "english_translation": "Damage Blocked by Shield" + }, + { + "key": "item.minecraft.smithing_template.armor_trim.ingredients", + "english_translation": "Ingots & Crystals" + }, + { + "key": "argument.long.big", + "english_translation": "Long must not be more than %s, found %s" + }, + { + "key": "subtitles.entity.goat.death", + "english_translation": "Goat dies" + }, + { + "key": "item.minecraft.netherite_helmet", + "english_translation": "Netherite Helmet" + }, + { + "key": "telemetry.property.user_id.title", + "english_translation": "User ID" + }, + { + "key": "key.swapOffhand", + "english_translation": "Swap Item With Offhand" + }, + { + "key": "subtitles.item.armor.equip_chain", + "english_translation": "Chain armor jingles" + }, + { + "key": "key.jump", + "english_translation": "Jump" + }, + { + "key": "selectWorld.delete_failure", + "english_translation": "Failed to delete world" + }, + { + "key": "block.minecraft.banner.bricks.orange", + "english_translation": "Orange Field Masoned" + }, + { + "key": "selectWorld.futureworld.error.title", + "english_translation": "An error occurred!" + }, + { + "key": "block.minecraft.banner.triangle_top.yellow", + "english_translation": "Yellow Inverted Chevron" + }, + { + "key": "soundCategory.master", + "english_translation": "Master Volume" + }, + { + "key": "jigsaw_block.keep_jigsaws", + "english_translation": "Keep Jigsaws" + }, + { + "key": "subtitles.item.ink_sac.use", + "english_translation": "Ink Sac splotches" + }, + { + "key": "subtitles.entity.villager.trade", + "english_translation": "Villager trades" + }, + { + "key": "block.minecraft.frogspawn", + "english_translation": "Frogspawn" + }, + { + "key": "subtitles.entity.wolf.hurt", + "english_translation": "Wolf hurts" + }, + { + "key": "argument.entity.options.team.description", + "english_translation": "Entities on team" + }, + { + "key": "telemetry.property.advancement_game_time.title", + "english_translation": "Game Time (Ticks)" + }, + { + "key": "item.minecraft.music_disc_5", + "english_translation": "Music Disc" + }, + { + "key": "commands.team.option.nametagVisibility.unchanged", + "english_translation": "Nothing changed. Nametag visibility is already that value" + }, + { + "key": "block.minecraft.oak_pressure_plate", + "english_translation": "Oak Pressure Plate" + }, + { + "key": "mco.backup.button.download", + "english_translation": "Download latest" + }, + { + "key": "advancements.adventure.spyglass_at_dragon.title", + "english_translation": "Is It a Plane?" + }, + { + "key": "commands.title.show.actionbar.single", + "english_translation": "Showing new actionbar title for %s" + }, + { + "key": "lectern.take_book", + "english_translation": "Take Book" + }, + { + "key": "subtitles.entity.painting.break", + "english_translation": "Painting breaks" + }, + { + "key": "block.minecraft.birch_wood", + "english_translation": "Birch Wood" + }, + { + "key": "createWorld.customize.custom.randomize", + "english_translation": "Randomize" + }, + { + "key": "block.minecraft.banner.gradient_up.lime", + "english_translation": "Lime Base Gradient" + }, + { + "key": "enchantment.minecraft.thorns", + "english_translation": "Thorns" + }, + { + "key": "commands.bossbar.set.name.unchanged", + "english_translation": "Nothing changed. That's already the name of this bossbar" + }, + { + "key": "argument.criteria.invalid", + "english_translation": "Unknown criterion '%s'" + }, + { + "key": "connect.authorizing", + "english_translation": "Logging in..." + }, + { + "key": "death.attack.flyIntoWall.player", + "english_translation": "%1$s experienced kinetic energy whilst trying to escape %2$s" + }, + { + "key": "commands.tag.list.multiple.empty", + "english_translation": "There are no tags on the %s entities" + }, + { + "key": "key.keyboard.space", + "english_translation": "Space" + }, + { + "key": "key.socialInteractions", + "english_translation": "Social Interactions Screen" + }, + { + "key": "commands.team.option.deathMessageVisibility.success", + "english_translation": "Death message visibility for team %s is now \"%s\"" + }, + { + "key": "gui.chatReport.discard.return", + "english_translation": "Continue Editing" + }, + { + "key": "block.minecraft.amethyst_block", + "english_translation": "Block of Amethyst" + }, + { + "key": "item.minecraft.red_dye", + "english_translation": "Red Dye" + }, + { + "key": "subtitles.entity.painting.place", + "english_translation": "Painting placed" + }, + { + "key": "mco.minigame.world.noSelection", + "english_translation": "Please make a selection" + }, + { + "key": "block.minecraft.banner.small_stripes.orange", + "english_translation": "Orange Paly" + }, + { + "key": "subtitles.entity.iron_golem.damage", + "english_translation": "Iron Golem breaks" + }, + { + "key": "pack.openFolder", + "english_translation": "Open Pack Folder" + }, + { + "key": "addServer.resourcePack.enabled", + "english_translation": "Enabled" + }, + { + "key": "block.minecraft.air", + "english_translation": "Air" + }, + { + "key": "title.32bit.deprecation.realms.header", + "english_translation": "32-bit system detected" + }, + { + "key": "commands.place.jigsaw.failed", + "english_translation": "Failed to generate jigsaw" + }, + { + "key": "subtitles.entity.parrot.imitate.slime", + "english_translation": "Parrot squishes" + }, + { + "key": "commands.debug.alreadyRunning", + "english_translation": "The tick profiler is already started" + }, + { + "key": "block.minecraft.banner.curly_border.orange", + "english_translation": "Orange Bordure Indented" + }, + { + "key": "block.minecraft.poppy", + "english_translation": "Poppy" + }, + { + "key": "block.minecraft.cherry_hanging_sign", + "english_translation": "Cherry Hanging Sign" + }, + { + "key": "item.minecraft.firework_rocket", + "english_translation": "Firework Rocket" + }, + { + "key": "advancements.nether.create_full_beacon.title", + "english_translation": "Beaconator" + }, + { + "key": "block.minecraft.crimson_pressure_plate", + "english_translation": "Crimson Pressure Plate" + }, + { + "key": "item.canPlace", + "english_translation": "Can be placed on:" + }, + { + "key": "subtitles.entity.illusioner.prepare_mirror", + "english_translation": "Illusioner prepares mirror image" + }, + { + "key": "gamerule.doEntityDrops.description", + "english_translation": "Controls drops from minecarts (including inventories), item frames, boats, etc." + }, + { + "key": "item.minecraft.shield.brown", + "english_translation": "Brown Shield" + }, + { + "key": "subtitles.entity.wither.shoot", + "english_translation": "Wither attacks" + }, + { + "key": "mco.selectServer.configure", + "english_translation": "Configure" + }, + { + "key": "commands.debug.function.traceFailed", + "english_translation": "Failed to trace function" + }, + { + "key": "options.sensitivity.max", + "english_translation": "HYPERSPEED!!!" + }, + { + "key": "gui.up", + "english_translation": "Up" + }, + { + "key": "commands.fill.failed", + "english_translation": "No blocks were filled" + }, + { + "key": "options.prioritizeChunkUpdates.byPlayer.tooltip", + "english_translation": "Some actions within a chunk will recompile the chunk immediately. This includes block placing & destroying." + }, + { + "key": "commands.scoreboard.objectives.modify.rendertype", + "english_translation": "Changed the render type of objective %s" + }, + { + "key": "commands.advancement.revoke.criterion.to.many.success", + "english_translation": "Revoked criterion '%s' of advancement %s from %s players" + }, + { + "key": "block.minecraft.deepslate_brick_slab", + "english_translation": "Deepslate Brick Slab" + }, + { + "key": "createWorld.tab.more.title", + "english_translation": "More" + }, + { + "key": "commands.team.option.suffix.success", + "english_translation": "Team suffix set to %s" + }, + { + "key": "mco.selectServer.leave", + "english_translation": "Leave realm" + }, + { + "key": "block.minecraft.purpur_block", + "english_translation": "Purpur Block" + }, + { + "key": "item.minecraft.cooked_chicken", + "english_translation": "Cooked Chicken" + }, + { + "key": "options.accessibility.high_contrast", + "english_translation": "High Contrast" + }, + { + "key": "options.attackIndicator", + "english_translation": "Attack Indicator" + }, + { + "key": "structure_block.custom_data", + "english_translation": "Custom Data Tag Name" + }, + { + "key": "block.minecraft.oak_sign", + "english_translation": "Oak Sign" + }, + { + "key": "selectWorld.newWorld", + "english_translation": "New World" + }, + { + "key": "item.minecraft.nether_star", + "english_translation": "Nether Star" + }, + { + "key": "subtitles.entity.pillager.celebrate", + "english_translation": "Pillager cheers" + }, + { + "key": "block.minecraft.structure_block", + "english_translation": "Structure Block" + }, + { + "key": "item.minecraft.splash_potion.effect.harming", + "english_translation": "Splash Potion of Harming" + }, + { + "key": "entity.minecraft.falling_block_type", + "english_translation": "Falling %s" + }, + { + "key": "chat.link.confirm", + "english_translation": "Are you sure you want to open the following website?" + }, + { + "key": "demo.help.title", + "english_translation": "Minecraft Demo Mode" + }, + { + "key": "subtitles.entity.parrot.imitate.spider", + "english_translation": "Parrot hisses" + }, + { + "key": "mco.reset.world.seed", + "english_translation": "Seed (Optional)" + }, + { + "key": "subtitles.item.nether_wart.plant", + "english_translation": "Crop planted" + }, + { + "key": "block.minecraft.bone_block", + "english_translation": "Bone Block" + }, + { + "key": "options.ao.min", + "english_translation": "Minimum" + }, + { + "key": "block.minecraft.banner.half_vertical.magenta", + "english_translation": "Magenta Per Pale" + }, + { + "key": "chat.deleted_marker", + "english_translation": "This chat message has been deleted by the server." + }, + { + "key": "subtitles.entity.camel.dash_ready", + "english_translation": "Camel recovers" + }, + { + "key": "block.minecraft.suspicious_gravel", + "english_translation": "Suspicious Gravel" + }, + { + "key": "subtitles.entity.phantom.hurt", + "english_translation": "Phantom hurts" + }, + { + "key": "block.minecraft.azalea", + "english_translation": "Azalea" + }, + { + "key": "telemetry.property.client_id.title", + "english_translation": "Client ID" + }, + { + "key": "block.minecraft.banner.rhombus.orange", + "english_translation": "Orange Lozenge" + }, + { + "key": "key.command", + "english_translation": "Open Command" + }, + { + "key": "subtitles.entity.piglin_brute.ambient", + "english_translation": "Piglin Brute snorts" + }, + { + "key": "commands.ride.mount.failure.generic", + "english_translation": "%s couldn't start riding %s" + }, + { + "key": "sign.edit", + "english_translation": "Edit Sign Message" + }, + { + "key": "narration.checkbox.usage.focused", + "english_translation": "Press Enter to toggle" + }, + { + "key": "block.minecraft.spruce_pressure_plate", + "english_translation": "Spruce Pressure Plate" + }, + { + "key": "block.minecraft.set_spawn", + "english_translation": "Respawn point set" + }, + { + "key": "gameMode.changed", + "english_translation": "Your game mode has been updated to %s" + }, + { + "key": "subtitles.entity.parrot.imitate.zoglin", + "english_translation": "Parrot growls" + }, + { + "key": "commands.data.entity.invalid", + "english_translation": "Unable to modify player data" + }, + { + "key": "multiplayer.disconnect.invalid_packet", + "english_translation": "Server sent an invalid packet" + }, + { + "key": "item.minecraft.sheaf_pottery_shard", + "english_translation": "Sheaf Pottery Shard" + }, + { + "key": "biome.minecraft.windswept_forest", + "english_translation": "Windswept Forest" + }, + { + "key": "debug.reload_resourcepacks.message", + "english_translation": "Reloaded resource packs" + }, + { + "key": "argument.nbt.list.mixed", + "english_translation": "Can't insert %s into list of %s" + }, + { + "key": "advancements.sad_label", + "english_translation": ":(" + }, + { + "key": "item.minecraft.music_disc_strad", + "english_translation": "Music Disc" + }, + { + "key": "entity.minecraft.boat", + "english_translation": "Boat" + }, + { + "key": "advancements.adventure.summon_iron_golem.description", + "english_translation": "Summon an Iron Golem to help defend a village" + }, + { + "key": "subtitles.entity.camel.death", + "english_translation": "Camel dies" + }, + { + "key": "disconnect.ignoring_status_request", + "english_translation": "Ignoring status request" + }, + { + "key": "subtitles.entity.villager.hurt", + "english_translation": "Villager hurts" + }, + { + "key": "block.minecraft.birch_fence", + "english_translation": "Birch Fence" + }, + { + "key": "subtitles.item.brush.brushing.generic", + "english_translation": "Brushing" + }, + { + "key": "debug.crash.message", + "english_translation": "F3 + C is held down. This will crash the game unless released." + }, + { + "key": "subtitles.entity.illusioner.death", + "english_translation": "Illusioner dies" + }, + { + "key": "gui.toWorld", + "english_translation": "Back to World List" + }, + { + "key": "commands.datapack.list.enabled.success", + "english_translation": "There are %s data pack(s) enabled: %s" + }, + { + "key": "block.minecraft.banner.half_vertical.green", + "english_translation": "Green Per Pale" + }, + { + "key": "gamerule.spawnRadius", + "english_translation": "Respawn location radius" + }, + { + "key": "painting.minecraft.earth.author", + "english_translation": "Mojang" + }, + { + "key": "block.minecraft.banner.triangles_top.light_gray", + "english_translation": "Light Gray Chief Indented" + }, + { + "key": "createWorld.customize.custom.coordinateScale", + "english_translation": "Coordinate Scale" + }, + { + "key": "block.minecraft.banner.square_top_left.black", + "english_translation": "Black Chief Dexter Canton" + }, + { + "key": "effect.minecraft.conduit_power", + "english_translation": "Conduit Power" + }, + { + "key": "advancements.end.elytra.description", + "english_translation": "Find Elytra" + }, + { + "key": "subtitles.entity.blaze.burn", + "english_translation": "Blaze crackles" + }, + { + "key": "advancements.end.dragon_breath.description", + "english_translation": "Collect Dragon's Breath in a Glass Bottle" + }, + { + "key": "multiplayer.disconnect.name_taken", + "english_translation": "That name is already taken" + }, + { + "key": "disconnect.loginFailedInfo.insufficientPrivileges", + "english_translation": "Multiplayer is disabled. Please check your Microsoft account settings." + }, + { + "key": "block.minecraft.dead_horn_coral_block", + "english_translation": "Dead Horn Coral Block" + }, + { + "key": "gamerule.doVinesSpread", + "english_translation": "Vines spread" + }, + { + "key": "entity.minecraft.firework_rocket", + "english_translation": "Firework Rocket" + }, + { + "key": "block.minecraft.banner.rhombus.black", + "english_translation": "Black Lozenge" + }, + { + "key": "subtitles.entity.elder_guardian.ambient_land", + "english_translation": "Elder Guardian flaps" + }, + { + "key": "block.minecraft.waxed_exposed_cut_copper_stairs", + "english_translation": "Waxed Exposed Cut Copper Stairs" + }, + { + "key": "death.attack.outOfWorld", + "english_translation": "%1$s fell out of the world" + }, + { + "key": "options.sensitivity.min", + "english_translation": "*yawn*" + }, + { + "key": "mco.connect.authorizing", + "english_translation": "Logging in..." + }, + { + "key": "menu.quit", + "english_translation": "Quit Game" + }, + { + "key": "stat.minecraft.interact_with_cartography_table", + "english_translation": "Interactions with Cartography Table" + }, + { + "key": "block.minecraft.banner.stripe_left.white", + "english_translation": "White Pale Dexter" + }, + { + "key": "chat.queue", + "english_translation": "[+%s pending lines]" + }, + { + "key": "commands.scoreboard.players.operation.success.single", + "english_translation": "Set %s for %s to %s" + }, + { + "key": "selectWorld.experimental", + "english_translation": "Experimental" + }, + { + "key": "item.minecraft.angler_pottery_sherd", + "english_translation": "Angler Pottery Sherd" + }, + { + "key": "block.minecraft.deepslate_gold_ore", + "english_translation": "Deepslate Gold Ore" + }, + { + "key": "block.minecraft.end_stone_brick_wall", + "english_translation": "End Stone Brick Wall" + }, + { + "key": "gui.banned.description.permanent", + "english_translation": "Your account is permanently banned, which means you can’t play online or join Realms." + }, + { + "key": "subtitles.entity.puffer_fish.blow_up", + "english_translation": "Pufferfish inflates" + }, + { + "key": "enchantment.minecraft.aqua_affinity", + "english_translation": "Aqua Affinity" + }, + { + "key": "commands.scoreboard.players.reset.specific.multiple", + "english_translation": "Reset %s for %s entities" + }, + { + "key": "entity.minecraft.ender_pearl", + "english_translation": "Thrown Ender Pearl" + }, + { + "key": "block.minecraft.blue_stained_glass_pane", + "english_translation": "Blue Stained Glass Pane" + }, + { + "key": "block.minecraft.smoker", + "english_translation": "Smoker" + }, + { + "key": "gui.socialInteractions.hidden_in_chat", + "english_translation": "Chat messages from %s will be hidden" + }, + { + "key": "commands.bossbar.list.bars.some", + "english_translation": "There are %s custom bossbar(s) active: %s" + }, + { + "key": "effect.minecraft.instant_damage", + "english_translation": "Instant Damage" + }, + { + "key": "item.canBreak", + "english_translation": "Can break:" + }, + { + "key": "death.attack.trident", + "english_translation": "%1$s was impaled by %2$s" + }, + { + "key": "block.minecraft.blue_stained_glass", + "english_translation": "Blue Stained Glass" + }, + { + "key": "enchantment.minecraft.protection", + "english_translation": "Protection" + }, + { + "key": "options.guiScale.auto", + "english_translation": "Auto" + }, + { + "key": "block.minecraft.spruce_hanging_sign", + "english_translation": "Spruce Hanging Sign" + }, + { + "key": "subtitles.entity.sheep.ambient", + "english_translation": "Sheep baahs" + }, + { + "key": "block.minecraft.blue_candle", + "english_translation": "Blue Candle" + }, + { + "key": "block.minecraft.weeping_vines", + "english_translation": "Weeping Vines" + }, + { + "key": "gui.banned.reason.defamation_impersonation_false_information", + "english_translation": "Impersonation or sharing information to exploit or mislead others" + }, + { + "key": "subtitles.entity.fox.teleport", + "english_translation": "Fox teleports" + }, + { + "key": "subtitles.entity.snowball.throw", + "english_translation": "Snowball flies" + }, + { + "key": "subtitles.block.note_block.note", + "english_translation": "Note Block plays" + }, + { + "key": "block.minecraft.banner.triangles_top.white", + "english_translation": "White Chief Indented" + }, + { + "key": "enchantment.level.10", + "english_translation": "X" + }, + { + "key": "subtitles.entity.vex.charge", + "english_translation": "Vex shrieks" + }, + { + "key": "item.minecraft.black_dye", + "english_translation": "Black Dye" + }, + { + "key": "menu.playerReporting", + "english_translation": "Player Reporting" + }, + { + "key": "block.minecraft.polished_blackstone_brick_wall", + "english_translation": "Polished Blackstone Brick Wall" + }, + { + "key": "commands.time.query", + "english_translation": "The time is %s" + }, + { + "key": "advancements.end.enter_end_gateway.title", + "english_translation": "Remote Getaway" + }, + { + "key": "advancements.husbandry.make_a_sign_glow.title", + "english_translation": "Glow and Behold!" + }, + { + "key": "structure_block.button.detect_size", + "english_translation": "DETECT" + }, + { + "key": "container.loom", + "english_translation": "Loom" + }, + { + "key": "entity.minecraft.ender_dragon", + "english_translation": "Ender Dragon" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.white", + "english_translation": "White Per Fess Inverted" + }, + { + "key": "block.minecraft.anvil", + "english_translation": "Anvil" + }, + { + "key": "selectServer.edit", + "english_translation": "Edit" + }, + { + "key": "mco.backup.entry.templateName", + "english_translation": "Template Name" + }, + { + "key": "subtitles.enchant.thorns.hit", + "english_translation": "Thorns prick" + }, + { + "key": "options.ao.max", + "english_translation": "Maximum" + }, + { + "key": "block.minecraft.cyan_candle_cake", + "english_translation": "Cake with Cyan Candle" + }, + { + "key": "block.minecraft.oak_wall_sign", + "english_translation": "Oak Wall Sign" + }, + { + "key": "block.minecraft.brewing_stand", + "english_translation": "Brewing Stand" + }, + { + "key": "telemetry.property.number_of_samples.title", + "english_translation": "Sample Count" + }, + { + "key": "block.minecraft.pink_candle", + "english_translation": "Pink Candle" + }, + { + "key": "block.minecraft.banner.square_top_left.green", + "english_translation": "Green Chief Dexter Canton" + }, + { + "key": "death.attack.lightningBolt.player", + "english_translation": "%1$s was struck by lightning whilst fighting %2$s" + }, + { + "key": "options.key.toggle", + "english_translation": "Toggle" + }, + { + "key": "block.minecraft.deepslate_bricks", + "english_translation": "Deepslate Bricks" + }, + { + "key": "itemGroup.ingredients", + "english_translation": "Ingredients" + }, + { + "key": "item.minecraft.villager_spawn_egg", + "english_translation": "Villager Spawn Egg" + }, + { + "key": "effect.minecraft.absorption", + "english_translation": "Absorption" + }, + { + "key": "block.minecraft.light_gray_concrete", + "english_translation": "Light Gray Concrete" + }, + { + "key": "commands.datapack.enable.failed.no_flags", + "english_translation": "Pack '%s' cannot be enabled, since required flags are not enabled in this world: %s!" + }, + { + "key": "block.minecraft.dead_brain_coral", + "english_translation": "Dead Brain Coral" + }, + { + "key": "compliance.playtime.hours", + "english_translation": "You've been playing for %s hour(s)" + }, + { + "key": "block.minecraft.banner.rhombus.green", + "english_translation": "Green Lozenge" + }, + { + "key": "item.minecraft.saddle", + "english_translation": "Saddle" + }, + { + "key": "menu.loadingLevel", + "english_translation": "Loading world" + }, + { + "key": "structure_block.size", + "english_translation": "Structure Size" + }, + { + "key": "lanServer.otherPlayers", + "english_translation": "Settings for Other Players" + }, + { + "key": "block.minecraft.green_concrete_powder", + "english_translation": "Green Concrete Powder" + }, + { + "key": "subtitles.entity.goat.long_jump", + "english_translation": "Goat leaps" + }, + { + "key": "block.minecraft.red_mushroom", + "english_translation": "Red Mushroom" + }, + { + "key": "structure_block.integrity.integrity", + "english_translation": "Structure Integrity" + }, + { + "key": "subtitles.item.crossbow.load", + "english_translation": "Crossbow loads" + }, + { + "key": "advancements.story.shiny_gear.description", + "english_translation": "Diamond armor saves lives" + }, + { + "key": "subtitles.entity.phantom.swoop", + "english_translation": "Phantom swoops" + }, + { + "key": "block.minecraft.banner.cross.lime", + "english_translation": "Lime Saltire" + }, + { + "key": "block.minecraft.banner.stripe_downleft.light_blue", + "english_translation": "Light Blue Bend Sinister" + }, + { + "key": "book.finalizeWarning", + "english_translation": "Note! When you sign the book, it will no longer be editable." + }, + { + "key": "demo.day.2", + "english_translation": "Day Two" + }, + { + "key": "demo.day.1", + "english_translation": "This demo will last five game days. Do your best!" + }, + { + "key": "demo.day.4", + "english_translation": "Day Four" + }, + { + "key": "commands.data.block.get", + "english_translation": "%s on block %s, %s, %s after scale factor of %s is %s" + }, + { + "key": "demo.day.3", + "english_translation": "Day Three" + }, + { + "key": "enchantment.minecraft.sharpness", + "english_translation": "Sharpness" + }, + { + "key": "item.minecraft.slime_ball", + "english_translation": "Slimeball" + }, + { + "key": "demo.day.6", + "english_translation": "You have passed your fifth day. Use %s to save a screenshot of your creation." + }, + { + "key": "demo.day.5", + "english_translation": "This is your last day!" + }, + { + "key": "item.minecraft.magenta_dye", + "english_translation": "Magenta Dye" + }, + { + "key": "item.minecraft.glistering_melon_slice", + "english_translation": "Glistering Melon Slice" + }, + { + "key": "subtitles.entity.slime.attack", + "english_translation": "Slime attacks" + }, + { + "key": "subtitles.entity.enderman.ambient", + "english_translation": "Enderman vwoops" + }, + { + "key": "block.minecraft.potted_red_tulip", + "english_translation": "Potted Red Tulip" + }, + { + "key": "gamerule.playersSleepingPercentage.description", + "english_translation": "The percentage of players who must be sleeping to skip the night." + }, + { + "key": "subtitles.entity.turtle.egg_crack", + "english_translation": "Turtle Egg cracks" + }, + { + "key": "chat.tag.modified", + "english_translation": "Message modified by the server. Original:" + }, + { + "key": "gamerule.doLimitedCrafting.description", + "english_translation": "If enabled, players will be able to craft only unlocked recipes." + }, + { + "key": "advancements.husbandry.tadpole_in_a_bucket.title", + "english_translation": "Bukkit Bukkit" + }, + { + "key": "block.minecraft.banner.stripe_downright.cyan", + "english_translation": "Cyan Bend" + }, + { + "key": "item.minecraft.skull_banner_pattern.desc", + "english_translation": "Skull Charge" + }, + { + "key": "block.minecraft.banner.cross.orange", + "english_translation": "Orange Saltire" + }, + { + "key": "disconnect.closed", + "english_translation": "Connection closed" + }, + { + "key": "commands.experience.set.levels.success.single", + "english_translation": "Set %s experience levels on %s" + }, + { + "key": "container.spectatorCantOpen", + "english_translation": "Unable to open. Loot not generated yet." + }, + { + "key": "block.minecraft.banner.diagonal_left.lime", + "english_translation": "Lime Per Bend Sinister" + }, + { + "key": "block.minecraft.infested_mossy_stone_bricks", + "english_translation": "Infested Mossy Stone Bricks" + }, + { + "key": "resourcePack.vanilla.description", + "english_translation": "The default look and feel of Minecraft" + }, + { + "key": "multiplayer.disconnect.invalid_public_key_signature", + "english_translation": "Invalid signature for profile public key.\nTry restarting your game." + }, + { + "key": "death.attack.anvil", + "english_translation": "%1$s was squashed by a falling anvil" + }, + { + "key": "subtitles.entity.wandering_trader.drink_milk", + "english_translation": "Wandering Trader drinks milk" + }, + { + "key": "gui.toTitle", + "english_translation": "Back to Title Screen" + }, + { + "key": "selectServer.refresh", + "english_translation": "Refresh" + }, + { + "key": "enchantment.minecraft.swift_sneak", + "english_translation": "Swift Sneak" + }, + { + "key": "block.minecraft.banner.bricks.gray", + "english_translation": "Gray Field Masoned" + }, + { + "key": "block.minecraft.packed_ice", + "english_translation": "Packed Ice" + }, + { + "key": "gui.chatReport.observed_what", + "english_translation": "Why are you reporting this?" + }, + { + "key": "narrator.controls.unbound", + "english_translation": "%s is not bound" + }, + { + "key": "commands.effect.give.success.single", + "english_translation": "Applied effect %s to %s" + }, + { + "key": "advMode.mode.unconditional", + "english_translation": "Unconditional" + }, + { + "key": "spectatorMenu.close", + "english_translation": "Close Menu" + }, + { + "key": "block.minecraft.banner.gradient.purple", + "english_translation": "Purple Gradient" + }, + { + "key": "item.minecraft.brick", + "english_translation": "Brick" + }, + { + "key": "block.minecraft.mossy_cobblestone_slab", + "english_translation": "Mossy Cobblestone Slab" + }, + { + "key": "subtitles.ambient.cave", + "english_translation": "Eerie noise" + }, + { + "key": "subtitles.block.pointed_dripstone.drip_lava", + "english_translation": "Lava drips" + }, + { + "key": "entity.minecraft.shulker", + "english_translation": "Shulker" + }, + { + "key": "pack.available.title", + "english_translation": "Available" + }, + { + "key": "block.minecraft.banner.square_top_right.orange", + "english_translation": "Orange Chief Sinister Canton" + }, + { + "key": "commands.save.success", + "english_translation": "Saved the game" + }, + { + "key": "subtitles.item.armor.equip_diamond", + "english_translation": "Diamond armor clangs" + }, + { + "key": "subtitles.item.armor.equip_netherite", + "english_translation": "Netherite armor clanks" + }, + { + "key": "createWorld.customize.custom.useTemples", + "english_translation": "Temples" + }, + { + "key": "block.minecraft.dark_oak_stairs", + "english_translation": "Dark Oak Stairs" + }, + { + "key": "advancements.nether.uneasy_alliance.title", + "english_translation": "Uneasy Alliance" + }, + { + "key": "block.minecraft.andesite", + "english_translation": "Andesite" + }, + { + "key": "subtitles.entity.skeleton.death", + "english_translation": "Skeleton dies" + }, + { + "key": "block.minecraft.banner.stripe_middle.brown", + "english_translation": "Brown Fess" + }, + { + "key": "block.minecraft.banner.diagonal_left.green", + "english_translation": "Green Per Bend Sinister" + }, + { + "key": "block.minecraft.pink_petals", + "english_translation": "Pink Petals" + }, + { + "key": "stat.minecraft.pig_one_cm", + "english_translation": "Distance by Pig" + }, + { + "key": "subtitles.entity.zoglin.angry", + "english_translation": "Zoglin growls angrily" + }, + { + "key": "argument.entity.selector.not_allowed", + "english_translation": "Selector not allowed" + }, + { + "key": "block.minecraft.gray_carpet", + "english_translation": "Gray Carpet" + }, + { + "key": "item.nbt_tags", + "english_translation": "NBT: %s tag(s)" + }, + { + "key": "subtitles.item.armor.equip_gold", + "english_translation": "Gold armor clinks" + }, + { + "key": "potion.withAmplifier", + "english_translation": "%s %s" + }, + { + "key": "item.minecraft.diamond_leggings", + "english_translation": "Diamond Leggings" + }, + { + "key": "argument.player.entities", + "english_translation": "Only players may be affected by this command, but the provided selector includes entities" + }, + { + "key": "subtitles.entity.ravager.attack", + "english_translation": "Ravager bites" + }, + { + "key": "item.minecraft.arms_up_pottery_shard", + "english_translation": "Arms Up Pottery Shard" + }, + { + "key": "block.minecraft.cobbled_deepslate_slab", + "english_translation": "Cobbled Deepslate Slab" + }, + { + "key": "block.minecraft.banner.base.light_gray", + "english_translation": "Fully Light Gray Field" + }, + { + "key": "block.minecraft.chain_command_block", + "english_translation": "Chain Command Block" + }, + { + "key": "block.minecraft.iron_ore", + "english_translation": "Iron Ore" + }, + { + "key": "block.minecraft.banner.square_top_left.orange", + "english_translation": "Orange Chief Dexter Canton" + }, + { + "key": "multiplayer.disconnect.chat_validation_failed", + "english_translation": "Chat message validation failure" + }, + { + "key": "options.narrator.off", + "english_translation": "OFF" + }, + { + "key": "block.minecraft.purpur_pillar", + "english_translation": "Purpur Pillar" + }, + { + "key": "multiplayer.disconnect.banned.reason", + "english_translation": "You are banned from this server.\nReason: %s" + }, + { + "key": "block.minecraft.banner.triangle_top.brown", + "english_translation": "Brown Inverted Chevron" + }, + { + "key": "item.minecraft.smithing_template.netherite_upgrade.applies_to", + "english_translation": "Diamond Equipment" + }, + { + "key": "entity.minecraft.iron_golem", + "english_translation": "Iron Golem" + }, + { + "key": "subtitles.block.pointed_dripstone.drip_water_into_cauldron", + "english_translation": "Water drips into Cauldron" + }, + { + "key": "subtitles.entity.goat.prepare_ram", + "english_translation": "Goat stomps" + }, + { + "key": "advancements.adventure.walk_on_powder_snow_with_leather_boots.title", + "english_translation": "Light as a Rabbit" + }, + { + "key": "commands.save.failed", + "english_translation": "Unable to save the game (is there enough disk space?)" + }, + { + "key": "translation.test.escape", + "english_translation": "%%s %%%s %%%%s %%%%%s" + }, + { + "key": "item.minecraft.stick", + "english_translation": "Stick" + }, + { + "key": "itemGroup.buildingBlocks", + "english_translation": "Building Blocks" + }, + { + "key": "mco.brokenworld.title", + "english_translation": "Your current world is no longer supported" + }, + { + "key": "createWorld.customize.flat.height", + "english_translation": "Height" + }, + { + "key": "command.unknown.argument", + "english_translation": "Incorrect argument for command" + }, + { + "key": "lanServer.port.unavailable.new", + "english_translation": "Port not available.\nLeave the edit box empty or enter a different number between %s and %s." + }, + { + "key": "block.minecraft.deepslate_tile_stairs", + "english_translation": "Deepslate Tile Stairs" + }, + { + "key": "advancements.husbandry.allay_deliver_cake_to_note_block.title", + "english_translation": "Birthday Song" + }, + { + "key": "block.minecraft.polished_blackstone_slab", + "english_translation": "Polished Blackstone Slab" + }, + { + "key": "biome.minecraft.the_void", + "english_translation": "The Void" + }, + { + "key": "advancements.adventure.ol_betsy.title", + "english_translation": "Ol' Betsy" + }, + { + "key": "death.attack.sting.item", + "english_translation": "%1$s was stung to death by %2$s using %3$s" + }, + { + "key": "block.minecraft.light", + "english_translation": "Light" + }, + { + "key": "item.minecraft.tadpole_bucket", + "english_translation": "Bucket of Tadpole" + }, + { + "key": "advancements.adventure.throw_trident.description", + "english_translation": "Throw a Trident at something.\nNote: Throwing away your only weapon is not a good idea." + }, + { + "key": "commands.scoreboard.players.get.success", + "english_translation": "%s has %s %s" + }, + { + "key": "entity.minecraft.text_display", + "english_translation": "Text Display" + }, + { + "key": "options.chat.visibility.system", + "english_translation": "Commands Only" + }, + { + "key": "gamerule.doVinesSpread.description", + "english_translation": "Controls whether or not the Vines block spreads randomly to adjacent blocks. Does not affect other type of vine blocks such as Weeping Vines, Twisting Vines, etc." + }, + { + "key": "subtitles.entity.shulker.ambient", + "english_translation": "Shulker lurks" + }, + { + "key": "block.minecraft.redstone_torch", + "english_translation": "Redstone Torch" + }, + { + "key": "block.minecraft.banner.triangles_bottom.magenta", + "english_translation": "Magenta Base Indented" + }, + { + "key": "advancements.adventure.play_jukebox_in_meadows.title", + "english_translation": "Sound of Music" + }, + { + "key": "entity.minecraft.ghast", + "english_translation": "Ghast" + }, + { + "key": "team.collision.never", + "english_translation": "Never" + }, + { + "key": "block.minecraft.banner.cross.white", + "english_translation": "White Saltire" + }, + { + "key": "block.minecraft.light_gray_candle_cake", + "english_translation": "Cake with Light Gray Candle" + }, + { + "key": "block.minecraft.waxed_oxidized_copper", + "english_translation": "Waxed Oxidized Copper" + }, + { + "key": "multiplayer.status.cancelled", + "english_translation": "Cancelled" + }, + { + "key": "createWorld.customize.custom.useWaterLakes", + "english_translation": "Water Lakes" + }, + { + "key": "block.minecraft.mangrove_propagule", + "english_translation": "Mangrove Propagule" + }, + { + "key": "subtitles.entity.player.burp", + "english_translation": "Burp" + }, + { + "key": "gui.ok", + "english_translation": "Ok" + }, + { + "key": "gui.abuseReport.reason.child_sexual_exploitation_or_abuse.description", + "english_translation": "Someone is talking about or otherwise promoting indecent behavior involving children." + }, + { + "key": "block.minecraft.stripped_spruce_wood", + "english_translation": "Stripped Spruce Wood" + }, + { + "key": "block.minecraft.banner.half_horizontal.white", + "english_translation": "White Per Fess" + }, + { + "key": "subtitles.entity.bee.ambient", + "english_translation": "Bee buzzes" + }, + { + "key": "debug.dump_dynamic_textures.help", + "english_translation": "F3 + S = Dump dynamic textures" + }, + { + "key": "subtitles.entity.pillager.death", + "english_translation": "Pillager dies" + }, + { + "key": "chat.tag.system", + "english_translation": "Server message. Cannot be reported." + }, + { + "key": "effect.minecraft.health_boost", + "english_translation": "Health Boost" + }, + { + "key": "block.minecraft.stripped_dark_oak_log", + "english_translation": "Stripped Dark Oak Log" + }, + { + "key": "commands.give.success.multiple", + "english_translation": "Gave %s %s to %s players" + }, + { + "key": "block.minecraft.red_banner", + "english_translation": "Red Banner" + }, + { + "key": "death.attack.generic.player", + "english_translation": "%1$s died because of %2$s" + }, + { + "key": "block.minecraft.banner.flower.orange", + "english_translation": "Orange Flower Charge" + }, + { + "key": "selectWorld.dataPacks", + "english_translation": "Data Packs" + }, + { + "key": "item.minecraft.cod_bucket", + "english_translation": "Bucket of Cod" + }, + { + "key": "block.minecraft.banner.diagonal_left.black", + "english_translation": "Black Per Bend Sinister" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.brown", + "english_translation": "Brown Per Bend Inverted" + }, + { + "key": "biome.minecraft.savanna_plateau", + "english_translation": "Savanna Plateau" + }, + { + "key": "gui.no", + "english_translation": "No" + }, + { + "key": "commands.bossbar.get.max", + "english_translation": "Custom bossbar %s has a maximum of %s" + }, + { + "key": "block.minecraft.banner.stripe_middle.blue", + "english_translation": "Blue Fess" + }, + { + "key": "subtitles.entity.warden.tendril_clicks", + "english_translation": "Warden's tendrils click" + }, + { + "key": "block.minecraft.warped_fence", + "english_translation": "Warped Fence" + }, + { + "key": "mco.invites.button.reject", + "english_translation": "Reject" + }, + { + "key": "item.minecraft.water_bucket", + "english_translation": "Water Bucket" + }, + { + "key": "advancements.husbandry.allay_deliver_cake_to_note_block.description", + "english_translation": "Have an Allay drop a Cake at a Note Block" + }, + { + "key": "block.minecraft.banner.cross.light_gray", + "english_translation": "Light Gray Saltire" + }, + { + "key": "subtitles.block.conduit.activate", + "english_translation": "Conduit activates" + }, + { + "key": "death.attack.drown", + "english_translation": "%1$s drowned" + }, + { + "key": "jigsaw_block.name", + "english_translation": "Name:" + }, + { + "key": "item.minecraft.ender_dragon_spawn_egg", + "english_translation": "Ender Dragon Spawn Egg" + }, + { + "key": "block.minecraft.bell", + "english_translation": "Bell" + }, + { + "key": "item.minecraft.shield.cyan", + "english_translation": "Cyan Shield" + }, + { + "key": "subtitles.block.composter.fill", + "english_translation": "Composter filled" + }, + { + "key": "block.minecraft.banner.gradient_up.purple", + "english_translation": "Purple Base Gradient" + }, + { + "key": "createWorld.customize.buffet.title", + "english_translation": "Buffet world customization" + }, + { + "key": "block.minecraft.exposed_cut_copper", + "english_translation": "Exposed Cut Copper" + }, + { + "key": "block.minecraft.sniffer_egg", + "english_translation": "Sniffer Egg" + }, + { + "key": "item.minecraft.allay_spawn_egg", + "english_translation": "Allay Spawn Egg" + }, + { + "key": "subtitles.block.beehive.shear", + "english_translation": "Shears scrape" + }, + { + "key": "telemetry.property.load_time_total_time_ms.title", + "english_translation": "Total Load Time (Milliseconds)" + }, + { + "key": "selectServer.direct", + "english_translation": "Direct Connection" + }, + { + "key": "commands.advancement.revoke.criterion.to.many.failure", + "english_translation": "Couldn't revoke criterion '%s' of advancement %s from %s players as they don't have it" + }, + { + "key": "structure_block.position.z", + "english_translation": "relative position z" + }, + { + "key": "structure_block.position.y", + "english_translation": "relative position y" + }, + { + "key": "structure_block.position.x", + "english_translation": "relative Position x" + }, + { + "key": "block.minecraft.banner.mojang.brown", + "english_translation": "Brown Thing" + }, + { + "key": "block.minecraft.dandelion", + "english_translation": "Dandelion" + }, + { + "key": "item.minecraft.tropical_fish_spawn_egg", + "english_translation": "Tropical Fish Spawn Egg" + }, + { + "key": "biome.minecraft.beach", + "english_translation": "Beach" + }, + { + "key": "commands.team.join.success.single", + "english_translation": "Added %s to team %s" + }, + { + "key": "subtitles.entity.bee.death", + "english_translation": "Bee dies" + }, + { + "key": "subtitles.entity.evoker.celebrate", + "english_translation": "Evoker cheers" + }, + { + "key": "advancements.story.mine_diamond.title", + "english_translation": "Diamonds!" + }, + { + "key": "item.minecraft.cod_spawn_egg", + "english_translation": "Cod Spawn Egg" + }, + { + "key": "item.minecraft.music_disc_relic", + "english_translation": "Music Disc" + }, + { + "key": "entity.minecraft.villager.leatherworker", + "english_translation": "Leatherworker" + }, + { + "key": "item.minecraft.writable_book", + "english_translation": "Book and Quill" + }, + { + "key": "block.minecraft.rooted_dirt", + "english_translation": "Rooted Dirt" + }, + { + "key": "subtitles.entity.parrot.imitate.vex", + "english_translation": "Parrot vexes" + }, + { + "key": "subtitles.entity.dolphin.eat", + "english_translation": "Dolphin eats" + }, + { + "key": "subtitles.block.fire.ambient", + "english_translation": "Fire crackles" + }, + { + "key": "subtitles.entity.panda.eat", + "english_translation": "Panda eats" + }, + { + "key": "block.minecraft.banner.cross.blue", + "english_translation": "Blue Saltire" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.green", + "english_translation": "Green Per Fess Inverted" + }, + { + "key": "narration.recipe.usage", + "english_translation": "Left click to select" + }, + { + "key": "block.minecraft.banner.square_top_right.black", + "english_translation": "Black Chief Sinister Canton" + }, + { + "key": "block.minecraft.raw_gold_block", + "english_translation": "Block of Raw Gold" + }, + { + "key": "block.minecraft.banner.triangles_top.green", + "english_translation": "Green Chief Indented" + }, + { + "key": "mco.selectServer.configureRealm", + "english_translation": "Configure realm" + }, + { + "key": "item.minecraft.potion.effect.turtle_master", + "english_translation": "Potion of the Turtle Master" + }, + { + "key": "block.minecraft.gray_stained_glass_pane", + "english_translation": "Gray Stained Glass Pane" + }, + { + "key": "enchantment.minecraft.quick_charge", + "english_translation": "Quick Charge" + }, + { + "key": "block.minecraft.grindstone", + "english_translation": "Grindstone" + }, + { + "key": "subtitles.block.smoker.smoke", + "english_translation": "Smoker smokes" + }, + { + "key": "subtitles.entity.allay.item_taken", + "english_translation": "Allay allays" + }, + { + "key": "advancements.nether.obtain_ancient_debris.title", + "english_translation": "Hidden in the Depths" + }, + { + "key": "subtitles.entity.zombified_piglin.death", + "english_translation": "Zombified Piglin dies" + }, + { + "key": "advancements.nether.create_beacon.title", + "english_translation": "Bring Home the Beacon" + }, + { + "key": "block.minecraft.banner.rhombus.white", + "english_translation": "White Lozenge" + }, + { + "key": "block.minecraft.banner.bricks.light_gray", + "english_translation": "Light Gray Field Masoned" + }, + { + "key": "commands.item.block.set.success", + "english_translation": "Replaced a slot at %s, %s, %s with %s" + }, + { + "key": "team.collision.pushOtherTeams", + "english_translation": "Push other teams" + }, + { + "key": "deathScreen.title.hardcore", + "english_translation": "Game Over!" + }, + { + "key": "item.minecraft.spider_spawn_egg", + "english_translation": "Spider Spawn Egg" + }, + { + "key": "debug.pause_focus.off", + "english_translation": "Pause on lost focus: disabled" + }, + { + "key": "mco.configure.world.subscription.less_than_a_day", + "english_translation": "Less than a day" + }, + { + "key": "gui.chatReport.send.no_reported_messages", + "english_translation": "Please select at least one chat message to report" + }, + { + "key": "commands.tag.remove.success.single", + "english_translation": "Removed tag '%s' from %s" + }, + { + "key": "block.minecraft.green_bed", + "english_translation": "Green Bed" + }, + { + "key": "advancements.story.follow_ender_eye.title", + "english_translation": "Eye Spy" + }, + { + "key": "biome.minecraft.swamp", + "english_translation": "Swamp" + }, + { + "key": "mco.selectServer.open", + "english_translation": "Open realm" + }, + { + "key": "death.attack.cactus", + "english_translation": "%1$s was pricked to death" + }, + { + "key": "mco.reset.world.inspiration", + "english_translation": "Inspiration" + }, + { + "key": "block.minecraft.crimson_trapdoor", + "english_translation": "Crimson Trapdoor" + }, + { + "key": "subtitles.entity.dolphin.hurt", + "english_translation": "Dolphin hurts" + }, + { + "key": "commands.enchant.failed.incompatible", + "english_translation": "%s cannot support that enchantment" + }, + { + "key": "block.minecraft.red_bed", + "english_translation": "Red Bed" + }, + { + "key": "merchant.current_level", + "english_translation": "Trader's current level" + }, + { + "key": "block.minecraft.dead_horn_coral_wall_fan", + "english_translation": "Dead Horn Coral Wall Fan" + }, + { + "key": "advMode.mode", + "english_translation": "Mode" + }, + { + "key": "item.minecraft.firework_star.orange", + "english_translation": "Orange" + }, + { + "key": "block.minecraft.banner.square_top_right.gray", + "english_translation": "Gray Chief Sinister Canton" + }, + { + "key": "death.fell.assist", + "english_translation": "%1$s was doomed to fall by %2$s" + }, + { + "key": "gamerule.globalSoundEvents.description", + "english_translation": "When certain game events happen, like a boss spawning, the sound is heard everywhere." + }, + { + "key": "entity.minecraft.player", + "english_translation": "Player" + }, + { + "key": "block.minecraft.smooth_basalt", + "english_translation": "Smooth Basalt" + }, + { + "key": "multiplayer.disconnect.server_full", + "english_translation": "The server is full!" + }, + { + "key": "entity.minecraft.donkey", + "english_translation": "Donkey" + }, + { + "key": "subtitles.item.bucket.empty", + "english_translation": "Bucket empties" + }, + { + "key": "item.minecraft.turtle_helmet", + "english_translation": "Turtle Shell" + }, + { + "key": "block.minecraft.stripped_acacia_log", + "english_translation": "Stripped Acacia Log" + }, + { + "key": "subtitles.entity.panda.hurt", + "english_translation": "Panda hurts" + }, + { + "key": "subtitles.entity.panda.pre_sneeze", + "english_translation": "Panda's nose tickles" + }, + { + "key": "mco.time.daysAgo", + "english_translation": "%1$s day(s) ago" + }, + { + "key": "subtitles.entity.allay.item_thrown", + "english_translation": "Allay tosses" + }, + { + "key": "block.minecraft.magenta_concrete", + "english_translation": "Magenta Concrete" + }, + { + "key": "entity.minecraft.arrow", + "english_translation": "Arrow" + }, + { + "key": "item.minecraft.netherite_axe", + "english_translation": "Netherite Axe" + }, + { + "key": "block.minecraft.birch_stairs", + "english_translation": "Birch Stairs" + }, + { + "key": "mco.selectServer.expires.days", + "english_translation": "Expires in %s days" + }, + { + "key": "advancements.adventure.salvage_sherd.description", + "english_translation": "Brush a Suspicious block to obtain a Pottery Sherd" + }, + { + "key": "lanServer.title", + "english_translation": "LAN World" + }, + { + "key": "subtitles.entity.polar_bear.ambient", + "english_translation": "Polar Bear groans" + }, + { + "key": "commands.title.reset.single", + "english_translation": "Reset title options for %s" + }, + { + "key": "block.minecraft.banner.half_vertical_right.light_blue", + "english_translation": "Light Blue Per Pale Inverted" + }, + { + "key": "item.minecraft.lingering_potion.effect.slow_falling", + "english_translation": "Lingering Potion of Slow Falling" + }, + { + "key": "entity.minecraft.lightning_bolt", + "english_translation": "Lightning Bolt" + }, + { + "key": "item.minecraft.firework_star.black", + "english_translation": "Black" + }, + { + "key": "commands.banip.info", + "english_translation": "This ban affects %s player(s): %s" + }, + { + "key": "commands.scoreboard.objectives.add.duplicate", + "english_translation": "An objective already exists by that name" + }, + { + "key": "block.minecraft.cherry_log", + "english_translation": "Cherry Log" + }, + { + "key": "stat.minecraft.raid_trigger", + "english_translation": "Raids Triggered" + }, + { + "key": "options.video", + "english_translation": "Video Settings..." + }, + { + "key": "block.minecraft.bamboo_hanging_sign", + "english_translation": "Bamboo Hanging Sign" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.magenta", + "english_translation": "Magenta Per Fess Inverted" + }, + { + "key": "mco.configure.world.buttons.open", + "english_translation": "Open realm" + }, + { + "key": "block.minecraft.banner.square_top_right.green", + "english_translation": "Green Chief Sinister Canton" + }, + { + "key": "block.minecraft.banner.stripe_center.pink", + "english_translation": "Pink Pale" + }, + { + "key": "itemGroup.inventory", + "english_translation": "Survival Inventory" + }, + { + "key": "block.minecraft.banner.triangles_top.black", + "english_translation": "Black Chief Indented" + }, + { + "key": "options.chunks", + "english_translation": "%s chunks" + }, + { + "key": "item.minecraft.salmon", + "english_translation": "Raw Salmon" + }, + { + "key": "block.minecraft.comparator", + "english_translation": "Redstone Comparator" + }, + { + "key": "item.minecraft.tipped_arrow.effect.healing", + "english_translation": "Arrow of Healing" + }, + { + "key": "item.minecraft.beetroot_seeds", + "english_translation": "Beetroot Seeds" + }, + { + "key": "item.minecraft.totem_of_undying", + "english_translation": "Totem of Undying" + }, + { + "key": "subtitles.entity.tropical_fish.flop", + "english_translation": "Tropical Fish flops" + }, + { + "key": "block.minecraft.banner.curly_border.magenta", + "english_translation": "Magenta Bordure Indented" + }, + { + "key": "item.minecraft.cauldron", + "english_translation": "Cauldron" + }, + { + "key": "advancements.nether.obtain_crying_obsidian.description", + "english_translation": "Obtain Crying Obsidian" + }, + { + "key": "block.minecraft.banner.flower.cyan", + "english_translation": "Cyan Flower Charge" + }, + { + "key": "commands.team.option.seeFriendlyInvisibles.enabled", + "english_translation": "Team %s can now see invisible teammates" + }, + { + "key": "commands.effect.clear.everything.success.multiple", + "english_translation": "Removed every effect from %s targets" + }, + { + "key": "block.minecraft.banner.square_top_right.white", + "english_translation": "White Chief Sinister Canton" + }, + { + "key": "demo.reminder", + "english_translation": "The demo time has expired. Buy the game to continue or start a new world!" + }, + { + "key": "block.minecraft.dead_fire_coral_wall_fan", + "english_translation": "Dead Fire Coral Wall Fan" + }, + { + "key": "block.minecraft.magenta_banner", + "english_translation": "Magenta Banner" + }, + { + "key": "selectWorld.select", + "english_translation": "Play Selected World" + }, + { + "key": "block.minecraft.wither_rose", + "english_translation": "Wither Rose" + }, + { + "key": "stat.minecraft.strider_one_cm", + "english_translation": "Distance by Strider" + }, + { + "key": "debug.gamemodes.help", + "english_translation": "F3 + F4 = Open game mode switcher" + }, + { + "key": "advancements.nether.get_wither_skull.description", + "english_translation": "Obtain a Wither Skeleton's skull" + }, + { + "key": "structure_block.mode.load", + "english_translation": "Load" + }, + { + "key": "debug.advanced_tooltips.off", + "english_translation": "Advanced tooltips: hidden" + }, + { + "key": "item.minecraft.firework_star.green", + "english_translation": "Green" + }, + { + "key": "chat.tag.not_secure", + "english_translation": "Unverified message. Cannot be reported." + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.black", + "english_translation": "Black Per Fess Inverted" + }, + { + "key": "block.minecraft.brick_wall", + "english_translation": "Brick Wall" + }, + { + "key": "item.minecraft.howl_pottery_shard", + "english_translation": "Howl Pottery Shard" + }, + { + "key": "subtitles.entity.skeleton_horse.hurt", + "english_translation": "Skeleton Horse hurts" + }, + { + "key": "item.minecraft.lingering_potion.effect.thick", + "english_translation": "Thick Lingering Potion" + }, + { + "key": "block.minecraft.bee_nest", + "english_translation": "Bee Nest" + }, + { + "key": "mco.activity.title", + "english_translation": "Player activity" + }, + { + "key": "block.minecraft.cut_copper", + "english_translation": "Cut Copper" + }, + { + "key": "item.minecraft.firework_star.pink", + "english_translation": "Pink" + }, + { + "key": "block.minecraft.spruce_planks", + "english_translation": "Spruce Planks" + }, + { + "key": "item.minecraft.map", + "english_translation": "Empty Map" + }, + { + "key": "block.minecraft.lapis_block", + "english_translation": "Block of Lapis Lazuli" + }, + { + "key": "item.minecraft.honeycomb", + "english_translation": "Honeycomb" + }, + { + "key": "debug.show_hitboxes.help", + "english_translation": "F3 + B = Show hitboxes" + }, + { + "key": "item.minecraft.magma_cream", + "english_translation": "Magma Cream" + }, + { + "key": "commands.team.option.name.unchanged", + "english_translation": "Nothing changed. That team already has that name" + }, + { + "key": "item.minecraft.lingering_potion.effect.empty", + "english_translation": "Lingering Uncraftable Potion" + }, + { + "key": "options.accessibility.title", + "english_translation": "Accessibility Settings..." + }, + { + "key": "subtitles.entity.dolphin.play", + "english_translation": "Dolphin plays" + }, + { + "key": "item.minecraft.music_disc_11", + "english_translation": "Music Disc" + }, + { + "key": "item.minecraft.music_disc_13", + "english_translation": "Music Disc" + }, + { + "key": "block.minecraft.green_banner", + "english_translation": "Green Banner" + }, + { + "key": "item.minecraft.firework_star.shape", + "english_translation": "Unknown Shape" + }, + { + "key": "entity.minecraft.killer_bunny", + "english_translation": "The Killer Bunny" + }, + { + "key": "commands.data.entity.modified", + "english_translation": "Modified entity data of %s" + }, + { + "key": "block.minecraft.red_sandstone_slab", + "english_translation": "Red Sandstone Slab" + }, + { + "key": "argument.pos.mixed", + "english_translation": "Cannot mix world & local coordinates (everything must either use ^ or not)" + }, + { + "key": "gui.banned.description.reason_id", + "english_translation": "Code: %s" + }, + { + "key": "item.minecraft.golden_horse_armor", + "english_translation": "Golden Horse Armor" + }, + { + "key": "biome.minecraft.nether_wastes", + "english_translation": "Nether Wastes" + }, + { + "key": "stat.minecraft.crouch_one_cm", + "english_translation": "Distance Crouched" + }, + { + "key": "painting.minecraft.kebab.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "subtitles.entity.chicken.hurt", + "english_translation": "Chicken hurts" + }, + { + "key": "subtitles.block.dispenser.fail", + "english_translation": "Dispenser failed" + }, + { + "key": "commands.bossbar.set.value.success", + "english_translation": "Custom bossbar %s has changed value to %s" + }, + { + "key": "death.attack.mob.item", + "english_translation": "%1$s was slain by %2$s using %3$s" + }, + { + "key": "argument.time.invalid_unit", + "english_translation": "Invalid unit" + }, + { + "key": "subtitles.entity.horse.angry", + "english_translation": "Horse neighs" + }, + { + "key": "block.minecraft.end_portal_frame", + "english_translation": "End Portal Frame" + }, + { + "key": "item.minecraft.tipped_arrow.effect.poison", + "english_translation": "Arrow of Poison" + }, + { + "key": "subtitles.entity.wolf.growl", + "english_translation": "Wolf growls" + }, + { + "key": "advancements.end.kill_dragon.title", + "english_translation": "Free the End" + }, + { + "key": "block.minecraft.waxed_exposed_copper", + "english_translation": "Waxed Exposed Copper" + }, + { + "key": "item.minecraft.potion.effect.mundane", + "english_translation": "Mundane Potion" + }, + { + "key": "stat.minecraft.eat_cake_slice", + "english_translation": "Cake Slices Eaten" + }, + { + "key": "block.minecraft.calibrated_sculk_sensor", + "english_translation": "Calibrated Sculk Sensor" + }, + { + "key": "block.minecraft.shroomlight", + "english_translation": "Shroomlight" + }, + { + "key": "block.minecraft.banner.skull.magenta", + "english_translation": "Magenta Skull Charge" + }, + { + "key": "item.minecraft.skull_banner_pattern", + "english_translation": "Banner Pattern" + }, + { + "key": "selectWorld.edit.optimize", + "english_translation": "Optimize World" + }, + { + "key": "commands.bossbar.get.players.none", + "english_translation": "Custom bossbar %s has no players currently online" + }, + { + "key": "entity.minecraft.strider", + "english_translation": "Strider" + }, + { + "key": "argument.block.property.duplicate", + "english_translation": "Property '%s' can only be set once for block %s" + }, + { + "key": "subtitles.entity.parrot.imitate.vindicator", + "english_translation": "Parrot mutters" + }, + { + "key": "subtitles.entity.parrot.imitate.zombie_villager", + "english_translation": "Parrot groans" + }, + { + "key": "debug.reload_chunks.message", + "english_translation": "Reloading all chunks" + }, + { + "key": "mco.selectServer.minigame", + "english_translation": "Minigame:" + }, + { + "key": "createWorld.customize.custom.next", + "english_translation": "Next Page" + }, + { + "key": "stat.minecraft.open_enderchest", + "english_translation": "Ender Chests Opened" + }, + { + "key": "subtitles.entity.parrot.fly", + "english_translation": "Parrot flutters" + }, + { + "key": "mco.configure.world.invites.remove.tooltip", + "english_translation": "Remove" + }, + { + "key": "subtitles.entity.allay.ambient_without_item", + "english_translation": "Allay yearns" + }, + { + "key": "optimizeWorld.confirm.description", + "english_translation": "This will attempt to optimize your world by making sure all data is stored in the most recent game format. This can take a very long time, depending on your world. Once done, your world may play faster but will no longer be compatible with older versions of the game. Are you sure you wish to proceed?" + }, + { + "key": "block.minecraft.orange_wool", + "english_translation": "Orange Wool" + }, + { + "key": "item.minecraft.diamond", + "english_translation": "Diamond" + }, + { + "key": "chat.disabled.profile", + "english_translation": "Chat not allowed by account settings. Press '%s' again for more information." + }, + { + "key": "painting.minecraft.wither.author", + "english_translation": "Mojang" + }, + { + "key": "item.minecraft.copper_ingot", + "english_translation": "Copper Ingot" + }, + { + "key": "key.keyboard.keypad.decimal", + "english_translation": "Keypad Decimal" + }, + { + "key": "block.minecraft.orange_shulker_box", + "english_translation": "Orange Shulker Box" + }, + { + "key": "commands.teleport.invalidPosition", + "english_translation": "Invalid position for teleport" + }, + { + "key": "subtitles.entity.phantom.death", + "english_translation": "Phantom dies" + }, + { + "key": "gamerule.lavaSourceConversion", + "english_translation": "Lava converts to source" + }, + { + "key": "item.minecraft.diamond_hoe", + "english_translation": "Diamond Hoe" + }, + { + "key": "commands.tag.add.success.single", + "english_translation": "Added tag '%s' to %s" + }, + { + "key": "narrator.button.difficulty_lock.locked", + "english_translation": "Locked" + }, + { + "key": "death.attack.message_too_long", + "english_translation": "Actually, the message was too long to deliver fully. Sorry! Here's stripped version: %s" + }, + { + "key": "block.minecraft.banner.globe.cyan", + "english_translation": "Cyan Globe" + }, + { + "key": "block.minecraft.banner.diagonal_left.blue", + "english_translation": "Blue Per Bend Sinister" + }, + { + "key": "block.minecraft.banner.half_horizontal.green", + "english_translation": "Green Per Fess" + }, + { + "key": "commands.scoreboard.players.enable.invalid", + "english_translation": "Enable only works on trigger-objectives" + }, + { + "key": "advancements.nether.netherite_armor.title", + "english_translation": "Cover Me in Debris" + }, + { + "key": "painting.minecraft.sunset.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "commands.clear.test.multiple", + "english_translation": "Found %s matching item(s) on %s players" + }, + { + "key": "commands.summon.success", + "english_translation": "Summoned new %s" + }, + { + "key": "subtitles.entity.cat.ambient", + "english_translation": "Cat meows" + }, + { + "key": "block.minecraft.horn_coral", + "english_translation": "Horn Coral" + }, + { + "key": "item.minecraft.raw_iron", + "english_translation": "Raw Iron" + }, + { + "key": "subtitles.entity.enderman.hurt", + "english_translation": "Enderman hurts" + }, + { + "key": "subtitles.entity.husk.death", + "english_translation": "Husk dies" + }, + { + "key": "subtitles.entity.piglin.step", + "english_translation": "Piglin steps" + }, + { + "key": "effect.minecraft.hunger", + "english_translation": "Hunger" + }, + { + "key": "block.minecraft.gray_candle", + "english_translation": "Gray Candle" + }, + { + "key": "mco.selectServer.closeserver", + "english_translation": "Close realm" + }, + { + "key": "mco.time.now", + "english_translation": "right now" + }, + { + "key": "item.minecraft.lingering_potion.effect.mundane", + "english_translation": "Mundane Lingering Potion" + }, + { + "key": "multiplayer.status.pinging", + "english_translation": "Pinging..." + }, + { + "key": "commands.forceload.removed.all", + "english_translation": "Unmarked all force loaded chunks in %s" + }, + { + "key": "block.minecraft.dead_bubble_coral_block", + "english_translation": "Dead Bubble Coral Block" + }, + { + "key": "item.minecraft.music_disc_pigstep", + "english_translation": "Music Disc" + }, + { + "key": "subtitles.entity.player.freeze_hurt", + "english_translation": "Player freezes" + }, + { + "key": "block.minecraft.banner.square_top_left.pink", + "english_translation": "Pink Chief Dexter Canton" + }, + { + "key": "block.minecraft.banner.half_vertical.purple", + "english_translation": "Purple Per Pale" + }, + { + "key": "block.minecraft.dark_oak_pressure_plate", + "english_translation": "Dark Oak Pressure Plate" + }, + { + "key": "subtitles.entity.drowned.shoot", + "english_translation": "Drowned throws Trident" + }, + { + "key": "block.minecraft.crimson_roots", + "english_translation": "Crimson Roots" + }, + { + "key": "biome.minecraft.the_end", + "english_translation": "The End" + }, + { + "key": "effect.minecraft.haste", + "english_translation": "Haste" + }, + { + "key": "block.minecraft.polished_blackstone_stairs", + "english_translation": "Polished Blackstone Stairs" + }, + { + "key": "options.showSubtitles", + "english_translation": "Show Subtitles" + }, + { + "key": "block.minecraft.banner.square_bottom_left.light_blue", + "english_translation": "Light Blue Base Dexter Canton" + }, + { + "key": "advancements.adventure.craft_decorated_pot_using_only_sherds.title", + "english_translation": "Careful Restoration" + }, + { + "key": "advancements.husbandry.silk_touch_nest.description", + "english_translation": "Move a Bee Nest, with 3 Bees inside, using Silk Touch" + }, + { + "key": "gui.copy_link_to_clipboard", + "english_translation": "Copy Link to Clipboard" + }, + { + "key": "block.minecraft.nether_quartz_ore", + "english_translation": "Nether Quartz Ore" + }, + { + "key": "color.minecraft.cyan", + "english_translation": "Cyan" + }, + { + "key": "subtitles.entity.ravager.step", + "english_translation": "Ravager steps" + }, + { + "key": "debug.advanced_tooltips.on", + "english_translation": "Advanced tooltips: shown" + }, + { + "key": "commands.seed.success", + "english_translation": "Seed: %s" + }, + { + "key": "argument.entity.options.predicate.description", + "english_translation": "Custom predicate" + }, + { + "key": "subtitles.entity.strider.retreat", + "english_translation": "Strider retreats" + }, + { + "key": "enchantment.minecraft.impaling", + "english_translation": "Impaling" + }, + { + "key": "block.minecraft.banner.stripe_left.cyan", + "english_translation": "Cyan Pale Dexter" + }, + { + "key": "block.minecraft.crimson_button", + "english_translation": "Crimson Button" + }, + { + "key": "advancements.story.upgrade_tools.title", + "english_translation": "Getting an Upgrade" + }, + { + "key": "createWorld.customize.custom.useRavines", + "english_translation": "Ravines" + }, + { + "key": "subtitles.entity.pig.ambient", + "english_translation": "Pig oinks" + }, + { + "key": "block.minecraft.banner.half_horizontal.black", + "english_translation": "Black Per Fess" + }, + { + "key": "block.minecraft.banner.stripe_right.pink", + "english_translation": "Pink Pale Sinister" + }, + { + "key": "trim_material.minecraft.copper", + "english_translation": "Copper Material" + }, + { + "key": "narrator.toast.disabled", + "english_translation": "Narrator Disabled" + }, + { + "key": "block.minecraft.banner.gradient.black", + "english_translation": "Black Gradient" + }, + { + "key": "block.minecraft.ochre_froglight", + "english_translation": "Ochre Froglight" + }, + { + "key": "enchantment.level.8", + "english_translation": "VIII" + }, + { + "key": "enchantment.level.7", + "english_translation": "VII" + }, + { + "key": "enchantment.level.6", + "english_translation": "VI" + }, + { + "key": "enchantment.level.5", + "english_translation": "V" + }, + { + "key": "enchantment.level.4", + "english_translation": "IV" + }, + { + "key": "enchantment.level.3", + "english_translation": "III" + }, + { + "key": "enchantment.level.2", + "english_translation": "II" + }, + { + "key": "narration.suggestion.tooltip", + "english_translation": "Selected suggestion %s out of %s: %s (%s)" + }, + { + "key": "enchantment.level.1", + "english_translation": "I" + }, + { + "key": "advancements.adventure.spyglass_at_parrot.description", + "english_translation": "Look at a Parrot through a Spyglass" + }, + { + "key": "commands.forceload.added.single", + "english_translation": "Marked chunk %s in %s to be force loaded" + }, + { + "key": "enchantment.level.9", + "english_translation": "IX" + }, + { + "key": "item.minecraft.stone_shovel", + "english_translation": "Stone Shovel" + }, + { + "key": "item.minecraft.arrow", + "english_translation": "Arrow" + }, + { + "key": "subtitles.block.end_portal.spawn", + "english_translation": "End Portal opens" + }, + { + "key": "block.minecraft.banner.base.magenta", + "english_translation": "Fully Magenta Field" + }, + { + "key": "advMode.mode.sequence", + "english_translation": "Chain" + }, + { + "key": "options.hideLightningFlashes.tooltip", + "english_translation": "Prevents Lightning Bolts from making the sky flash. The bolts themselves will still be visible." + }, + { + "key": "block.minecraft.yellow_wool", + "english_translation": "Yellow Wool" + }, + { + "key": "advancements.husbandry.feed_snifflet.description", + "english_translation": "Feed a Snifflet" + }, + { + "key": "mco.terms.buttons.agree", + "english_translation": "Agree" + }, + { + "key": "block.minecraft.oak_wall_hanging_sign", + "english_translation": "Oak Wall Hanging Sign" + }, + { + "key": "block.minecraft.crimson_fence", + "english_translation": "Crimson Fence" + }, + { + "key": "advancements.adventure.avoid_vibration.title", + "english_translation": "Sneak 100" + }, + { + "key": "attribute.name.generic.luck", + "english_translation": "Luck" + }, + { + "key": "attribute.name.generic.attack_speed", + "english_translation": "Attack Speed" + }, + { + "key": "block.minecraft.banner.gradient.lime", + "english_translation": "Lime Gradient" + }, + { + "key": "block.minecraft.banner.stripe_downright.brown", + "english_translation": "Brown Bend" + }, + { + "key": "commands.pardonip.invalid", + "english_translation": "Invalid IP address" + }, + { + "key": "selectWorld.load_folder_access", + "english_translation": "Unable to read or access folder where game worlds are saved!" + }, + { + "key": "advancements.adventure.play_jukebox_in_meadows.description", + "english_translation": "Make the Meadows come alive with the sound of music from a Jukebox" + }, + { + "key": "key.keyboard.equal", + "english_translation": "=" + }, + { + "key": "mco.configure.world.subscription.day", + "english_translation": "day" + }, + { + "key": "entity.minecraft.polar_bear", + "english_translation": "Polar Bear" + }, + { + "key": "subtitles.entity.warden.sniff", + "english_translation": "Warden sniffs" + }, + { + "key": "block.minecraft.green_candle_cake", + "english_translation": "Cake with Green Candle" + }, + { + "key": "narration.recipe.usage.more", + "english_translation": "Right click to show more recipes" + }, + { + "key": "painting.random", + "english_translation": "Random variant" + }, + { + "key": "subtitles.entity.villager.work_farmer", + "english_translation": "Farmer works" + }, + { + "key": "block.minecraft.banner.mojang.orange", + "english_translation": "Orange Thing" + }, + { + "key": "key.advancements", + "english_translation": "Advancements" + }, + { + "key": "subtitles.block.tripwire.detach", + "english_translation": "Tripwire detaches" + }, + { + "key": "block.minecraft.cracked_deepslate_tiles", + "english_translation": "Cracked Deepslate Tiles" + }, + { + "key": "death.attack.starve.player", + "english_translation": "%1$s starved to death whilst fighting %2$s" + }, + { + "key": "item.minecraft.elder_guardian_spawn_egg", + "english_translation": "Elder Guardian Spawn Egg" + }, + { + "key": "block.minecraft.stripped_mangrove_wood", + "english_translation": "Stripped Mangrove Wood" + }, + { + "key": "painting.minecraft.graham.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "painting.minecraft.wanderer.title", + "english_translation": "Wanderer" + }, + { + "key": "block.minecraft.chiseled_deepslate", + "english_translation": "Chiseled Deepslate" + }, + { + "key": "item.minecraft.spectral_arrow", + "english_translation": "Spectral Arrow" + }, + { + "key": "stat.minecraft.interact_with_loom", + "english_translation": "Interactions with Loom" + }, + { + "key": "subtitles.item.brush.brushing.sand.complete", + "english_translation": "Brushing Sand completed" + }, + { + "key": "block.minecraft.banner.piglin.lime", + "english_translation": "Lime Snout" + }, + { + "key": "selectWorld.versionQuestion", + "english_translation": "Do you really want to load this world?" + }, + { + "key": "item.minecraft.salmon_bucket", + "english_translation": "Bucket of Salmon" + }, + { + "key": "advancements.husbandry.root.description", + "english_translation": "The world is full of friends and food" + }, + { + "key": "outOfMemory.message", + "english_translation": "Minecraft has run out of memory.\n\nThis could be caused by a bug in the game or by the Java Virtual Machine not being allocated enough memory.\n\nTo prevent level corruption, the current game has quit. We've tried to free up enough memory to let you go back to the main menu and back to playing, but this may not have worked.\n\nPlease restart the game if you see this message again." + }, + { + "key": "biome.minecraft.crimson_forest", + "english_translation": "Crimson Forest" + }, + { + "key": "block.minecraft.banner.gradient_up.light_gray", + "english_translation": "Light Gray Base Gradient" + }, + { + "key": "subtitles.entity.enderman.stare", + "english_translation": "Enderman cries out" + }, + { + "key": "block.minecraft.cyan_banner", + "english_translation": "Cyan Banner" + }, + { + "key": "block.minecraft.andesite_slab", + "english_translation": "Andesite Slab" + }, + { + "key": "mco.backup.entry.worldType", + "english_translation": "World Type" + }, + { + "key": "entity.minecraft.goat", + "english_translation": "Goat" + }, + { + "key": "commands.item.entity.set.success.multiple", + "english_translation": "Replaced a slot on %s entities with %s" + }, + { + "key": "block.minecraft.banner.diagonal_right.white", + "english_translation": "White Per Bend" + }, + { + "key": "subtitles.entity.goat.step", + "english_translation": "Goat steps" + }, + { + "key": "commands.save.enabled", + "english_translation": "Automatic saving is now enabled" + }, + { + "key": "item.minecraft.golden_carrot", + "english_translation": "Golden Carrot" + }, + { + "key": "mco.upload.button.name", + "english_translation": "Upload" + }, + { + "key": "commands.place.structure.failed", + "english_translation": "Failed to place structure" + }, + { + "key": "block.minecraft.pitcher_plant", + "english_translation": "Pitcher Plant" + }, + { + "key": "commands.spreadplayers.failed.entities", + "english_translation": "Could not spread %s entity/entities around %s, %s (too many entities for space - try using spread of at most %s)" + }, + { + "key": "item.disabled", + "english_translation": "Disabled item" + }, + { + "key": "block.minecraft.banner.stripe_downleft.black", + "english_translation": "Black Bend Sinister" + }, + { + "key": "generator.custom", + "english_translation": "Custom" + }, + { + "key": "argument.entity.selector.missing", + "english_translation": "Missing selector type" + }, + { + "key": "narration.slider.usage.hovered", + "english_translation": "Drag slider to change value" + }, + { + "key": "item.minecraft.baked_potato", + "english_translation": "Baked Potato" + }, + { + "key": "block.minecraft.smooth_red_sandstone_slab", + "english_translation": "Smooth Red Sandstone Slab" + }, + { + "key": "death.attack.badRespawnPoint.link", + "english_translation": "Intentional Game Design" + }, + { + "key": "gamerule.fallDamage", + "english_translation": "Deal fall damage" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.yellow", + "english_translation": "Yellow Per Bend Sinister Inverted" + }, + { + "key": "block.minecraft.warped_planks", + "english_translation": "Warped Planks" + }, + { + "key": "dataPack.bundle.name", + "english_translation": "Bundles" + }, + { + "key": "item.minecraft.mangrove_boat", + "english_translation": "Mangrove Boat" + }, + { + "key": "narrator.position.screen", + "english_translation": "Screen element %s out of %s" + }, + { + "key": "block.minecraft.banner.half_vertical_right.purple", + "english_translation": "Purple Per Pale Inverted" + }, + { + "key": "block.minecraft.banner.diagonal_right.light_gray", + "english_translation": "Light Gray Per Bend" + }, + { + "key": "block.minecraft.banner.cross.green", + "english_translation": "Green Saltire" + }, + { + "key": "block.minecraft.cracked_nether_bricks", + "english_translation": "Cracked Nether Bricks" + }, + { + "key": "key.keyboard.up", + "english_translation": "Up Arrow" + }, + { + "key": "block.minecraft.banner.stripe_downleft.green", + "english_translation": "Green Bend Sinister" + }, + { + "key": "block.minecraft.banner.diagonal_right.pink", + "english_translation": "Pink Per Bend" + }, + { + "key": "mco.configure.current.minigame", + "english_translation": "Current" + }, + { + "key": "block.minecraft.banner.piglin.blue", + "english_translation": "Blue Snout" + }, + { + "key": "item.minecraft.zombie_villager_spawn_egg", + "english_translation": "Zombie Villager Spawn Egg" + }, + { + "key": "subtitles.entity.parrot.imitate.blaze", + "english_translation": "Parrot breathes" + }, + { + "key": "block.minecraft.stone_bricks", + "english_translation": "Stone Bricks" + }, + { + "key": "block.minecraft.blackstone_slab", + "english_translation": "Blackstone Slab" + }, + { + "key": "block.minecraft.snow", + "english_translation": "Snow" + }, + { + "key": "options.difficulty.peaceful.info", + "english_translation": "No hostile mobs and only some neutral mobs spawn. Hunger bar doesn't deplete and health replenishes over time." + }, + { + "key": "item.minecraft.shulker_spawn_egg", + "english_translation": "Shulker Spawn Egg" + }, + { + "key": "commands.publish.alreadyPublished", + "english_translation": "Multiplayer game is already hosted on port %s" + }, + { + "key": "subtitles.entity.goat.eat", + "english_translation": "Goat eats" + }, + { + "key": "item.minecraft.heart_pottery_shard", + "english_translation": "Heart Pottery Shard" + }, + { + "key": "block.minecraft.purple_stained_glass_pane", + "english_translation": "Purple Stained Glass Pane" + }, + { + "key": "inventory.hotbarSaved", + "english_translation": "Item hotbar saved (restore with %1$s+%2$s)" + }, + { + "key": "structure_block.load_prepare", + "english_translation": "Structure '%s' position prepared" + }, + { + "key": "subtitles.entity.warden.emerge", + "english_translation": "Warden emerges" + }, + { + "key": "subtitles.item.axe.scrape", + "english_translation": "Axe scrapes" + }, + { + "key": "gamerule.announceAdvancements", + "english_translation": "Announce advancements" + }, + { + "key": "subtitles.entity.stray.death", + "english_translation": "Stray dies" + }, + { + "key": "item.modifiers.chest", + "english_translation": "When on Body:" + }, + { + "key": "block.minecraft.banner.square_top_right.cyan", + "english_translation": "Cyan Chief Sinister Canton" + }, + { + "key": "block.minecraft.cobweb", + "english_translation": "Cobweb" + }, + { + "key": "color.minecraft.brown", + "english_translation": "Brown" + }, + { + "key": "options.entityShadows", + "english_translation": "Entity Shadows" + }, + { + "key": "entity.minecraft.item_display", + "english_translation": "Item Display" + }, + { + "key": "filled_map.buried_treasure", + "english_translation": "Buried Treasure Map" + }, + { + "key": "subtitles.entity.guardian.flop", + "english_translation": "Guardian flops" + }, + { + "key": "subtitles.entity.bat.takeoff", + "english_translation": "Bat takes off" + }, + { + "key": "entity.minecraft.tropical_fish.type.sunstreak", + "english_translation": "Sunstreak" + }, + { + "key": "block.minecraft.mycelium", + "english_translation": "Mycelium" + }, + { + "key": "multiplayer.applyingPack", + "english_translation": "Applying resource pack" + }, + { + "key": "item.minecraft.milk_bucket", + "english_translation": "Milk Bucket" + }, + { + "key": "painting.minecraft.pigscene.title", + "english_translation": "Pigscene" + }, + { + "key": "commands.debug.stopped", + "english_translation": "Stopped tick profiling after %s seconds and %s ticks (%s ticks per second)" + }, + { + "key": "entity.minecraft.blaze", + "english_translation": "Blaze" + }, + { + "key": "selectWorld.backupQuestion.experimental", + "english_translation": "Worlds using Experimental Settings are not supported" + }, + { + "key": "gui.narrate.editBox", + "english_translation": "%s edit box: %s" + }, + { + "key": "block.minecraft.bamboo_trapdoor", + "english_translation": "Bamboo Trapdoor" + }, + { + "key": "argument.entity.options.inapplicable", + "english_translation": "Option '%s' isn't applicable here" + }, + { + "key": "block.minecraft.beacon", + "english_translation": "Beacon" + }, + { + "key": "telemetry_info.screen.description", + "english_translation": "Collecting this data helps us improve Minecraft by guiding us in directions that are relevant to our players.\nYou can also send in additional feedback to help us keep improving Minecraft." + }, + { + "key": "stat.minecraft.aviate_one_cm", + "english_translation": "Distance by Elytra" + }, + { + "key": "book.finalizeButton", + "english_translation": "Sign and Close" + }, + { + "key": "subtitles.entity.strider.hurt", + "english_translation": "Strider hurts" + }, + { + "key": "block.minecraft.smooth_stone_slab", + "english_translation": "Smooth Stone Slab" + }, + { + "key": "biome.minecraft.snowy_beach", + "english_translation": "Snowy Beach" + }, + { + "key": "death.fell.accident.other_climbable", + "english_translation": "%1$s fell while climbing" + }, + { + "key": "item.minecraft.iron_horse_armor", + "english_translation": "Iron Horse Armor" + }, + { + "key": "chat.copy", + "english_translation": "Copy to Clipboard" + }, + { + "key": "entity.minecraft.fox", + "english_translation": "Fox" + }, + { + "key": "mco.selectServer.uninitialized", + "english_translation": "Click to start your new realm!" + }, + { + "key": "selectWorld.backupWarning.snapshot", + "english_translation": "This world was last played in version %s; you are on version %s. Please make a backup in case you experience world corruptions!" + }, + { + "key": "subtitles.entity.rabbit.ambient", + "english_translation": "Rabbit squeaks" + }, + { + "key": "subtitles.entity.sniffer.digging", + "english_translation": "Sniffer digs" + }, + { + "key": "spectatorMenu.previous_page", + "english_translation": "Previous Page" + }, + { + "key": "item.minecraft.filled_map", + "english_translation": "Map" + }, + { + "key": "stat.minecraft.interact_with_beacon", + "english_translation": "Interactions with Beacon" + }, + { + "key": "block.minecraft.banner.piglin.red", + "english_translation": "Red Snout" + }, + { + "key": "item.minecraft.cherry_boat", + "english_translation": "Cherry Boat" + }, + { + "key": "block.minecraft.cave_air", + "english_translation": "Cave Air" + }, + { + "key": "block.minecraft.podzol", + "english_translation": "Podzol" + }, + { + "key": "gamerule.snowAccumulationHeight", + "english_translation": "Snow accumulation height" + }, + { + "key": "slot.unknown", + "english_translation": "Unknown slot '%s'" + }, + { + "key": "subtitles.block.iron_trapdoor.close", + "english_translation": "Trapdoor closes" + }, + { + "key": "block.minecraft.banner.square_bottom_left.magenta", + "english_translation": "Magenta Base Dexter Canton" + }, + { + "key": "options.autosaveIndicator", + "english_translation": "Autosave Indicator" + }, + { + "key": "selectWorld.version", + "english_translation": "Version:" + }, + { + "key": "death.attack.inWall.player", + "english_translation": "%1$s suffocated in a wall whilst fighting %2$s" + }, + { + "key": "item.minecraft.llama_spawn_egg", + "english_translation": "Llama Spawn Egg" + }, + { + "key": "item.minecraft.splash_potion.effect.luck", + "english_translation": "Splash Potion of Luck" + }, + { + "key": "options.narrator.chat", + "english_translation": "Narrates Chat" + }, + { + "key": "death.fell.accident.scaffolding", + "english_translation": "%1$s fell off scaffolding" + }, + { + "key": "item.minecraft.stone_hoe", + "english_translation": "Stone Hoe" + }, + { + "key": "block.minecraft.banner.flower.red", + "english_translation": "Red Flower Charge" + }, + { + "key": "item.minecraft.iron_nugget", + "english_translation": "Iron Nugget" + }, + { + "key": "item.minecraft.dolphin_spawn_egg", + "english_translation": "Dolphin Spawn Egg" + }, + { + "key": "commands.teleport.success.location.single", + "english_translation": "Teleported %s to %s, %s, %s" + }, + { + "key": "options.graphics.fancy.tooltip", + "english_translation": "Fancy graphics balances performance and quality for the majority of machines.\nWeather, clouds, and particles may not appear behind translucent blocks or water." + }, + { + "key": "block.minecraft.banner.half_vertical_right.red", + "english_translation": "Red Per Pale Inverted" + }, + { + "key": "key.keyboard.caps.lock", + "english_translation": "Caps Lock" + }, + { + "key": "itemGroup.foodAndDrink", + "english_translation": "Food & Drinks" + }, + { + "key": "merchant.next_level", + "english_translation": "Trader's next level" + }, + { + "key": "block.minecraft.banner.diagonal_left.red", + "english_translation": "Red Per Bend Sinister" + }, + { + "key": "item.minecraft.item_frame", + "english_translation": "Item Frame" + }, + { + "key": "block.minecraft.banner.half_vertical_right.cyan", + "english_translation": "Cyan Per Pale Inverted" + }, + { + "key": "subtitles.entity.generic.eat", + "english_translation": "Eating" + }, + { + "key": "biome.minecraft.old_growth_pine_taiga", + "english_translation": "Old Growth Pine Taiga" + }, + { + "key": "subtitles.entity.hoglin.death", + "english_translation": "Hoglin dies" + }, + { + "key": "arguments.nbtpath.nothing_found", + "english_translation": "Found no elements matching %s" + }, + { + "key": "mco.reset.world.adventure", + "english_translation": "Adventures" + }, + { + "key": "painting.minecraft.sea.title", + "english_translation": "Seaside" + }, + { + "key": "options.difficulty.easy.info", + "english_translation": "Hostile mobs spawn but deal less damage. Hunger bar depletes and drains health down to 5 hearts." + }, + { + "key": "options.darkMojangStudiosBackgroundColor", + "english_translation": "Monochrome Logo" + }, + { + "key": "stat.minecraft.interact_with_campfire", + "english_translation": "Interactions with Campfire" + }, + { + "key": "subtitles.entity.shulker_bullet.hit", + "english_translation": "Shulker Bullet explodes" + }, + { + "key": "block.minecraft.cyan_wool", + "english_translation": "Cyan Wool" + }, + { + "key": "death.attack.magic.player", + "english_translation": "%1$s was killed by magic whilst trying to escape %2$s" + }, + { + "key": "commands.attribute.failed.no_attribute", + "english_translation": "Entity %s has no attribute %s" + }, + { + "key": "item.minecraft.music_disc_strad.desc", + "english_translation": "C418 - strad" + }, + { + "key": "commands.gamemode.success.other", + "english_translation": "Set %s's game mode to %s" + }, + { + "key": "item.minecraft.lingering_potion.effect.harming", + "english_translation": "Lingering Potion of Harming" + }, + { + "key": "block.minecraft.banner.straight_cross.pink", + "english_translation": "Pink Cross" + }, + { + "key": "subtitles.entity.shulker.open", + "english_translation": "Shulker opens" + }, + { + "key": "argument.entity.selector.allPlayers", + "english_translation": "All players" + }, + { + "key": "trim_pattern.minecraft.sentry", + "english_translation": "Sentry Armor Trim" + }, + { + "key": "container.enchant.lapis.one", + "english_translation": "1 Lapis Lazuli" + }, + { + "key": "stat.minecraft.fly_one_cm", + "english_translation": "Distance Flown" + }, + { + "key": "item.modifiers.legs", + "english_translation": "When on Legs:" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.cyan", + "english_translation": "Cyan Per Bend Inverted" + }, + { + "key": "commands.bossbar.set.visible.success.visible", + "english_translation": "Custom bossbar %s is now visible" + }, + { + "key": "block.minecraft.banner.small_stripes.lime", + "english_translation": "Lime Paly" + }, + { + "key": "block.minecraft.cut_sandstone", + "english_translation": "Cut Sandstone" + }, + { + "key": "block.minecraft.red_tulip", + "english_translation": "Red Tulip" + }, + { + "key": "subtitles.block.cake.add_candle", + "english_translation": "Cake squishes" + }, + { + "key": "gui.chatReport.send.no_reason", + "english_translation": "Please select a report category" + }, + { + "key": "controls.title", + "english_translation": "Controls" + }, + { + "key": "subtitles.entity.piglin.jealous", + "english_translation": "Piglin snorts enviously" + }, + { + "key": "telemetry.event.performance_metrics.description", + "english_translation": "Knowing the overall performance profile of Minecraft helps us tune and optimize the game for a wide range of machine specifications and operating systems. \nGame version is included to help us compare the performance profile for new versions of Minecraft." + }, + { + "key": "block.minecraft.light_gray_banner", + "english_translation": "Light Gray Banner" + }, + { + "key": "multiplayer.title", + "english_translation": "Play Multiplayer" + }, + { + "key": "gamerule.randomTickSpeed", + "english_translation": "Random tick speed rate" + }, + { + "key": "item.minecraft.heart_of_the_sea", + "english_translation": "Heart of the Sea" + }, + { + "key": "key.keyboard.left.alt", + "english_translation": "Left Alt" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.red", + "english_translation": "Red Per Bend Inverted" + }, + { + "key": "deathScreen.score", + "english_translation": "Score" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.magenta", + "english_translation": "Magenta Per Bend Sinister Inverted" + }, + { + "key": "optimizeWorld.info.skipped", + "english_translation": "Skipped chunks: %s" + }, + { + "key": "commands.ride.dismount.success", + "english_translation": "%s stopped riding %s" + }, + { + "key": "subtitles.entity.turtle.death", + "english_translation": "Turtle dies" + }, + { + "key": "item.minecraft.name_tag", + "english_translation": "Name Tag" + }, + { + "key": "stat.minecraft.jump", + "english_translation": "Jumps" + }, + { + "key": "block.minecraft.polished_deepslate_wall", + "english_translation": "Polished Deepslate Wall" + }, + { + "key": "subtitles.entity.elder_guardian.curse", + "english_translation": "Elder Guardian curses" + }, + { + "key": "block.minecraft.banner.stripe_top.purple", + "english_translation": "Purple Chief" + }, + { + "key": "commands.fillbiome.success.count", + "english_translation": "%s biome entry/entries set between %s, %s, %s and %s, %s, %s" + }, + { + "key": "item.minecraft.glass_bottle", + "english_translation": "Glass Bottle" + }, + { + "key": "block.minecraft.banner.piglin.magenta", + "english_translation": "Magenta Snout" + }, + { + "key": "item.minecraft.ender_eye", + "english_translation": "Eye of Ender" + }, + { + "key": "chat.disabled.options", + "english_translation": "Chat disabled in client options." + }, + { + "key": "item.minecraft.archer_pottery_shard", + "english_translation": "Archer Pottery Shard" + }, + { + "key": "key.keyboard.pause", + "english_translation": "Pause" + }, + { + "key": "block.minecraft.jungle_wall_sign", + "english_translation": "Jungle Wall Sign" + }, + { + "key": "block.minecraft.waxed_copper_block", + "english_translation": "Waxed Block of Copper" + }, + { + "key": "item.minecraft.pitcher_pod", + "english_translation": "Pitcher Pod" + }, + { + "key": "mco.template.select.failure", + "english_translation": "We couldn't retrieve the list of content for this category.\nPlease check your internet connection, or try again later." + }, + { + "key": "pack.name.fabricMods", + "english_translation": "Fabric Mods" + }, + { + "key": "commands.trigger.simple.success", + "english_translation": "Triggered %s" + }, + { + "key": "quickplay.error.title", + "english_translation": "Failed to Quick Play" + }, + { + "key": "item.minecraft.firework_star.white", + "english_translation": "White" + }, + { + "key": "block.minecraft.gray_stained_glass", + "english_translation": "Gray Stained Glass" + }, + { + "key": "block.minecraft.sandstone_slab", + "english_translation": "Sandstone Slab" + }, + { + "key": "item.minecraft.lingering_potion.effect.leaping", + "english_translation": "Lingering Potion of Leaping" + }, + { + "key": "container.furnace", + "english_translation": "Furnace" + }, + { + "key": "commands.forceload.query.success", + "english_translation": "Chunk at %s in %s is marked for force loading" + }, + { + "key": "commands.whitelist.remove.failed", + "english_translation": "Player is not whitelisted" + }, + { + "key": "block.minecraft.banner.skull.white", + "english_translation": "White Skull Charge" + }, + { + "key": "block.minecraft.banner.square_bottom_left.yellow", + "english_translation": "Yellow Base Dexter Canton" + }, + { + "key": "block.minecraft.banner.circle.cyan", + "english_translation": "Cyan Roundel" + }, + { + "key": "subtitles.item.flintandsteel.use", + "english_translation": "Flint and Steel click" + }, + { + "key": "options.telemetry.state.all", + "english_translation": "All" + }, + { + "key": "block.minecraft.potted_allium", + "english_translation": "Potted Allium" + }, + { + "key": "subtitles.entity.endermite.hurt", + "english_translation": "Endermite hurts" + }, + { + "key": "commands.debug.function.noRecursion", + "english_translation": "Can't trace from inside of function" + }, + { + "key": "block.minecraft.banner.small_stripes.blue", + "english_translation": "Blue Paly" + }, + { + "key": "block.minecraft.waxed_weathered_cut_copper_stairs", + "english_translation": "Waxed Weathered Cut Copper Stairs" + }, + { + "key": "block.minecraft.stone", + "english_translation": "Stone" + }, + { + "key": "subtitles.entity.allay.death", + "english_translation": "Allay dies" + }, + { + "key": "dataPack.vanilla.description", + "english_translation": "The default data for Minecraft" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.light_blue", + "english_translation": "Light Blue Per Bend Inverted" + }, + { + "key": "commands.place.jigsaw.success", + "english_translation": "Generated jigsaw at %s, %s, %s" + }, + { + "key": "trim_pattern.minecraft.wayfinder", + "english_translation": "Wayfinder Armor Trim" + }, + { + "key": "block.minecraft.banner.globe.black", + "english_translation": "Black Globe" + }, + { + "key": "block.minecraft.banner.skull.gray", + "english_translation": "Gray Skull Charge" + }, + { + "key": "advancements.adventure.very_very_frightening.description", + "english_translation": "Strike a Villager with lightning" + }, + { + "key": "selectWorld.backupQuestion.snapshot", + "english_translation": "Do you really want to load this world?" + }, + { + "key": "telemetry.property.game_mode.title", + "english_translation": "Game Mode" + }, + { + "key": "commands.scoreboard.players.list.empty", + "english_translation": "There are no tracked entities" + }, + { + "key": "gamerule.doTraderSpawning", + "english_translation": "Spawn Wandering Traders" + }, + { + "key": "advancements.story.lava_bucket.description", + "english_translation": "Fill a Bucket with lava" + }, + { + "key": "key.keyboard.minus", + "english_translation": "-" + }, + { + "key": "options.entityDistanceScaling", + "english_translation": "Entity Distance" + }, + { + "key": "item.minecraft.diamond_horse_armor", + "english_translation": "Diamond Horse Armor" + }, + { + "key": "gamerule.maxEntityCramming", + "english_translation": "Entity cramming threshold" + }, + { + "key": "advancements.adventure.totem_of_undying.title", + "english_translation": "Postmortal" + }, + { + "key": "entity.minecraft.snow_golem", + "english_translation": "Snow Golem" + }, + { + "key": "options.particles.minimal", + "english_translation": "Minimal" + }, + { + "key": "subtitles.block.barrel.open", + "english_translation": "Barrel opens" + }, + { + "key": "title.32bit.deprecation.realms", + "english_translation": "Minecraft will soon require a 64-bit system, which will prevent you from playing or using Realms on this device. You will need to manually cancel any Realms subscription." + }, + { + "key": "block.minecraft.copper_ore", + "english_translation": "Copper Ore" + }, + { + "key": "gui.socialInteractions.empty_blocked", + "english_translation": "No blocked players in chat" + }, + { + "key": "block.minecraft.green_wool", + "english_translation": "Green Wool" + }, + { + "key": "block.minecraft.carrots", + "english_translation": "Carrots" + }, + { + "key": "subtitles.entity.villager.work_mason", + "english_translation": "Mason works" + }, + { + "key": "mco.notification.dismiss", + "english_translation": "Dismiss" + }, + { + "key": "mco.configure.world.minigame", + "english_translation": "Current: %s" + }, + { + "key": "commands.summon.failed.uuid", + "english_translation": "Unable to summon entity due to duplicate UUIDs" + }, + { + "key": "advMode.trackOutput", + "english_translation": "Track output" + }, + { + "key": "mco.minigame.world.switch.title", + "english_translation": "Switch minigame" + }, + { + "key": "item.minecraft.cod", + "english_translation": "Raw Cod" + }, + { + "key": "block.minecraft.gray_candle_cake", + "english_translation": "Cake with Gray Candle" + }, + { + "key": "item.minecraft.debug_stick.select", + "english_translation": "selected \"%s\" (%s)" + }, + { + "key": "block.minecraft.piston_head", + "english_translation": "Piston Head" + }, + { + "key": "item.minecraft.potion.effect.slow_falling", + "english_translation": "Potion of Slow Falling" + }, + { + "key": "options.resourcepack", + "english_translation": "Resource Packs..." + }, + { + "key": "subtitles.entity.wither.hurt", + "english_translation": "Wither hurts" + }, + { + "key": "death.attack.mob", + "english_translation": "%1$s was slain by %2$s" + }, + { + "key": "block.minecraft.lime_carpet", + "english_translation": "Lime Carpet" + }, + { + "key": "advancements.nether.netherite_armor.description", + "english_translation": "Get a full suit of Netherite armor" + }, + { + "key": "subtitles.item.armor.equip_elytra", + "english_translation": "Elytra rustle" + }, + { + "key": "selectServer.hiddenAddress", + "english_translation": "(Hidden)" + }, + { + "key": "commands.weather.set.thunder", + "english_translation": "Set the weather to rain & thunder" + }, + { + "key": "color.minecraft.light_blue", + "english_translation": "Light Blue" + }, + { + "key": "block.minecraft.banner.mojang.red", + "english_translation": "Red Thing" + }, + { + "key": "subtitles.entity.salmon.flop", + "english_translation": "Salmon flops" + }, + { + "key": "block.minecraft.potted_crimson_roots", + "english_translation": "Potted Crimson Roots" + }, + { + "key": "item.minecraft.debug_stick.update", + "english_translation": "\"%s\" to %s" + }, + { + "key": "pack.incompatible.confirm.old", + "english_translation": "This pack was made for an older version of Minecraft and may no longer work correctly." + }, + { + "key": "options.narrator", + "english_translation": "Narrator" + }, + { + "key": "block.minecraft.stripped_crimson_hyphae", + "english_translation": "Stripped Crimson Hyphae" + }, + { + "key": "gui.chatReport.draft.content", + "english_translation": "Would you like to continue editing the existing report or discard it and create a new one?" + }, + { + "key": "mco.brokenworld.download", + "english_translation": "Download" + }, + { + "key": "subtitles.entity.zombie.break_wooden_door", + "english_translation": "Door breaks" + }, + { + "key": "block.minecraft.banner.gradient_up.gray", + "english_translation": "Gray Base Gradient" + }, + { + "key": "multiplayer.player.list.narration", + "english_translation": "Online players: %s" + }, + { + "key": "item.minecraft.bundle.fullness", + "english_translation": "%s/%s" + }, + { + "key": "subtitles.entity.hoglin.step", + "english_translation": "Hoglin steps" + }, + { + "key": "death.attack.dryout.player", + "english_translation": "%1$s died from dehydration whilst trying to escape %2$s" + }, + { + "key": "item.minecraft.iron_helmet", + "english_translation": "Iron Helmet" + }, + { + "key": "commands.experience.add.points.success.multiple", + "english_translation": "Gave %s experience points to %s players" + }, + { + "key": "subtitles.entity.parrot.imitate.piglin_brute", + "english_translation": "Parrot snorts" + }, + { + "key": "subtitles.entity.polar_bear.ambient_baby", + "english_translation": "Polar Bear hums" + }, + { + "key": "options.difficulty.normal.info", + "english_translation": "Hostile mobs spawn and deal standard damage. Hunger bar depletes and drains health down to half a heart." + }, + { + "key": "gui.toRealms", + "english_translation": "Back to Realms List" + }, + { + "key": "selectWorld.gameMode.survival", + "english_translation": "Survival" + }, + { + "key": "key.playerlist", + "english_translation": "List Players" + }, + { + "key": "options.graphics.warning.cancel", + "english_translation": "Take Me Back" + }, + { + "key": "debug.help.message", + "english_translation": "Key bindings:" + }, + { + "key": "block.minecraft.potted_blue_orchid", + "english_translation": "Potted Blue Orchid" + }, + { + "key": "block.minecraft.brick_stairs", + "english_translation": "Brick Stairs" + }, + { + "key": "structure_block.mode.data", + "english_translation": "Data" + }, + { + "key": "item.minecraft.beetroot_soup", + "english_translation": "Beetroot Soup" + }, + { + "key": "subtitles.entity.turtle.death_baby", + "english_translation": "Turtle baby dies" + }, + { + "key": "addServer.enterName", + "english_translation": "Server Name" + }, + { + "key": "multiplayer.disconnect.kicked", + "english_translation": "Kicked by an operator" + }, + { + "key": "block.minecraft.waxed_cut_copper_slab", + "english_translation": "Waxed Cut Copper Slab" + }, + { + "key": "mco.backup.changes.tooltip", + "english_translation": "Changes" + }, + { + "key": "subtitles.entity.skeleton.converted_to_stray", + "english_translation": "Skeleton converts to Stray" + }, + { + "key": "block.minecraft.banner.flower.yellow", + "english_translation": "Yellow Flower Charge" + }, + { + "key": "block.minecraft.banner.diagonal_right.magenta", + "english_translation": "Magenta Per Bend" + }, + { + "key": "mco.upload.size.failure.line2", + "english_translation": "It is %s. The maximum allowed size is %s." + }, + { + "key": "mco.upload.size.failure.line1", + "english_translation": "'%s' is too big!" + }, + { + "key": "createWorld.customize.custom.minHeight", + "english_translation": "Min. Height" + }, + { + "key": "item.minecraft.burn_pottery_shard", + "english_translation": "Burn Pottery Shard" + }, + { + "key": "block.minecraft.banner.square_bottom_right.purple", + "english_translation": "Purple Base Sinister Canton" + }, + { + "key": "commands.scoreboard.objectives.add.success", + "english_translation": "Created new objective %s" + }, + { + "key": "flat_world_preset.minecraft.water_world", + "english_translation": "Water World" + }, + { + "key": "key.keyboard.left.shift", + "english_translation": "Left Shift" + }, + { + "key": "block.minecraft.banner.base.brown", + "english_translation": "Fully Brown Field" + }, + { + "key": "block.minecraft.banner.base.red", + "english_translation": "Fully Red Field" + }, + { + "key": "command.context.here", + "english_translation": "<--[HERE]" + }, + { + "key": "mco.template.title", + "english_translation": "World templates" + }, + { + "key": "subtitles.entity.horse.ambient", + "english_translation": "Horse neighs" + }, + { + "key": "block.minecraft.cherry_wall_hanging_sign", + "english_translation": "Cherry Wall Hanging Sign" + }, + { + "key": "mco.configure.world.spawnNPCs", + "english_translation": "Spawn NPCs" + }, + { + "key": "item.minecraft.pillager_spawn_egg", + "english_translation": "Pillager Spawn Egg" + }, + { + "key": "structure_block.include_entities", + "english_translation": "Include Entities:" + }, + { + "key": "multiplayerWarning.check", + "english_translation": "Do not show this screen again" + }, + { + "key": "subtitles.entity.leash_knot.break", + "english_translation": "Leash Knot breaks" + }, + { + "key": "block.minecraft.banner.triangle_bottom.magenta", + "english_translation": "Magenta Chevron" + }, + { + "key": "options.hidden", + "english_translation": "Hidden" + }, + { + "key": "block.minecraft.banner.circle.brown", + "english_translation": "Brown Roundel" + }, + { + "key": "item.minecraft.strider_spawn_egg", + "english_translation": "Strider Spawn Egg" + }, + { + "key": "subtitles.entity.parrot.imitate.wither_skeleton", + "english_translation": "Parrot rattles" + }, + { + "key": "mco.gui.button", + "english_translation": "Button" + }, + { + "key": "block.minecraft.banner.diagonal_up_right.pink", + "english_translation": "Pink Per Bend Sinister Inverted" + }, + { + "key": "gui.socialInteractions.status_offline", + "english_translation": "Offline" + }, + { + "key": "block.minecraft.weeping_vines_plant", + "english_translation": "Weeping Vines Plant" + }, + { + "key": "mco.download.preparing", + "english_translation": "Preparing download" + }, + { + "key": "block.minecraft.banner.rhombus.light_blue", + "english_translation": "Light Blue Lozenge" + }, + { + "key": "mco.upload.entry.cheats", + "english_translation": "%1$s, %2$s" + }, + { + "key": "death.attack.outsideBorder.player", + "english_translation": "%1$s left the confines of this world whilst fighting %2$s" + }, + { + "key": "block.minecraft.gray_banner", + "english_translation": "Gray Banner" + }, + { + "key": "commands.function.success.single", + "english_translation": "Executed %s command(s) from function '%s'" + }, + { + "key": "multiplayer.message_not_delivered", + "english_translation": "Can't deliver chat message, check server logs: %s" + }, + { + "key": "subtitles.entity.fox.aggro", + "english_translation": "Fox angers" + }, + { + "key": "gamerule.mobGriefing", + "english_translation": "Allow destructive mob actions" + }, + { + "key": "item.minecraft.spyglass", + "english_translation": "Spyglass" + }, + { + "key": "subtitles.item.bucket.fill_axolotl", + "english_translation": "Axolotl scooped" + }, + { + "key": "options.screenEffectScale.tooltip", + "english_translation": "Strength of nausea and Nether portal screen distortion effects.\nAt lower values, the nausea effect is replaced with a green overlay." + }, + { + "key": "selectWorld.gameMode", + "english_translation": "Game Mode" + }, + { + "key": "entity.minecraft.tropical_fish.type.stripey", + "english_translation": "Stripey" + }, + { + "key": "createWorld.customize.custom.prev", + "english_translation": "Previous Page" + }, + { + "key": "createWorld.customize.presets.title", + "english_translation": "Select a Preset" + }, + { + "key": "block.minecraft.white_stained_glass_pane", + "english_translation": "White Stained Glass Pane" + }, + { + "key": "block.minecraft.potted_jungle_sapling", + "english_translation": "Potted Jungle Sapling" + }, + { + "key": "options.modelPart.right_sleeve", + "english_translation": "Right Sleeve" + }, + { + "key": "commands.summon.failed", + "english_translation": "Unable to summon entity" + }, + { + "key": "arguments.operation.invalid", + "english_translation": "Invalid operation" + }, + { + "key": "block.minecraft.banner.half_vertical.black", + "english_translation": "Black Per Pale" + }, + { + "key": "item.minecraft.lingering_potion", + "english_translation": "Lingering Potion" + }, + { + "key": "subtitles.entity.villager.ambient", + "english_translation": "Villager mumbles" + }, + { + "key": "block.minecraft.banner.rhombus.lime", + "english_translation": "Lime Lozenge" + }, + { + "key": "block.minecraft.banner.half_vertical.cyan", + "english_translation": "Cyan Per Pale" + }, + { + "key": "key.keyboard.left.bracket", + "english_translation": "[" + }, + { + "key": "item.minecraft.tipped_arrow.effect.swiftness", + "english_translation": "Arrow of Swiftness" + }, + { + "key": "subtitles.item.trident.thunder", + "english_translation": "Trident thunder cracks" + }, + { + "key": "argument.time.invalid_tick_count", + "english_translation": "Tick count must be non-negative" + }, + { + "key": "block.minecraft.banner.stripe_top.magenta", + "english_translation": "Magenta Chief" + }, + { + "key": "menu.reportBugs", + "english_translation": "Report Bugs" + }, + { + "key": "enchantment.minecraft.frost_walker", + "english_translation": "Frost Walker" + }, + { + "key": "block.minecraft.banner.half_vertical_right.light_gray", + "english_translation": "Light Gray Per Pale Inverted" + }, + { + "key": "block.minecraft.banner.stripe_downright.orange", + "english_translation": "Orange Bend" + }, + { + "key": "biome.minecraft.stony_shore", + "english_translation": "Stony Shore" + }, + { + "key": "item.minecraft.goat_horn", + "english_translation": "Goat Horn" + }, + { + "key": "painting.minecraft.pointer.title", + "english_translation": "Pointer" + }, + { + "key": "block.minecraft.birch_button", + "english_translation": "Birch Button" + }, + { + "key": "subtitles.weather.rain", + "english_translation": "Rain falls" + }, + { + "key": "gamerule.tntExplosionDropDecay", + "english_translation": "In TNT explosions, some blocks won't drop their loot" + }, + { + "key": "block.minecraft.purple_candle_cake", + "english_translation": "Cake with Purple Candle" + }, + { + "key": "commands.summon.invalidPosition", + "english_translation": "Invalid position for summon" + }, + { + "key": "block.minecraft.stripped_crimson_stem", + "english_translation": "Stripped Crimson Stem" + }, + { + "key": "subtitles.block.sculk_sensor.clicking", + "english_translation": "Sculk Sensor starts clicking" + }, + { + "key": "subtitles.entity.camel.eat", + "english_translation": "Camel eats" + }, + { + "key": "subtitles.entity.wandering_trader.death", + "english_translation": "Wandering Trader dies" + }, + { + "key": "gui.abuseReport.reason.hate_speech", + "english_translation": "Hate speech" + }, + { + "key": "block.minecraft.jungle_fence", + "english_translation": "Jungle Fence" + }, + { + "key": "entity.minecraft.item", + "english_translation": "Item" + }, + { + "key": "selectWorld.mapType.normal", + "english_translation": "Normal" + }, + { + "key": "instrument.minecraft.yearn_goat_horn", + "english_translation": "Yearn" + }, + { + "key": "commands.schedule.cleared.success", + "english_translation": "Removed %s schedule(s) with id %s" + }, + { + "key": "block.minecraft.banner.globe.magenta", + "english_translation": "Magenta Globe" + }, + { + "key": "advMode.type", + "english_translation": "Type" + }, + { + "key": "generator.minecraft.flat", + "english_translation": "Superflat" + }, + { + "key": "menu.singleplayer", + "english_translation": "Singleplayer" + }, + { + "key": "narrator.loading.done", + "english_translation": "Done" + }, + { + "key": "commands.attribute.failed.entity", + "english_translation": "%s is not a valid entity for this command" + }, + { + "key": "disconnect.timeout", + "english_translation": "Timed out" + }, + { + "key": "selectWorld.recreate.error.text", + "english_translation": "Something went wrong while trying to recreate a world." + }, + { + "key": "book.generation.3", + "english_translation": "Tattered" + }, + { + "key": "book.generation.1", + "english_translation": "Copy of original" + }, + { + "key": "book.generation.2", + "english_translation": "Copy of a copy" + }, + { + "key": "gamerule.waterSourceConversion.description", + "english_translation": "When flowing water is surrounded on two sides by water sources it converts into a source." + }, + { + "key": "subtitles.entity.wandering_trader.reappeared", + "english_translation": "Wandering Trader appears" + }, + { + "key": "block.minecraft.seagrass", + "english_translation": "Seagrass" + }, + { + "key": "block.minecraft.diamond_block", + "english_translation": "Block of Diamond" + }, + { + "key": "item.minecraft.potion.effect.healing", + "english_translation": "Potion of Healing" + }, + { + "key": "mco.configure.world.subscription.remaining.days", + "english_translation": "%1$s day(s)" + }, + { + "key": "block.minecraft.blue_carpet", + "english_translation": "Blue Carpet" + }, + { + "key": "block.minecraft.lightning_rod", + "english_translation": "Lightning Rod" + }, + { + "key": "enchantment.minecraft.sweeping", + "english_translation": "Sweeping Edge" + }, + { + "key": "commands.data.block.query", + "english_translation": "%s, %s, %s has the following block data: %s" + }, + { + "key": "subtitles.entity.zombie.attack_wooden_door", + "english_translation": "Door shakes" + }, + { + "key": "item.minecraft.dark_oak_boat", + "english_translation": "Dark Oak Boat" + }, + { + "key": "options.chat.delay_none", + "english_translation": "Chat Delay: None" + }, + { + "key": "item.minecraft.white_dye", + "english_translation": "White Dye" + }, + { + "key": "block.minecraft.potted_cactus", + "english_translation": "Potted Cactus" + }, + { + "key": "gui.chatReport.send.comments_too_long", + "english_translation": "Please shorten the comment" + }, + { + "key": "item.minecraft.crossbow.projectile", + "english_translation": "Projectile:" + }, + { + "key": "container.enchant.clue", + "english_translation": "%s . . . ?" + }, + { + "key": "block.minecraft.banner.rhombus.blue", + "english_translation": "Blue Lozenge" + }, + { + "key": "selectWorld.edit.export_worldgen_settings", + "english_translation": "Export World Generation Settings" + }, + { + "key": "subtitles.entity.zombie.ambient", + "english_translation": "Zombie groans" + }, + { + "key": "item.minecraft.feather", + "english_translation": "Feather" + }, + { + "key": "options.languageWarning", + "english_translation": "Language translations may not be 100%% accurate" + }, + { + "key": "painting.minecraft.skeleton.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "block.minecraft.banner.border.light_gray", + "english_translation": "Light Gray Bordure" + }, + { + "key": "subtitles.entity.zombie.death", + "english_translation": "Zombie dies" + }, + { + "key": "item.minecraft.chainmail_helmet", + "english_translation": "Chainmail Helmet" + }, + { + "key": "gui.banned.title.permanent", + "english_translation": "Account permanently banned" + }, + { + "key": "item.minecraft.warden_spawn_egg", + "english_translation": "Warden Spawn Egg" + }, + { + "key": "commands.forceload.removed.multiple", + "english_translation": "Unmarked %s chunks in %s from %s to %s for force loading" + }, + { + "key": "options.damageTiltStrength", + "english_translation": "Damage Tilt" + }, + { + "key": "team.visibility.always", + "english_translation": "Always" + }, + { + "key": "block.minecraft.mud_brick_slab", + "english_translation": "Mud Brick Slab" + }, + { + "key": "argument.entity.options.level.description", + "english_translation": "Experience level" + }, + { + "key": "block.minecraft.banner.gradient.orange", + "english_translation": "Orange Gradient" + }, + { + "key": "block.minecraft.netherrack", + "english_translation": "Netherrack" + }, + { + "key": "block.minecraft.ice", + "english_translation": "Ice" + }, + { + "key": "item.minecraft.tadpole_spawn_egg", + "english_translation": "Tadpole Spawn Egg" + }, + { + "key": "block.minecraft.banner.square_bottom_right.light_gray", + "english_translation": "Light Gray Base Sinister Canton" + }, + { + "key": "book.generation.0", + "english_translation": "Original" + }, + { + "key": "block.minecraft.banner.square_top_right.purple", + "english_translation": "Purple Chief Sinister Canton" + }, + { + "key": "block.minecraft.crimson_sign", + "english_translation": "Crimson Sign" + }, + { + "key": "block.minecraft.lantern", + "english_translation": "Lantern" + }, + { + "key": "mco.configure.world.invites.normal.tooltip", + "english_translation": "Normal user" + }, + { + "key": "block.minecraft.banner.stripe_bottom.brown", + "english_translation": "Brown Base" + }, + { + "key": "color.minecraft.magenta", + "english_translation": "Magenta" + }, + { + "key": "gui.banned.reason.extreme_violence_or_gore", + "english_translation": "Depictions of real-life excessive violence or gore" + }, + { + "key": "block.minecraft.banner.half_horizontal.purple", + "english_translation": "Purple Per Fess" + }, + { + "key": "block.minecraft.dropper", + "english_translation": "Dropper" + }, + { + "key": "commands.perf.notRunning", + "english_translation": "The performance profiler hasn't started" + }, + { + "key": "subtitles.entity.goat.ambient", + "english_translation": "Goat bleats" + }, + { + "key": "subtitles.entity.tadpole.flop", + "english_translation": "Tadpole flops" + }, + { + "key": "advMode.self", + "english_translation": "Use \"@s\" to target the executing entity" + }, + { + "key": "key.categories.gameplay", + "english_translation": "Gameplay" + }, + { + "key": "narration.selection.usage", + "english_translation": "Press up and down buttons to move to another entry" + }, + { + "key": "block.minecraft.banner.straight_cross.brown", + "english_translation": "Brown Cross" + }, + { + "key": "advancements.toast.task", + "english_translation": "Advancement Made!" + }, + { + "key": "block.minecraft.banner.triangles_top.red", + "english_translation": "Red Chief Indented" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.lime", + "english_translation": "Lime Per Fess Inverted" + }, + { + "key": "options.sensitivity", + "english_translation": "Sensitivity" + }, + { + "key": "subtitles.entity.enderman.teleport", + "english_translation": "Enderman teleports" + }, + { + "key": "block.minecraft.pink_banner", + "english_translation": "Pink Banner" + }, + { + "key": "commands.clear.test.single", + "english_translation": "Found %s matching item(s) on player %s" + }, + { + "key": "block.minecraft.pink_tulip", + "english_translation": "Pink Tulip" + }, + { + "key": "commands.drop.no_held_items", + "english_translation": "Entity can't hold any items" + }, + { + "key": "narrator.position.object_list", + "english_translation": "Selected row element %s out of %s" + }, + { + "key": "mco.trial.message.line1", + "english_translation": "Want to get your own realm?" + }, + { + "key": "mco.trial.message.line2", + "english_translation": "Click here for more info!" + }, + { + "key": "quickplay.error.realm_permission", + "english_translation": "Lacking permission to connect to this Realm" + }, + { + "key": "subtitles.entity.strider.eat", + "english_translation": "Strider eats" + }, + { + "key": "block.minecraft.banner.globe.green", + "english_translation": "Green Globe" + }, + { + "key": "argument.entity.options.tag.description", + "english_translation": "Entities with tag" + }, + { + "key": "argument.entity.options.dz.description", + "english_translation": "Entities between z and z + dz" + }, + { + "key": "item.minecraft.golden_shovel", + "english_translation": "Golden Shovel" + }, + { + "key": "subtitles.entity.leash_knot.place", + "english_translation": "Leash Knot tied" + }, + { + "key": "advancements.husbandry.allay_deliver_item_to_player.description", + "english_translation": "Have an Allay deliver items to you" + }, + { + "key": "block.minecraft.redstone_lamp", + "english_translation": "Redstone Lamp" + }, + { + "key": "effect.minecraft.jump_boost", + "english_translation": "Jump Boost" + }, + { + "key": "commands.scoreboard.objectives.display.alreadyEmpty", + "english_translation": "Nothing changed. That display slot is already empty" + }, + { + "key": "effect.minecraft.instant_health", + "english_translation": "Instant Health" + }, + { + "key": "mco.brokenworld.play", + "english_translation": "Play" + }, + { + "key": "options.modelPart.right_pants_leg", + "english_translation": "Right Pants Leg" + }, + { + "key": "subtitles.entity.skeleton_horse.swim", + "english_translation": "Skeleton Horse swims" + }, + { + "key": "commands.team.add.success", + "english_translation": "Created team %s" + }, + { + "key": "subtitles.entity.parrot.imitate.piglin", + "english_translation": "Parrot snorts" + }, + { + "key": "debug.inspect.server.block", + "english_translation": "Copied server-side block data to clipboard" + }, + { + "key": "block.minecraft.diorite_wall", + "english_translation": "Diorite Wall" + }, + { + "key": "commands.effect.clear.specific.success.multiple", + "english_translation": "Removed effect %s from %s targets" + }, + { + "key": "advancements.husbandry.breed_all_animals.description", + "english_translation": "Breed all the animals!" + }, + { + "key": "subtitles.block.beacon.power_select", + "english_translation": "Beacon power selected" + }, + { + "key": "resourcePack.programmer_art.name", + "english_translation": "Programmer Art" + }, + { + "key": "subtitles.block.beacon.deactivate", + "english_translation": "Beacon deactivates" + }, + { + "key": "options.off", + "english_translation": "OFF" + }, + { + "key": "item.minecraft.tipped_arrow.effect.levitation", + "english_translation": "Arrow of Levitation" + }, + { + "key": "item.minecraft.painting", + "english_translation": "Painting" + }, + { + "key": "block.minecraft.oak_button", + "english_translation": "Oak Button" + }, + { + "key": "commands.perf.stopped", + "english_translation": "Stopped performance profiling after %s second(s) and %s tick(s) (%s tick(s) per second)" + }, + { + "key": "commands.stopsound.success.source.sound", + "english_translation": "Stopped sound '%s' on source '%s'" + }, + { + "key": "subtitles.item.crossbow.hit", + "english_translation": "Arrow hits" + }, + { + "key": "entity.minecraft.minecart", + "english_translation": "Minecart" + }, + { + "key": "block.minecraft.polished_basalt", + "english_translation": "Polished Basalt" + }, + { + "key": "item.minecraft.lingering_potion.effect.water_breathing", + "english_translation": "Lingering Potion of Water Breathing" + }, + { + "key": "item.minecraft.acacia_chest_boat", + "english_translation": "Acacia Boat with Chest" + }, + { + "key": "multiplayer.status.old", + "english_translation": "Old" + }, + { + "key": "command.context.parse_error", + "english_translation": "%s at position %s: %s" + }, + { + "key": "stat.minecraft.drop", + "english_translation": "Items Dropped" + }, + { + "key": "block.minecraft.banner.stripe_downleft.red", + "english_translation": "Red Bend Sinister" + }, + { + "key": "block.minecraft.light_gray_bed", + "english_translation": "Light Gray Bed" + }, + { + "key": "stat_type.minecraft.crafted", + "english_translation": "Times Crafted" + }, + { + "key": "subtitles.block.sniffer_egg.plop", + "english_translation": "Sniffer plops" + }, + { + "key": "block.minecraft.polished_andesite_slab", + "english_translation": "Polished Andesite Slab" + }, + { + "key": "item.minecraft.firework_star.magenta", + "english_translation": "Magenta" + }, + { + "key": "subtitles.entity.villager.work_shepherd", + "english_translation": "Shepherd works" + }, + { + "key": "block.minecraft.mossy_cobblestone_wall", + "english_translation": "Mossy Cobblestone Wall" + }, + { + "key": "multiplayer.stopSleeping", + "english_translation": "Leave Bed" + }, + { + "key": "commands.particle.failed", + "english_translation": "The particle was not visible for anybody" + }, + { + "key": "subtitles.entity.camel.hurt", + "english_translation": "Camel hurts" + }, + { + "key": "advancements.husbandry.froglights.description", + "english_translation": "Have all Froglights in your inventory" + }, + { + "key": "screenshot.failure", + "english_translation": "Couldn't save screenshot: %s" + }, + { + "key": "parsing.quote.escape", + "english_translation": "Invalid escape sequence '\\%s' in quoted string" + }, + { + "key": "advancements.adventure.read_power_from_chiseled_bookshelf.title", + "english_translation": "The Power of Books" + }, + { + "key": "stat.minecraft.sprint_one_cm", + "english_translation": "Distance Sprinted" + }, + { + "key": "commands.scoreboard.objectives.remove.success", + "english_translation": "Removed objective %s" + }, + { + "key": "biome.minecraft.dark_forest", + "english_translation": "Dark Forest" + }, + { + "key": "entity.minecraft.trident", + "english_translation": "Trident" + }, + { + "key": "multiplayer.disconnect.unexpected_query_response", + "english_translation": "Unexpected custom data from client" + }, + { + "key": "block.minecraft.gilded_blackstone", + "english_translation": "Gilded Blackstone" + }, + { + "key": "subtitles.entity.husk.hurt", + "english_translation": "Husk hurts" + }, + { + "key": "advancements.story.form_obsidian.title", + "english_translation": "Ice Bucket Challenge" + }, + { + "key": "advancements.nether.charge_respawn_anchor.title", + "english_translation": "Not Quite \"Nine\" Lives" + }, + { + "key": "block.minecraft.jungle_slab", + "english_translation": "Jungle Slab" + }, + { + "key": "multiplayer.downloadingStats", + "english_translation": "Retrieving statistics..." + }, + { + "key": "subtitles.entity.cat.purr", + "english_translation": "Cat purrs" + }, + { + "key": "difficulty.lock.question", + "english_translation": "Are you sure you want to lock the difficulty of this world? This will set this world to always be %1$s, and you will never be able to change that again." + }, + { + "key": "item.minecraft.jungle_chest_boat", + "english_translation": "Jungle Boat with Chest" + }, + { + "key": "team.visibility.hideForOtherTeams", + "english_translation": "Hide for other teams" + }, + { + "key": "block.minecraft.mangrove_button", + "english_translation": "Mangrove Button" + }, + { + "key": "item.minecraft.chicken", + "english_translation": "Raw Chicken" + }, + { + "key": "block.minecraft.banner.square_bottom_left.white", + "english_translation": "White Base Dexter Canton" + }, + { + "key": "death.attack.fireworks.item", + "english_translation": "%1$s went off with a bang due to a firework fired from %3$s by %2$s" + }, + { + "key": "mco.selectServer.trial", + "english_translation": "Get a trial!" + }, + { + "key": "block.minecraft.yellow_stained_glass", + "english_translation": "Yellow Stained Glass" + }, + { + "key": "chat.coordinates", + "english_translation": "%s, %s, %s" + }, + { + "key": "subtitles.entity.skeleton_horse.ambient", + "english_translation": "Skeleton Horse cries" + }, + { + "key": "subtitles.block.chest.close", + "english_translation": "Chest closes" + }, + { + "key": "advancements.nether.find_bastion.title", + "english_translation": "Those Were the Days" + }, + { + "key": "item.minecraft.tipped_arrow.effect.empty", + "english_translation": "Uncraftable Tipped Arrow" + }, + { + "key": "block.minecraft.banner.square_top_left.white", + "english_translation": "White Chief Dexter Canton" + }, + { + "key": "block.minecraft.weathered_cut_copper_slab", + "english_translation": "Weathered Cut Copper Slab" + }, + { + "key": "gui.abuseReport.reason.alcohol_tobacco_drugs.description", + "english_translation": "Someone is encouraging others to partake in illegal drug related activities or encouraging underage drinking." + }, + { + "key": "options.prioritizeChunkUpdates.none.tooltip", + "english_translation": "Nearby chunks are compiled in parallel threads. This may result in brief visual holes when blocks are destroyed." + }, + { + "key": "block.minecraft.banner.mojang.pink", + "english_translation": "Pink Thing" + }, + { + "key": "gui.abuseReport.reason.defamation_impersonation_false_information", + "english_translation": "Defamation, impersonation, or false information" + }, + { + "key": "block.minecraft.birch_sign", + "english_translation": "Birch Sign" + }, + { + "key": "block.minecraft.banner.stripe_left.light_gray", + "english_translation": "Light Gray Pale Dexter" + }, + { + "key": "subtitles.entity.hoglin.hurt", + "english_translation": "Hoglin hurts" + }, + { + "key": "chat_screen.usage", + "english_translation": "Input message and press Enter to send" + }, + { + "key": "key.drop", + "english_translation": "Drop Selected Item" + }, + { + "key": "mco.configure.world.players.title", + "english_translation": "Players" + }, + { + "key": "flat_world_preset.minecraft.snowy_kingdom", + "english_translation": "Snowy Kingdom" + }, + { + "key": "item.minecraft.wheat", + "english_translation": "Wheat" + }, + { + "key": "entity.minecraft.end_crystal", + "english_translation": "End Crystal" + }, + { + "key": "options.mouse_settings.title", + "english_translation": "Mouse Settings" + }, + { + "key": "block.minecraft.shulker_box", + "english_translation": "Shulker Box" + }, + { + "key": "subtitles.entity.zombie_horse.ambient", + "english_translation": "Zombie Horse cries" + }, + { + "key": "subtitles.entity.mooshroom.eat", + "english_translation": "Mooshroom eats" + }, + { + "key": "block.minecraft.banner.base.cyan", + "english_translation": "Fully Cyan Field" + }, + { + "key": "gui.abuseReport.sending.title", + "english_translation": "Sending your report..." + }, + { + "key": "credits_and_attribution.button.attribution", + "english_translation": "Attribution" + }, + { + "key": "selectWorld.backupWarning.downgrade", + "english_translation": "This world was last played in version %s; you are on version %s. Downgrading a world could cause corruption - we cannot guarantee that it will load or work. If you still want to continue, please make a backup!" + }, + { + "key": "key.keyboard.keypad.add", + "english_translation": "Keypad +" + }, + { + "key": "block.minecraft.player_head.named", + "english_translation": "%s's Head" + }, + { + "key": "key.keyboard.slash", + "english_translation": "/" + }, + { + "key": "subtitles.entity.player.death", + "english_translation": "Player dies" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.yellow", + "english_translation": "Yellow Per Bend Inverted" + }, + { + "key": "menu.generatingTerrain", + "english_translation": "Building terrain" + }, + { + "key": "item.minecraft.golden_sword", + "english_translation": "Golden Sword" + }, + { + "key": "mco.error.invalid.session.message", + "english_translation": "Please try restarting Minecraft" + }, + { + "key": "commands.ride.not_riding", + "english_translation": "%s is not riding any vehicle" + }, + { + "key": "createWorld.customize.custom.preset.mountains", + "english_translation": "Mountain Madness" + }, + { + "key": "block.minecraft.farmland", + "english_translation": "Farmland" + }, + { + "key": "commands.data.get.multiple", + "english_translation": "This argument accepts a single NBT value" + }, + { + "key": "options.forceUnicodeFont", + "english_translation": "Force Unicode Font" + }, + { + "key": "block.minecraft.cobblestone", + "english_translation": "Cobblestone" + }, + { + "key": "entity.minecraft.egg", + "english_translation": "Thrown Egg" + }, + { + "key": "block.minecraft.cyan_terracotta", + "english_translation": "Cyan Terracotta" + }, + { + "key": "gui.chatReport.send.too_many_messages", + "english_translation": "Trying to include too many messages in the report" + }, + { + "key": "merchant.trades", + "english_translation": "Trades" + }, + { + "key": "block.minecraft.light_blue_concrete", + "english_translation": "Light Blue Concrete" + }, + { + "key": "block.minecraft.acacia_button", + "english_translation": "Acacia Button" + }, + { + "key": "item.minecraft.fermented_spider_eye", + "english_translation": "Fermented Spider Eye" + }, + { + "key": "mco.configure.world.activityfeed.disabled", + "english_translation": "Player feed temporarily disabled" + }, + { + "key": "block.minecraft.honeycomb_block", + "english_translation": "Honeycomb Block" + }, + { + "key": "commands.deop.success", + "english_translation": "Made %s no longer a server operator" + }, + { + "key": "key.fullscreen", + "english_translation": "Toggle Fullscreen" + }, + { + "key": "block.minecraft.banner.border.gray", + "english_translation": "Gray Bordure" + }, + { + "key": "commands.function.success.single.result", + "english_translation": "Function '%2$s' returned %1$s" + }, + { + "key": "selectWorld.mapFeatures", + "english_translation": "Generate Structures" + }, + { + "key": "subtitles.block.chorus_flower.death", + "english_translation": "Chorus Flower withers" + }, + { + "key": "subtitles.block.sculk_catalyst.bloom", + "english_translation": "Sculk Catalyst blooms" + }, + { + "key": "subtitles.entity.warden.attack_impact", + "english_translation": "Warden lands hit" + }, + { + "key": "block.minecraft.magenta_terracotta", + "english_translation": "Magenta Terracotta" + }, + { + "key": "accessibility.onboarding.screen.narrator", + "english_translation": "Press enter to enable the narrator" + }, + { + "key": "enchantment.minecraft.projectile_protection", + "english_translation": "Projectile Protection" + }, + { + "key": "subtitles.block.beehive.enter", + "english_translation": "Bee enters hive" + }, + { + "key": "enchantment.minecraft.bane_of_arthropods", + "english_translation": "Bane of Arthropods" + }, + { + "key": "block.minecraft.banner.base.purple", + "english_translation": "Fully Purple Field" + }, + { + "key": "block.minecraft.stripped_jungle_wood", + "english_translation": "Stripped Jungle Wood" + }, + { + "key": "trim_material.minecraft.quartz", + "english_translation": "Quartz Material" + }, + { + "key": "createWorld.customize.custom.fixedBiome", + "english_translation": "Biome" + }, + { + "key": "block.minecraft.banner.stripe_middle.magenta", + "english_translation": "Magenta Fess" + }, + { + "key": "subtitles.item.bundle.insert", + "english_translation": "Item packed" + }, + { + "key": "subtitles.block.tripwire.attach", + "english_translation": "Tripwire attaches" + }, + { + "key": "subtitles.entity.zombie_villager.ambient", + "english_translation": "Zombie Villager groans" + }, + { + "key": "pack.incompatible.confirm.new", + "english_translation": "This pack was made for a newer version of Minecraft and may not work correctly." + }, + { + "key": "commands.advancement.advancementNotFound", + "english_translation": "No advancement was found by the name '%1$s'" + }, + { + "key": "subtitles.entity.sniffer.scenting", + "english_translation": "Sniffer scents" + }, + { + "key": "block.minecraft.banner.stripe_downleft.pink", + "english_translation": "Pink Bend Sinister" + }, + { + "key": "painting.minecraft.water.author", + "english_translation": "Mojang" + }, + { + "key": "block.minecraft.yellow_bed", + "english_translation": "Yellow Bed" + }, + { + "key": "gui.done", + "english_translation": "Done" + }, + { + "key": "commands.schedule.created.tag", + "english_translation": "Scheduled tag '%s' in %s ticks at gametime %s" + }, + { + "key": "arguments.nbtpath.node.invalid", + "english_translation": "Invalid NBT path element" + }, + { + "key": "death.attack.dragonBreath", + "english_translation": "%1$s was roasted in dragon's breath" + }, + { + "key": "commands.jfr.dump.failed", + "english_translation": "Failed to dump JFR recording: %s" + }, + { + "key": "mco.time.hoursAgo", + "english_translation": "%1$s hour(s) ago" + }, + { + "key": "stat.minecraft.climb_one_cm", + "english_translation": "Distance Climbed" + }, + { + "key": "subtitles.entity.iron_golem.repair", + "english_translation": "Iron Golem repaired" + }, + { + "key": "death.fell.assist.item", + "english_translation": "%1$s was doomed to fall by %2$s using %3$s" + }, + { + "key": "advancements.adventure.trim_with_all_exclusive_armor_patterns.title", + "english_translation": "Smithing with Style" + }, + { + "key": "block.minecraft.crimson_nylium", + "english_translation": "Crimson Nylium" + }, + { + "key": "item.minecraft.sheep_spawn_egg", + "english_translation": "Sheep Spawn Egg" + }, + { + "key": "advancements.adventure.sniper_duel.title", + "english_translation": "Sniper Duel" + }, + { + "key": "entity.minecraft.vex", + "english_translation": "Vex" + }, + { + "key": "advancements.nether.loot_bastion.title", + "english_translation": "War Pigs" + }, + { + "key": "block.minecraft.mossy_cobblestone", + "english_translation": "Mossy Cobblestone" + }, + { + "key": "death.attack.sweetBerryBush.player", + "english_translation": "%1$s was poked to death by a sweet berry bush whilst trying to escape %2$s" + }, + { + "key": "block.minecraft.prismarine_brick_stairs", + "english_translation": "Prismarine Brick Stairs" + }, + { + "key": "block.minecraft.ladder", + "english_translation": "Ladder" + }, + { + "key": "selectWorld.customizeType", + "english_translation": "Customize" + }, + { + "key": "subtitles.item.bundle.drop_contents", + "english_translation": "Bundle empties" + }, + { + "key": "block.minecraft.jungle_planks", + "english_translation": "Jungle Planks" + }, + { + "key": "subtitles.entity.frog.eat", + "english_translation": "Frog eats" + }, + { + "key": "argument.anchor.invalid", + "english_translation": "Invalid entity anchor position %s" + }, + { + "key": "subtitles.entity.item_frame.break", + "english_translation": "Item Frame breaks" + }, + { + "key": "block.minecraft.banner.diagonal_left.purple", + "english_translation": "Purple Per Bend Sinister" + }, + { + "key": "gui.banned.description", + "english_translation": "%s\n\n%s\n\nLearn more at the following link: %s" + }, + { + "key": "itemGroup.redstone", + "english_translation": "Redstone Blocks" + }, + { + "key": "stat.minecraft.trigger_trapped_chest", + "english_translation": "Trapped Chests Triggered" + }, + { + "key": "editGamerule.title", + "english_translation": "Edit Game Rules" + }, + { + "key": "item.minecraft.chainmail_leggings", + "english_translation": "Chainmail Leggings" + }, + { + "key": "item.minecraft.skeleton_horse_spawn_egg", + "english_translation": "Skeleton Horse Spawn Egg" + }, + { + "key": "item.minecraft.squid_spawn_egg", + "english_translation": "Squid Spawn Egg" + }, + { + "key": "selectWorld.conversion.tooltip", + "english_translation": "This world must be opened in an older version (like 1.6.4) to be safely converted" + }, + { + "key": "block.minecraft.banner.square_bottom_right.cyan", + "english_translation": "Cyan Base Sinister Canton" + }, + { + "key": "block.minecraft.banner.creeper.light_gray", + "english_translation": "Light Gray Creeper Charge" + }, + { + "key": "block.minecraft.banner.triangles_top.yellow", + "english_translation": "Yellow Chief Indented" + }, + { + "key": "block.minecraft.oak_fence", + "english_translation": "Oak Fence" + }, + { + "key": "item.minecraft.lingering_potion.effect.invisibility", + "english_translation": "Lingering Potion of Invisibility" + }, + { + "key": "dataPack.bundle.description", + "english_translation": "Enables experimental Bundle item" + }, + { + "key": "container.beacon", + "english_translation": "Beacon" + }, + { + "key": "commands.clone.overlap", + "english_translation": "The source and destination areas cannot overlap" + }, + { + "key": "block.minecraft.banner.half_vertical_right.black", + "english_translation": "Black Per Pale Inverted" + }, + { + "key": "biome.minecraft.lush_caves", + "english_translation": "Lush Caves" + }, + { + "key": "selectWorld.backupEraseCache", + "english_translation": "Erase Cached Data" + }, + { + "key": "block.minecraft.crimson_fence_gate", + "english_translation": "Crimson Fence Gate" + }, + { + "key": "block.minecraft.banner.cross.light_blue", + "english_translation": "Light Blue Saltire" + }, + { + "key": "block.minecraft.potted_pink_tulip", + "english_translation": "Potted Pink Tulip" + }, + { + "key": "mco.download.resourcePack.fail", + "english_translation": "Failed to download resource pack!" + }, + { + "key": "block.minecraft.potted_fern", + "english_translation": "Potted Fern" + }, + { + "key": "item.minecraft.nautilus_shell", + "english_translation": "Nautilus Shell" + }, + { + "key": "item.minecraft.golden_hoe", + "english_translation": "Golden Hoe" + }, + { + "key": "item.minecraft.potion.effect.fire_resistance", + "english_translation": "Potion of Fire Resistance" + }, + { + "key": "gui.chatSelection.context", + "english_translation": "Messages surrounding this selection will be included to provide additional context" + }, + { + "key": "subtitles.entity.tropical_fish.death", + "english_translation": "Tropical Fish dies" + }, + { + "key": "flat_world_preset.minecraft.overworld", + "english_translation": "Overworld" + }, + { + "key": "item.minecraft.carrot_on_a_stick", + "english_translation": "Carrot on a Stick" + }, + { + "key": "multiplayer.disconnect.out_of_order_chat", + "english_translation": "Out-of-order chat packet received. Did your system time change?" + }, + { + "key": "narration.recipe", + "english_translation": "Recipe for %s" + }, + { + "key": "controls.reset", + "english_translation": "Reset" + }, + { + "key": "trim_pattern.minecraft.eye", + "english_translation": "Eye Armor Trim" + }, + { + "key": "entity.minecraft.mooshroom", + "english_translation": "Mooshroom" + }, + { + "key": "argument.resource.invalid_type", + "english_translation": "Element '%s' has wrong type '%s' (expected '%s')" + }, + { + "key": "commands.team.option.seeFriendlyInvisibles.alreadyEnabled", + "english_translation": "Nothing changed. That team can already see invisible teammates" + }, + { + "key": "item.minecraft.bow", + "english_translation": "Bow" + }, + { + "key": "options.glintStrength", + "english_translation": "Glint Strength" + }, + { + "key": "block.minecraft.banner.stripe_bottom.gray", + "english_translation": "Gray Base" + }, + { + "key": "block.minecraft.deepslate", + "english_translation": "Deepslate" + }, + { + "key": "block.minecraft.wheat", + "english_translation": "Wheat Crops" + }, + { + "key": "gamerule.maxCommandChainLength.description", + "english_translation": "Applies to command block chains and functions." + }, + { + "key": "menu.online", + "english_translation": "Minecraft Realms" + }, + { + "key": "stat.minecraft.damage_dealt_absorbed", + "english_translation": "Damage Dealt (Absorbed)" + }, + { + "key": "block.minecraft.banner.triangle_bottom.white", + "english_translation": "White Chevron" + }, + { + "key": "options.accessibility.text_background.everywhere", + "english_translation": "Everywhere" + }, + { + "key": "item.minecraft.debug_stick", + "english_translation": "Debug Stick" + }, + { + "key": "block.minecraft.banner.piglin.brown", + "english_translation": "Brown Snout" + }, + { + "key": "block.minecraft.dark_oak_hanging_sign", + "english_translation": "Dark Oak Hanging Sign" + }, + { + "key": "mco.selectServer.expiredRenew", + "english_translation": "Renew" + }, + { + "key": "item.minecraft.mule_spawn_egg", + "english_translation": "Mule Spawn Egg" + }, + { + "key": "instrument.minecraft.seek_goat_horn", + "english_translation": "Seek" + }, + { + "key": "block.minecraft.banner.cross.gray", + "english_translation": "Gray Saltire" + }, + { + "key": "block.minecraft.bamboo_block", + "english_translation": "Block of Bamboo" + }, + { + "key": "lanServer.port.unavailable", + "english_translation": "Port not available.\nLeave the edit box empty or enter a different number between 1024 and 65535." + }, + { + "key": "item.minecraft.hopper_minecart", + "english_translation": "Minecart with Hopper" + }, + { + "key": "demo.remainingTime", + "english_translation": "Remaining time: %s" + }, + { + "key": "gamerule.waterSourceConversion", + "english_translation": "Water converts to source" + }, + { + "key": "pack.description.modResources", + "english_translation": "Mod resources." + }, + { + "key": "item.minecraft.tipped_arrow.effect.awkward", + "english_translation": "Tipped Arrow" + }, + { + "key": "mco.client.incompatible.title", + "english_translation": "Client incompatible!" + }, + { + "key": "block.minecraft.banner.stripe_center.orange", + "english_translation": "Orange Pale" + }, + { + "key": "mco.selectServer.create", + "english_translation": "Create realm" + }, + { + "key": "block.minecraft.banner.stripe_left.purple", + "english_translation": "Purple Pale Dexter" + }, + { + "key": "subtitles.entity.player.attack.crit", + "english_translation": "Critical attack" + }, + { + "key": "subtitles.entity.panda.worried_ambient", + "english_translation": "Panda whimpers" + }, + { + "key": "subtitles.item.dye.use", + "english_translation": "Dye stains" + }, + { + "key": "instrument.minecraft.dream_goat_horn", + "english_translation": "Dream" + }, + { + "key": "block.minecraft.banner.globe.white", + "english_translation": "White Globe" + }, + { + "key": "dataPack.vanilla.name", + "english_translation": "Default" + }, + { + "key": "gui.down", + "english_translation": "Down" + }, + { + "key": "block.minecraft.black_bed", + "english_translation": "Black Bed" + }, + { + "key": "entity.minecraft.sniffer", + "english_translation": "Sniffer" + }, + { + "key": "block.minecraft.banner.stripe_middle.gray", + "english_translation": "Gray Fess" + }, + { + "key": "death.attack.onFire.player", + "english_translation": "%1$s was burnt to a crisp whilst fighting %2$s" + }, + { + "key": "subtitles.block.composter.empty", + "english_translation": "Composter emptied" + }, + { + "key": "subtitles.entity.warden.nearby_closer", + "english_translation": "Warden advances" + }, + { + "key": "demo.demoExpired", + "english_translation": "Demo time's up!" + }, + { + "key": "item.minecraft.spruce_boat", + "english_translation": "Spruce Boat" + }, + { + "key": "commands.weather.set.clear", + "english_translation": "Set the weather to clear" + }, + { + "key": "subtitles.item.crossbow.shoot", + "english_translation": "Crossbow fires" + }, + { + "key": "mco.backup.restoring", + "english_translation": "Restoring your realm" + }, + { + "key": "subtitles.entity.item_frame.place", + "english_translation": "Item Frame placed" + }, + { + "key": "subtitles.entity.hoglin.converted_to_zombified", + "english_translation": "Hoglin converts to Zoglin" + }, + { + "key": "subtitles.entity.magma_cube.death", + "english_translation": "Magma Cube dies" + }, + { + "key": "commands.worldborder.warning.time.failed", + "english_translation": "Nothing changed. The world border warning is already that amount of time" + }, + { + "key": "block.minecraft.banner.half_vertical_right.green", + "english_translation": "Green Per Pale Inverted" + }, + { + "key": "item.minecraft.tipped_arrow.effect.mundane", + "english_translation": "Tipped Arrow" + }, + { + "key": "subtitles.entity.parrot.imitate.wither", + "english_translation": "Parrot angers" + }, + { + "key": "advancements.adventure.honey_block_slide.description", + "english_translation": "Jump into a Honey Block to break your fall" + }, + { + "key": "advancements.adventure.two_birds_one_arrow.title", + "english_translation": "Two Birds, One Arrow" + }, + { + "key": "block.minecraft.banner.gradient.blue", + "english_translation": "Blue Gradient" + }, + { + "key": "mco.selectServer.closed", + "english_translation": "Closed realm" + }, + { + "key": "block.minecraft.sea_lantern", + "english_translation": "Sea Lantern" + }, + { + "key": "block.minecraft.stripped_jungle_log", + "english_translation": "Stripped Jungle Log" + }, + { + "key": "container.brewing", + "english_translation": "Brewing Stand" + }, + { + "key": "subtitles.block.generic.hit", + "english_translation": "Block breaking" + }, + { + "key": "block.minecraft.prismarine_bricks", + "english_translation": "Prismarine Bricks" + }, + { + "key": "selectServer.deleteWarning", + "english_translation": "'%s' will be lost forever! (A long time!)" + }, + { + "key": "subtitles.entity.piglin.death", + "english_translation": "Piglin dies" + }, + { + "key": "block.minecraft.banner.creeper.cyan", + "english_translation": "Cyan Creeper Charge" + }, + { + "key": "advancements.husbandry.wax_on.description", + "english_translation": "Apply Honeycomb to a Copper block!" + }, + { + "key": "item.minecraft.brown_dye", + "english_translation": "Brown Dye" + }, + { + "key": "mco.upload.hardcore", + "english_translation": "Hardcore worlds can't be uploaded!" + }, + { + "key": "subtitles.entity.egg.throw", + "english_translation": "Egg flies" + }, + { + "key": "advancements.adventure.kill_mob_near_sculk_catalyst.description", + "english_translation": "Kill a mob near a Sculk Catalyst" + }, + { + "key": "item.minecraft.prize_pottery_sherd", + "english_translation": "Prize Pottery Sherd" + }, + { + "key": "stat.minecraft.walk_under_water_one_cm", + "english_translation": "Distance Walked under Water" + }, + { + "key": "createWorld.customize.custom.preset.caveChaos", + "english_translation": "Caves of Chaos" + }, + { + "key": "stat.minecraft.interact_with_blast_furnace", + "english_translation": "Interactions with Blast Furnace" + }, + { + "key": "gui.recipebook.toggleRecipes.smeltable", + "english_translation": "Showing Smeltable" + }, + { + "key": "item.minecraft.panda_spawn_egg", + "english_translation": "Panda Spawn Egg" + }, + { + "key": "block.minecraft.conduit", + "english_translation": "Conduit" + }, + { + "key": "block.minecraft.oxidized_cut_copper", + "english_translation": "Oxidized Cut Copper" + }, + { + "key": "commands.worldborder.damage.buffer.failed", + "english_translation": "Nothing changed. The world border damage buffer is already that distance" + }, + { + "key": "block.minecraft.white_candle_cake", + "english_translation": "Cake with White Candle" + }, + { + "key": "block.minecraft.dead_bubble_coral", + "english_translation": "Dead Bubble Coral" + }, + { + "key": "block.minecraft.cobblestone_stairs", + "english_translation": "Cobblestone Stairs" + }, + { + "key": "gui.abuseReport.reason.imminent_harm", + "english_translation": "Imminent harm - Threat to harm others" + }, + { + "key": "mco.invites.nopending", + "english_translation": "No pending invites!" + }, + { + "key": "subtitles.entity.parrot.imitate.husk", + "english_translation": "Parrot groans" + }, + { + "key": "stat.minecraft.play_time", + "english_translation": "Time Played" + }, + { + "key": "block.minecraft.banner.curly_border.red", + "english_translation": "Red Bordure Indented" + }, + { + "key": "block.minecraft.calcite", + "english_translation": "Calcite" + }, + { + "key": "subtitles.entity.skeleton.hurt", + "english_translation": "Skeleton hurts" + }, + { + "key": "block.minecraft.cyan_concrete_powder", + "english_translation": "Cyan Concrete Powder" + }, + { + "key": "commands.spawnpoint.success.single", + "english_translation": "Set spawn point to %s, %s, %s [%s] in %s for %s" + }, + { + "key": "block.minecraft.gray_bed", + "english_translation": "Gray Bed" + }, + { + "key": "argument.entity.invalid", + "english_translation": "Invalid name or UUID" + }, + { + "key": "block.minecraft.grass", + "english_translation": "Grass" + }, + { + "key": "mirror.left_right", + "english_translation": "← →" + }, + { + "key": "subtitles.item.spyglass.use", + "english_translation": "Spyglass expands" + }, + { + "key": "createWorld.customize.presets.select", + "english_translation": "Use Preset" + }, + { + "key": "commands.fillbiome.toobig", + "english_translation": "Too many blocks in the specified volume (maximum %s, specified %s)" + }, + { + "key": "createWorld.customize.custom.useMansions", + "english_translation": "Woodland Mansions" + }, + { + "key": "commands.advancement.revoke.one.to.one.success", + "english_translation": "Revoked the advancement %s from %s" + }, + { + "key": "selectWorld.recreate.customized.text", + "english_translation": "Customized worlds are no longer supported in this version of Minecraft. We can try to recreate it with the same seed and properties, but any terrain customizations will be lost. We're sorry for the inconvenience!" + }, + { + "key": "block.minecraft.jungle_door", + "english_translation": "Jungle Door" + }, + { + "key": "death.attack.freeze.player", + "english_translation": "%1$s was frozen to death by %2$s" + }, + { + "key": "entity.minecraft.drowned", + "english_translation": "Drowned" + }, + { + "key": "entity.minecraft.pufferfish", + "english_translation": "Pufferfish" + }, + { + "key": "block.minecraft.banner.globe.red", + "english_translation": "Red Globe" + }, + { + "key": "item.minecraft.dried_kelp", + "english_translation": "Dried Kelp" + }, + { + "key": "subtitles.entity.camel.step", + "english_translation": "Camel steps" + }, + { + "key": "block.minecraft.basalt", + "english_translation": "Basalt" + }, + { + "key": "item.minecraft.diamond_chestplate", + "english_translation": "Diamond Chestplate" + }, + { + "key": "credits_and_attribution.button.licenses", + "english_translation": "Licenses" + }, + { + "key": "selectWorld.resultFolder", + "english_translation": "Will be saved in:" + }, + { + "key": "block.minecraft.creeper_head", + "english_translation": "Creeper Head" + }, + { + "key": "commands.advancement.revoke.criterion.to.one.success", + "english_translation": "Revoked criterion '%s' of advancement %s from %s" + }, + { + "key": "pack.source.server", + "english_translation": "server" + }, + { + "key": "block.minecraft.dark_prismarine", + "english_translation": "Dark Prismarine" + }, + { + "key": "subtitles.item.armor.equip_turtle", + "english_translation": "Turtle Shell thunks" + }, + { + "key": "stat.minecraft.minecart_one_cm", + "english_translation": "Distance by Minecart" + }, + { + "key": "selectWorld.edit.backupSize", + "english_translation": "size: %s MB" + }, + { + "key": "subtitles.entity.parrot.imitate.phantom", + "english_translation": "Parrot screeches" + }, + { + "key": "subtitles.entity.dolphin.splash", + "english_translation": "Dolphin splashes" + }, + { + "key": "item.minecraft.bamboo_raft", + "english_translation": "Bamboo Raft" + }, + { + "key": "item.minecraft.firework_star.brown", + "english_translation": "Brown" + }, + { + "key": "item.minecraft.emerald", + "english_translation": "Emerald" + }, + { + "key": "subtitles.entity.salmon.hurt", + "english_translation": "Salmon hurts" + }, + { + "key": "tutorial.punch_tree.description", + "english_translation": "Hold down %s" + }, + { + "key": "commands.title.reset.multiple", + "english_translation": "Reset title options for %s players" + }, + { + "key": "pack.source.local", + "english_translation": "local" + }, + { + "key": "subtitles.entity.evoker.death", + "english_translation": "Evoker dies" + }, + { + "key": "item.modifiers.feet", + "english_translation": "When on Feet:" + }, + { + "key": "subtitles.entity.horse.saddle", + "english_translation": "Saddle equips" + }, + { + "key": "subtitles.entity.wither.ambient", + "english_translation": "Wither angers" + }, + { + "key": "mco.backup.entry.uploaded", + "english_translation": "Uploaded" + }, + { + "key": "entity.minecraft.zombified_piglin", + "english_translation": "Zombified Piglin" + }, + { + "key": "chat.disabled.profile.moreInfo", + "english_translation": "Chat not allowed by account settings. Cannot send or view messages." + }, + { + "key": "stat.minecraft.play_noteblock", + "english_translation": "Note Blocks Played" + }, + { + "key": "advancements.husbandry.make_a_sign_glow.description", + "english_translation": "Make the text of any kind of sign glow" + }, + { + "key": "block.minecraft.cherry_fence", + "english_translation": "Cherry Fence" + }, + { + "key": "subtitles.entity.arrow.hit_player", + "english_translation": "Player hit" + }, + { + "key": "disconnect.lost", + "english_translation": "Connection Lost" + }, + { + "key": "advMode.mode.autoexec.bat", + "english_translation": "Always Active" + }, + { + "key": "block.minecraft.copper_block", + "english_translation": "Block of Copper" + }, + { + "key": "block.minecraft.lime_shulker_box", + "english_translation": "Lime Shulker Box" + }, + { + "key": "gui.socialInteractions.status_hidden", + "english_translation": "Hidden" + }, + { + "key": "commands.spreadplayers.failed.teams", + "english_translation": "Could not spread %s team(s) around %s, %s (too many entities for space - try using spread of at most %s)" + }, + { + "key": "pack.incompatible.old", + "english_translation": "(Made for an older version of Minecraft)" + }, + { + "key": "block.minecraft.acacia_wood", + "english_translation": "Acacia Wood" + }, + { + "key": "gamerule.doTileDrops.description", + "english_translation": "Controls resource drops from blocks, including experience orbs." + }, + { + "key": "block.minecraft.potted_azalea_bush", + "english_translation": "Potted Azalea" + }, + { + "key": "block.minecraft.banner.circle.orange", + "english_translation": "Orange Roundel" + }, + { + "key": "block.minecraft.gravel", + "english_translation": "Gravel" + }, + { + "key": "block.minecraft.bubble_coral_wall_fan", + "english_translation": "Bubble Coral Wall Fan" + }, + { + "key": "subtitles.entity.minecart.riding", + "english_translation": "Minecart rolls" + }, + { + "key": "block.minecraft.banner.mojang.gray", + "english_translation": "Gray Thing" + }, + { + "key": "death.attack.genericKill", + "english_translation": "%1$s was killed" + }, + { + "key": "block.minecraft.light_blue_terracotta", + "english_translation": "Light Blue Terracotta" + }, + { + "key": "commands.team.remove.success", + "english_translation": "Removed team %s" + }, + { + "key": "key.togglePerspective", + "english_translation": "Toggle Perspective" + }, + { + "key": "subtitles.entity.enderman.scream", + "english_translation": "Enderman screams" + }, + { + "key": "item.minecraft.rabbit_stew", + "english_translation": "Rabbit Stew" + }, + { + "key": "item.minecraft.netherite_sword", + "english_translation": "Netherite Sword" + }, + { + "key": "biome.minecraft.ice_spikes", + "english_translation": "Ice Spikes" + }, + { + "key": "options.hideMatchedNames.tooltip", + "english_translation": "3rd-party Servers may send chat messages in non-standard formats.\nWith this option on, hidden players will be matched based on chat sender names." + }, + { + "key": "mco.client.incompatible.msg.line1", + "english_translation": "Your client is not compatible with Realms." + }, + { + "key": "block.minecraft.pink_concrete", + "english_translation": "Pink Concrete" + }, + { + "key": "item.minecraft.chainmail_chestplate", + "english_translation": "Chainmail Chestplate" + }, + { + "key": "mco.client.incompatible.msg.line3", + "english_translation": "Realms is not compatible with snapshot versions." + }, + { + "key": "mco.client.incompatible.msg.line2", + "english_translation": "Please use the most recent version of Minecraft." + }, + { + "key": "commands.tag.remove.failed", + "english_translation": "Target does not have this tag" + }, + { + "key": "deathScreen.titleScreen", + "english_translation": "Title Screen" + }, + { + "key": "item.minecraft.lingering_potion.effect.levitation", + "english_translation": "Lingering Potion of Levitation" + }, + { + "key": "item.minecraft.nether_brick", + "english_translation": "Nether Brick" + }, + { + "key": "death.attack.inFire.player", + "english_translation": "%1$s walked into fire whilst fighting %2$s" + }, + { + "key": "block.minecraft.prismarine", + "english_translation": "Prismarine" + }, + { + "key": "block.minecraft.banner.half_vertical_right.gray", + "english_translation": "Gray Per Pale Inverted" + }, + { + "key": "item.minecraft.music_disc_far", + "english_translation": "Music Disc" + }, + { + "key": "structure_block.size_failure", + "english_translation": "Unable to detect structure size. Add corners with matching structure names" + }, + { + "key": "entity.minecraft.panda", + "english_translation": "Panda" + }, + { + "key": "narration.button", + "english_translation": "Button: %s" + }, + { + "key": "options.difficulty.hard.info", + "english_translation": "Hostile mobs spawn and deal more damage. Hunger bar depletes and drains all health." + }, + { + "key": "selectWorld.backupJoinConfirmButton", + "english_translation": "Create Backup and Load" + }, + { + "key": "multiplayer.status.quitting", + "english_translation": "Quitting" + }, + { + "key": "subtitles.entity.goat.ram_impact", + "english_translation": "Goat rams" + }, + { + "key": "subtitles.item.brush.brushing.gravel.complete", + "english_translation": "Brushing Gravel completed" + }, + { + "key": "block.minecraft.brown_stained_glass_pane", + "english_translation": "Brown Stained Glass Pane" + }, + { + "key": "advancements.adventure.avoid_vibration.description", + "english_translation": "Sneak near a Sculk Sensor or Warden to prevent it from detecting you" + }, + { + "key": "entity.minecraft.potion", + "english_translation": "Potion" + }, + { + "key": "soundCategory.weather", + "english_translation": "Weather" + }, + { + "key": "block.minecraft.banner.straight_cross.red", + "english_translation": "Red Cross" + }, + { + "key": "gui.chatSelection.heading", + "english_translation": "%s %s" + }, + { + "key": "commands.attribute.value.get.success", + "english_translation": "Value of attribute %s for entity %s is %s" + }, + { + "key": "merchant.deprecated", + "english_translation": "Villagers restock up to two times per day." + }, + { + "key": "commands.title.times.multiple", + "english_translation": "Changed title display times for %s players" + }, + { + "key": "block.minecraft.banner.stripe_middle.green", + "english_translation": "Green Fess" + }, + { + "key": "subtitles.entity.creeper.primed", + "english_translation": "Creeper hisses" + }, + { + "key": "block.minecraft.light_blue_stained_glass", + "english_translation": "Light Blue Stained Glass" + }, + { + "key": "entity.minecraft.villager.toolsmith", + "english_translation": "Toolsmith" + }, + { + "key": "item.minecraft.diamond_shovel", + "english_translation": "Diamond Shovel" + }, + { + "key": "pack.copyFailure", + "english_translation": "Failed to copy packs" + }, + { + "key": "gui.socialInteractions.shown_in_chat", + "english_translation": "Chat messages from %s will be shown" + }, + { + "key": "subtitles.entity.axolotl.idle_water", + "english_translation": "Axolotl chirps" + }, + { + "key": "narrator.controls.bound", + "english_translation": "%s is bound to %s" + }, + { + "key": "block.minecraft.banner.triangles_bottom.purple", + "english_translation": "Purple Base Indented" + }, + { + "key": "subtitles.entity.sniffer.egg_hatch", + "english_translation": "Sniffer Egg hatches" + }, + { + "key": "telemetry_info.button.show_data", + "english_translation": "Open My Data" + }, + { + "key": "subtitles.entity.zombie_villager.cure", + "english_translation": "Zombie Villager snuffles" + }, + { + "key": "commands.drop.success.single_with_table", + "english_translation": "Dropped %s %s from loot table %s" + }, + { + "key": "block.minecraft.waxed_exposed_cut_copper_slab", + "english_translation": "Waxed Exposed Cut Copper Slab" + }, + { + "key": "structure_block.mode.corner", + "english_translation": "Corner" + }, + { + "key": "commands.ride.mount.failure.cant_ride_players", + "english_translation": "Players can't be ridden" + }, + { + "key": "gamerule.doInsomnia", + "english_translation": "Spawn phantoms" + }, + { + "key": "filled_map.level", + "english_translation": "(Level %s/%s)" + }, + { + "key": "commands.team.list.members.empty", + "english_translation": "There are no members on team %s" + }, + { + "key": "subtitles.entity.wolf.ambient", + "english_translation": "Wolf pants" + }, + { + "key": "mco.configure.world.buttons.close", + "english_translation": "Close realm" + }, + { + "key": "key.smoothCamera", + "english_translation": "Toggle Cinematic Camera" + }, + { + "key": "block.minecraft.banner.stripe_top.light_blue", + "english_translation": "Light Blue Chief" + }, + { + "key": "selectWorld.experimental.message", + "english_translation": "Be careful!\nThis configuration requires features that are still under development. Your world might crash, break, or not work with future updates." + }, + { + "key": "options.glintSpeed", + "english_translation": "Glint Speed" + }, + { + "key": "subtitles.entity.wither.death", + "english_translation": "Wither dies" + }, + { + "key": "argument.item.id.invalid", + "english_translation": "Unknown item '%s'" + }, + { + "key": "block.minecraft.stone_brick_stairs", + "english_translation": "Stone Brick Stairs" + }, + { + "key": "mco.backup.entry.enabledPack", + "english_translation": "Enabled Pack" + }, + { + "key": "commands.list.nameAndId", + "english_translation": "%s (%s)" + }, + { + "key": "pack.incompatible.confirm.title", + "english_translation": "Are you sure you want to load this pack?" + }, + { + "key": "subtitles.entity.frog.ambient", + "english_translation": "Frog croaks" + }, + { + "key": "argument.entity.options.advancements.description", + "english_translation": "Players with advancements" + }, + { + "key": "gamerule.freezeDamage", + "english_translation": "Deal freeze damage" + }, + { + "key": "subtitles.block.big_dripleaf.tilt_down", + "english_translation": "Dripleaf tilts down" + }, + { + "key": "block.minecraft.target", + "english_translation": "Target" + }, + { + "key": "item.minecraft.tipped_arrow.effect.water", + "english_translation": "Arrow of Splashing" + }, + { + "key": "block.minecraft.hanging_roots", + "english_translation": "Hanging Roots" + }, + { + "key": "block.minecraft.birch_sapling", + "english_translation": "Birch Sapling" + }, + { + "key": "gui.abuseReport.sent.title", + "english_translation": "Report sent" + }, + { + "key": "item.minecraft.iron_golem_spawn_egg", + "english_translation": "Iron Golem Spawn Egg" + }, + { + "key": "block.minecraft.banner.half_vertical_right.white", + "english_translation": "White Per Pale Inverted" + }, + { + "key": "commands.difficulty.query", + "english_translation": "The difficulty is %s" + }, + { + "key": "mco.time.secondsAgo", + "english_translation": "%1$s second(s) ago" + }, + { + "key": "block.minecraft.jungle_sapling", + "english_translation": "Jungle Sapling" + }, + { + "key": "block.minecraft.kelp", + "english_translation": "Kelp" + }, + { + "key": "demo.help.movementMouse", + "english_translation": "Look around using the mouse" + }, + { + "key": "commands.whitelist.remove.success", + "english_translation": "Removed %s from the whitelist" + }, + { + "key": "advancements.adventure.kill_a_mob.title", + "english_translation": "Monster Hunter" + }, + { + "key": "death.attack.hotFloor.player", + "english_translation": "%1$s walked into the danger zone due to %2$s" + }, + { + "key": "commands.spectate.success.started", + "english_translation": "Now spectating %s" + }, + { + "key": "block.minecraft.banner.stripe_right.light_blue", + "english_translation": "Light Blue Pale Sinister" + }, + { + "key": "advancements.adventure.whos_the_pillager_now.description", + "english_translation": "Give a Pillager a taste of their own medicine" + }, + { + "key": "parsing.expected", + "english_translation": "Expected '%s'" + }, + { + "key": "block.minecraft.chorus_plant", + "english_translation": "Chorus Plant" + }, + { + "key": "options.graphics.warning.version", + "english_translation": "OpenGL Version detected: [%s]" + }, + { + "key": "gui.chatReport.draft.discard", + "english_translation": "Discard" + }, + { + "key": "selectWorld.backupQuestion.downgrade", + "english_translation": "Downgrading a world is not supported" + }, + { + "key": "options.hideLightningFlashes", + "english_translation": "Hide Lightning Flashes" + }, + { + "key": "item.minecraft.cooked_rabbit", + "english_translation": "Cooked Rabbit" + }, + { + "key": "key.keyboard.right.bracket", + "english_translation": "]" + }, + { + "key": "entity.minecraft.shulker_bullet", + "english_translation": "Shulker Bullet" + }, + { + "key": "gui.recipebook.search_hint", + "english_translation": "Search..." + }, + { + "key": "mco.selectServer.expiredTrial", + "english_translation": "Your trial has ended" + }, + { + "key": "block.minecraft.banner.stripe_downleft.purple", + "english_translation": "Purple Bend Sinister" + }, + { + "key": "argument.entity.options.type.description", + "english_translation": "Entities of type" + }, + { + "key": "block.minecraft.azure_bluet", + "english_translation": "Azure Bluet" + }, + { + "key": "trim_material.minecraft.lapis", + "english_translation": "Lapis Material" + }, + { + "key": "trim_pattern.minecraft.tide", + "english_translation": "Tide Armor Trim" + }, + { + "key": "block.minecraft.banner.stripe_middle.white", + "english_translation": "White Fess" + }, + { + "key": "subtitles.entity.squid.squirt", + "english_translation": "Squid shoots ink" + }, + { + "key": "gui.abuseReport.reason.alcohol_tobacco_drugs", + "english_translation": "Drugs or alcohol" + }, + { + "key": "mco.create.world.skip", + "english_translation": "Skip" + }, + { + "key": "debug.pause_focus.help", + "english_translation": "F3 + P = Pause on lost focus" + }, + { + "key": "options.chat.opacity", + "english_translation": "Chat Text Opacity" + }, + { + "key": "subtitles.block.blastfurnace.fire_crackle", + "english_translation": "Blast Furnace crackles" + }, + { + "key": "createWorld.customize.custom.size", + "english_translation": "Spawn Size" + }, + { + "key": "block.minecraft.purpur_slab", + "english_translation": "Purpur Slab" + }, + { + "key": "item.minecraft.lingering_potion.effect.turtle_master", + "english_translation": "Lingering Potion of the Turtle Master" + }, + { + "key": "mco.selectServer.close", + "english_translation": "Close" + }, + { + "key": "block.minecraft.banner.triangle_bottom.purple", + "english_translation": "Purple Chevron" + }, + { + "key": "block.minecraft.spruce_sign", + "english_translation": "Spruce Sign" + }, + { + "key": "item.minecraft.light_blue_dye", + "english_translation": "Light Blue Dye" + }, + { + "key": "stat.minecraft.fall_one_cm", + "english_translation": "Distance Fallen" + }, + { + "key": "block.minecraft.dragon_egg", + "english_translation": "Dragon Egg" + }, + { + "key": "block.minecraft.banner.bricks.yellow", + "english_translation": "Yellow Field Masoned" + }, + { + "key": "block.minecraft.banner.gradient_up.pink", + "english_translation": "Pink Base Gradient" + }, + { + "key": "block.minecraft.banner.square_bottom_left.cyan", + "english_translation": "Cyan Base Dexter Canton" + }, + { + "key": "block.minecraft.sculk_catalyst", + "english_translation": "Sculk Catalyst" + }, + { + "key": "block.minecraft.red_wool", + "english_translation": "Red Wool" + }, + { + "key": "item.minecraft.wheat_seeds", + "english_translation": "Wheat Seeds" + }, + { + "key": "options.audioDevice.default", + "english_translation": "System Default" + }, + { + "key": "commands.bossbar.set.max.success", + "english_translation": "Custom bossbar %s has changed maximum to %s" + }, + { + "key": "block.minecraft.polished_diorite", + "english_translation": "Polished Diorite" + }, + { + "key": "parsing.int.expected", + "english_translation": "Expected integer" + }, + { + "key": "item.minecraft.hoglin_spawn_egg", + "english_translation": "Hoglin Spawn Egg" + }, + { + "key": "mco.upload.verifying", + "english_translation": "Verifying your world" + }, + { + "key": "commands.experience.query.points", + "english_translation": "%s has %s experience points" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.blue", + "english_translation": "Blue Per Fess Inverted" + }, + { + "key": "block.minecraft.lava_cauldron", + "english_translation": "Lava Cauldron" + }, + { + "key": "options.directionalAudio", + "english_translation": "Directional Audio" + }, + { + "key": "block.minecraft.dead_horn_coral", + "english_translation": "Dead Horn Coral" + }, + { + "key": "item.minecraft.suspicious_stew", + "english_translation": "Suspicious Stew" + }, + { + "key": "subtitles.block.bell.use", + "english_translation": "Bell rings" + }, + { + "key": "block.minecraft.stone_button", + "english_translation": "Stone Button" + }, + { + "key": "advancements.husbandry.leash_all_frog_variants.title", + "english_translation": "When the Squad Hops into Town" + }, + { + "key": "selectWorld.gameMode.creative.info", + "english_translation": "Create, build, and explore without limits. You can fly, have endless materials, and can't be hurt by monsters." + }, + { + "key": "stat.minecraft.inspect_dropper", + "english_translation": "Droppers Searched" + }, + { + "key": "subtitles.entity.zoglin.step", + "english_translation": "Zoglin steps" + }, + { + "key": "block.minecraft.pink_stained_glass", + "english_translation": "Pink Stained Glass" + }, + { + "key": "death.attack.sting.player", + "english_translation": "%1$s was stung to death by %2$s" + }, + { + "key": "item.minecraft.shears", + "english_translation": "Shears" + }, + { + "key": "biome.minecraft.taiga", + "english_translation": "Taiga" + }, + { + "key": "block.minecraft.banner.triangles_bottom.light_blue", + "english_translation": "Light Blue Base Indented" + }, + { + "key": "item.minecraft.potion.effect.water_breathing", + "english_translation": "Potion of Water Breathing" + }, + { + "key": "death.attack.fallingStalactite.player", + "english_translation": "%1$s was skewered by a falling stalactite whilst fighting %2$s" + }, + { + "key": "block.minecraft.banner.stripe_middle.yellow", + "english_translation": "Yellow Fess" + }, + { + "key": "multiplayer.disconnect.banned.expiration", + "english_translation": "\nYour ban will be removed on %s" + }, + { + "key": "subtitles.entity.sniffer.egg_crack", + "english_translation": "Sniffer Egg cracks" + }, + { + "key": "trim_pattern.minecraft.vex", + "english_translation": "Vex Armor Trim" + }, + { + "key": "effect.minecraft.regeneration", + "english_translation": "Regeneration" + }, + { + "key": "mco.configure.world.commandBlocks", + "english_translation": "Command blocks" + }, + { + "key": "subtitles.entity.horse.breathe", + "english_translation": "Horse breathes" + }, + { + "key": "block.minecraft.red_candle", + "english_translation": "Red Candle" + }, + { + "key": "commands.scoreboard.players.list.entity.success", + "english_translation": "%s has %s score(s):" + }, + { + "key": "block.minecraft.blue_concrete_powder", + "english_translation": "Blue Concrete Powder" + }, + { + "key": "mco.configure.world.subscription.month", + "english_translation": "month" + }, + { + "key": "multiplayer.player.left", + "english_translation": "%s left the game" + }, + { + "key": "createWorld.customize.custom.useMonuments", + "english_translation": "Ocean Monuments" + }, + { + "key": "mco.configure.world.subscription.title", + "english_translation": "Your subscription" + }, + { + "key": "block.minecraft.banner.square_top_left.light_blue", + "english_translation": "Light Blue Chief Dexter Canton" + }, + { + "key": "commands.team.option.friendlyfire.disabled", + "english_translation": "Disabled friendly fire for team %s" + }, + { + "key": "block.minecraft.crimson_door", + "english_translation": "Crimson Door" + }, + { + "key": "block.minecraft.granite_stairs", + "english_translation": "Granite Stairs" + }, + { + "key": "block.minecraft.banner.globe.purple", + "english_translation": "Purple Globe" + }, + { + "key": "subtitles.entity.phantom.ambient", + "english_translation": "Phantom screeches" + }, + { + "key": "block.minecraft.bed.too_far_away", + "english_translation": "You may not rest now; the bed is too far away" + }, + { + "key": "trim_pattern.minecraft.ward", + "english_translation": "Ward Armor Trim" + }, + { + "key": "gui.chatSelection.join", + "english_translation": "%s joined the chat" + }, + { + "key": "block.minecraft.banner.stripe_right.gray", + "english_translation": "Gray Pale Sinister" + }, + { + "key": "commands.place.template.success", + "english_translation": "Loaded template \"%s\" at %s, %s, %s" + }, + { + "key": "block.minecraft.banner.piglin.purple", + "english_translation": "Purple Snout" + }, + { + "key": "gui.narrate.button", + "english_translation": "%s button" + }, + { + "key": "block.minecraft.banner.diagonal_left.light_blue", + "english_translation": "Light Blue Per Bend Sinister" + }, + { + "key": "options.notifications.display_time.tooltip", + "english_translation": "Affects the length of time that all notifications stay visible on the screen." + }, + { + "key": "block.minecraft.bamboo_sapling", + "english_translation": "Bamboo Shoot" + }, + { + "key": "advancements.nether.get_wither_skull.title", + "english_translation": "Spooky Scary Skeleton" + }, + { + "key": "block.minecraft.birch_pressure_plate", + "english_translation": "Birch Pressure Plate" + }, + { + "key": "mco.download.failed", + "english_translation": "Download failed" + }, + { + "key": "mco.reset.world.generate", + "english_translation": "New world" + }, + { + "key": "selectWorld.gameMode.creative", + "english_translation": "Creative" + }, + { + "key": "advancements.husbandry.tactical_fishing.description", + "english_translation": "Catch a Fish... without a Fishing Rod!" + }, + { + "key": "block.minecraft.banner.straight_cross.gray", + "english_translation": "Gray Cross" + }, + { + "key": "color.minecraft.orange", + "english_translation": "Orange" + }, + { + "key": "commands.op.success", + "english_translation": "Made %s a server operator" + }, + { + "key": "gui.chatSelection.title", + "english_translation": "Select Chat Messages to Report" + }, + { + "key": "block.minecraft.banner.half_vertical.red", + "english_translation": "Red Per Pale" + }, + { + "key": "parsing.float.invalid", + "english_translation": "Invalid float '%s'" + }, + { + "key": "advMode.allPlayers", + "english_translation": "Use \"@a\" to target all players" + }, + { + "key": "block.minecraft.banner.stripe_right.orange", + "english_translation": "Orange Pale Sinister" + }, + { + "key": "block.minecraft.cherry_sapling", + "english_translation": "Cherry Sapling" + }, + { + "key": "subtitles.entity.ender_dragon.ambient", + "english_translation": "Dragon roars" + }, + { + "key": "block.minecraft.glowstone", + "english_translation": "Glowstone" + }, + { + "key": "mco.download.confirmation.line1", + "english_translation": "The world you are going to download is larger than %s" + }, + { + "key": "mco.download.confirmation.line2", + "english_translation": "You won't be able to upload this world to your realm again" + }, + { + "key": "block.minecraft.potted_cornflower", + "english_translation": "Potted Cornflower" + }, + { + "key": "subtitles.item.axe.wax_off", + "english_translation": "Wax off" + }, + { + "key": "multiplayer.lan.server_found", + "english_translation": "New server found: %s" + }, + { + "key": "subtitles.entity.spider.hurt", + "english_translation": "Spider hurts" + }, + { + "key": "entity.minecraft.marker", + "english_translation": "Marker" + }, + { + "key": "subtitles.entity.piglin_brute.death", + "english_translation": "Piglin Brute dies" + }, + { + "key": "advancements.nether.use_lodestone.title", + "english_translation": "Country Lode, Take Me Home" + }, + { + "key": "block.minecraft.oxeye_daisy", + "english_translation": "Oxeye Daisy" + }, + { + "key": "subtitles.entity.player.attack.strong", + "english_translation": "Strong attack" + }, + { + "key": "subtitles.entity.witch.ambient", + "english_translation": "Witch giggles" + }, + { + "key": "subtitles.block.pointed_dripstone.drip_lava_into_cauldron", + "english_translation": "Lava drips into Cauldron" + }, + { + "key": "block.minecraft.granite", + "english_translation": "Granite" + }, + { + "key": "book.invalid.tag", + "english_translation": "* Invalid book tag *" + }, + { + "key": "block.minecraft.sculk_shrieker", + "english_translation": "Sculk Shrieker" + }, + { + "key": "commands.deop.failed", + "english_translation": "Nothing changed. The player is not an operator" + }, + { + "key": "block.minecraft.banner.circle.gray", + "english_translation": "Gray Roundel" + }, + { + "key": "block.minecraft.banner.diagonal_up_left.gray", + "english_translation": "Gray Per Bend Inverted" + }, + { + "key": "argument.block.property.unknown", + "english_translation": "Block %s does not have property '%s'" + }, + { + "key": "key.keyboard.apostrophe", + "english_translation": "'" + }, + { + "key": "stat.minecraft.deaths", + "english_translation": "Number of Deaths" + }, + { + "key": "block.minecraft.banner.triangle_top.magenta", + "english_translation": "Magenta Inverted Chevron" + }, + { + "key": "narrator.screen.title", + "english_translation": "Title Screen" + }, + { + "key": "item.minecraft.arms_up_pottery_sherd", + "english_translation": "Arms Up Pottery Sherd" + }, + { + "key": "subtitles.entity.lightning_bolt.impact", + "english_translation": "Lightning strikes" + }, + { + "key": "subtitles.entity.sheep.death", + "english_translation": "Sheep dies" + }, + { + "key": "commands.recipe.take.success.multiple", + "english_translation": "Took %s recipes from %s players" + }, + { + "key": "subtitles.ui.stonecutter.take_result", + "english_translation": "Stonecutter used" + }, + { + "key": "block.minecraft.pink_wool", + "english_translation": "Pink Wool" + }, + { + "key": "multiplayer.status.ping.narration", + "english_translation": "Ping %s milliseconds" + }, + { + "key": "tutorial.move.title", + "english_translation": "Move with %s, %s, %s and %s" + }, + { + "key": "block.minecraft.banner.skull.cyan", + "english_translation": "Cyan Skull Charge" + }, + { + "key": "structure_block.hover.corner", + "english_translation": "Corner: %s" + }, + { + "key": "advancements.husbandry.root.title", + "english_translation": "Husbandry" + }, + { + "key": "item.minecraft.plenty_pottery_shard", + "english_translation": "Plenty Pottery Shard" + }, + { + "key": "painting.minecraft.alban.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "block.minecraft.green_stained_glass_pane", + "english_translation": "Green Stained Glass Pane" + }, + { + "key": "item.minecraft.wooden_axe", + "english_translation": "Wooden Axe" + }, + { + "key": "block.minecraft.cobblestone_wall", + "english_translation": "Cobblestone Wall" + }, + { + "key": "optimizeWorld.title", + "english_translation": "Optimizing World '%s'" + }, + { + "key": "subtitles.block.campfire.crackle", + "english_translation": "Campfire crackles" + }, + { + "key": "item.minecraft.cyan_dye", + "english_translation": "Cyan Dye" + }, + { + "key": "commands.gamerule.set", + "english_translation": "Gamerule %s is now set to: %s" + }, + { + "key": "block.minecraft.banner.stripe_bottom.orange", + "english_translation": "Orange Base" + }, + { + "key": "title.singleplayer", + "english_translation": "Singleplayer" + }, + { + "key": "block.minecraft.banner.diagonal_right.black", + "english_translation": "Black Per Bend" + }, + { + "key": "block.minecraft.banner.stripe_downleft.white", + "english_translation": "White Bend Sinister" + }, + { + "key": "subtitles.entity.vex.ambient", + "english_translation": "Vex vexes" + }, + { + "key": "block.minecraft.tall_grass", + "english_translation": "Tall Grass" + }, + { + "key": "commands.advancement.grant.criterion.to.many.success", + "english_translation": "Granted criterion '%s' of advancement %s to %s players" + }, + { + "key": "advancements.adventure.adventuring_time.description", + "english_translation": "Discover every biome" + }, + { + "key": "block.minecraft.potted_dark_oak_sapling", + "english_translation": "Potted Dark Oak Sapling" + }, + { + "key": "entity.minecraft.villager.fisherman", + "english_translation": "Fisherman" + }, + { + "key": "mco.configure.world.buttons.players", + "english_translation": "Players" + }, + { + "key": "mco.brokenworld.message.line2", + "english_translation": "You can also choose to download the world to singleplayer." + }, + { + "key": "mco.brokenworld.message.line1", + "english_translation": "Please reset or select another world." + }, + { + "key": "advancements.adventure.spyglass_at_ghast.title", + "english_translation": "Is It a Balloon?" + }, + { + "key": "item.minecraft.sweet_berries", + "english_translation": "Sweet Berries" + }, + { + "key": "effect.minecraft.water_breathing", + "english_translation": "Water Breathing" + }, + { + "key": "item.minecraft.glowstone_dust", + "english_translation": "Glowstone Dust" + }, + { + "key": "trim_material.minecraft.netherite", + "english_translation": "Netherite Material" + }, + { + "key": "item.minecraft.flint_and_steel", + "english_translation": "Flint and Steel" + }, + { + "key": "item.minecraft.cherry_chest_boat", + "english_translation": "Cherry Boat with Chest" + }, + { + "key": "resourcePack.high_contrast.name", + "english_translation": "High Contrast" + }, + { + "key": "block.minecraft.banner.half_horizontal.cyan", + "english_translation": "Cyan Per Fess" + }, + { + "key": "generator.customized", + "english_translation": "Old Customized" + }, + { + "key": "item.minecraft.firework_star.yellow", + "english_translation": "Yellow" + }, + { + "key": "commands.recipe.give.failed", + "english_translation": "No new recipes were learned" + }, + { + "key": "stat_type.minecraft.used", + "english_translation": "Times Used" + }, + { + "key": "block.minecraft.banner.square_top_left.brown", + "english_translation": "Brown Chief Dexter Canton" + }, + { + "key": "block.minecraft.red_concrete_powder", + "english_translation": "Red Concrete Powder" + }, + { + "key": "item.minecraft.firework_star.blue", + "english_translation": "Blue" + }, + { + "key": "key.attack", + "english_translation": "Attack/Destroy" + }, + { + "key": "block.minecraft.banner.stripe_top.lime", + "english_translation": "Lime Chief" + }, + { + "key": "block.minecraft.banner.skull.light_gray", + "english_translation": "Light Gray Skull Charge" + }, + { + "key": "block.minecraft.spore_blossom", + "english_translation": "Spore Blossom" + }, + { + "key": "entity.minecraft.zombie", + "english_translation": "Zombie" + }, + { + "key": "block.minecraft.birch_hanging_sign", + "english_translation": "Birch Hanging Sign" + }, + { + "key": "controls.keybinds.duplicateKeybinds", + "english_translation": "This key is also used for:\n%s" + }, + { + "key": "block.minecraft.detector_rail", + "english_translation": "Detector Rail" + }, + { + "key": "block.minecraft.damaged_anvil", + "english_translation": "Damaged Anvil" + }, + { + "key": "block.minecraft.green_glazed_terracotta", + "english_translation": "Green Glazed Terracotta" + }, + { + "key": "gui.banned.reason.drugs", + "english_translation": "References to illegal drugs" + }, + { + "key": "item.minecraft.music_disc_ward.desc", + "english_translation": "C418 - ward" + }, + { + "key": "subtitles.entity.mule.angry", + "english_translation": "Mule neighs" + }, + { + "key": "block.minecraft.light_gray_glazed_terracotta", + "english_translation": "Light Gray Glazed Terracotta" + }, + { + "key": "commands.forceload.added.multiple", + "english_translation": "Marked %s chunks in %s from %s to %s to be force loaded" + }, + { + "key": "pack.nameAndSource", + "english_translation": "%s (%s)" + }, + { + "key": "subtitles.entity.ender_dragon.hurt", + "english_translation": "Dragon hurts" + }, + { + "key": "block.minecraft.banner.square_bottom_left.orange", + "english_translation": "Orange Base Dexter Canton" + }, + { + "key": "selectWorld.gameRules", + "english_translation": "Game Rules" + }, + { + "key": "options.fovEffectScale", + "english_translation": "FOV Effects" + }, + { + "key": "options.chat.title", + "english_translation": "Chat Settings..." + }, + { + "key": "subtitles.entity.ender_dragon.shoot", + "english_translation": "Dragon shoots" + }, + { + "key": "death.fell.finish", + "english_translation": "%1$s fell too far and was finished by %2$s" + }, + { + "key": "pack.incompatible.new", + "english_translation": "(Made for a newer version of Minecraft)" + }, + { + "key": "subtitles.entity.zoglin.hurt", + "english_translation": "Zoglin hurts" + }, + { + "key": "block.minecraft.stripped_spruce_log", + "english_translation": "Stripped Spruce Log" + }, + { + "key": "block.minecraft.banner.triangles_top.cyan", + "english_translation": "Cyan Chief Indented" + }, + { + "key": "pack.source.world", + "english_translation": "world" + }, + { + "key": "block.minecraft.lime_concrete", + "english_translation": "Lime Concrete" + }, + { + "key": "subtitles.entity.turtle.lay_egg", + "english_translation": "Turtle lays egg" + }, + { + "key": "biome.minecraft.warm_ocean", + "english_translation": "Warm Ocean" + }, + { + "key": "gamerule.snowAccumulationHeight.description", + "english_translation": "When it snows, layers of snow form on the ground up to at most this number of layers." + }, + { + "key": "subtitles.entity.warden.nearby_closest", + "english_translation": "Warden draws close" + }, + { + "key": "block.minecraft.waxed_weathered_cut_copper", + "english_translation": "Waxed Weathered Cut Copper" + }, + { + "key": "subtitles.chiseled_bookshelf.insert", + "english_translation": "Book placed" + }, + { + "key": "item.minecraft.shield.purple", + "english_translation": "Purple Shield" + }, + { + "key": "block.minecraft.deepslate_iron_ore", + "english_translation": "Deepslate Iron Ore" + }, + { + "key": "death.attack.badRespawnPoint.message", + "english_translation": "%1$s was killed by %2$s" }, { "key": "key.keyboard.keypad.0", @@ -16527,10 +23635,22 @@ "key": "key.keyboard.keypad.1", "english_translation": "Keypad 1" }, + { + "key": "container.upgrade.missing_template_tooltip", + "english_translation": "Add Smithing Template" + }, + { + "key": "block.minecraft.banner.diagonal_right.green", + "english_translation": "Green Per Bend" + }, { "key": "key.keyboard.keypad.2", "english_translation": "Keypad 2" }, + { + "key": "subtitles.entity.donkey.hurt", + "english_translation": "Donkey hurts" + }, { "key": "key.keyboard.keypad.3", "english_translation": "Keypad 3" @@ -16555,1673 +23675,457 @@ "key": "key.keyboard.keypad.8", "english_translation": "Keypad 8" }, + { + "key": "stat.minecraft.target_hit", + "english_translation": "Targets Hit" + }, { "key": "key.keyboard.keypad.9", "english_translation": "Keypad 9" }, { - "key": "key.keyboard.keypad.add", - "english_translation": "Keypad +" + "key": "commands.data.modify.expected_object", + "english_translation": "Expected object, got: %s" }, { - "key": "key.keyboard.keypad.decimal", - "english_translation": "Keypad Decimal" + "key": "stat.minecraft.interact_with_anvil", + "english_translation": "Interactions with Anvil" }, { - "key": "key.keyboard.keypad.divide", - "english_translation": "Keypad /" + "key": "options.graphics.warning.title", + "english_translation": "Graphics Device Unsupported" }, { - "key": "key.keyboard.keypad.enter", - "english_translation": "Keypad Enter" + "key": "block.minecraft.banner.stripe_top.blue", + "english_translation": "Blue Chief" }, { - "key": "key.keyboard.keypad.equal", - "english_translation": "Keypad =" + "key": "argument.entity.options.level.negative", + "english_translation": "Level shouldn't be negative" }, { - "key": "key.keyboard.keypad.multiply", - "english_translation": "Keypad *" + "key": "block.minecraft.spruce_log", + "english_translation": "Spruce Log" }, { - "key": "key.keyboard.keypad.subtract", - "english_translation": "Keypad -" + "key": "item.minecraft.ink_sac", + "english_translation": "Ink Sac" }, { - "key": "key.keyboard.left", - "english_translation": "Left Arrow" + "key": "subtitles.entity.salmon.death", + "english_translation": "Salmon dies" }, { - "key": "key.keyboard.left.alt", - "english_translation": "Left Alt" + "key": "item.minecraft.gold_ingot", + "english_translation": "Gold Ingot" }, { - "key": "key.keyboard.left.bracket", - "english_translation": "[" + "key": "stat.minecraft.tune_noteblock", + "english_translation": "Note Blocks Tuned" }, { - "key": "key.keyboard.left.control", - "english_translation": "Left Control" + "key": "subtitles.entity.wither_skeleton.death", + "english_translation": "Wither Skeleton dies" }, { - "key": "key.keyboard.left.shift", - "english_translation": "Left Shift" + "key": "block.minecraft.respawn_anchor", + "english_translation": "Respawn Anchor" }, { - "key": "key.keyboard.left.win", - "english_translation": "Left Win" + "key": "item.minecraft.piglin_brute_spawn_egg", + "english_translation": "Piglin Brute Spawn Egg" }, { - "key": "key.keyboard.menu", - "english_translation": "Menu" + "key": "commands.title.cleared.single", + "english_translation": "Cleared titles for %s" }, { - "key": "key.keyboard.minus", - "english_translation": "-" + "key": "advancements.nether.ride_strider.title", + "english_translation": "This Boat Has Legs" }, { - "key": "key.keyboard.num.lock", - "english_translation": "Num Lock" + "key": "commands.forceload.list.single", + "english_translation": "A force loaded chunk was found in %s at: %s" }, { - "key": "key.keyboard.page.down", - "english_translation": "Page Down" + "key": "block.minecraft.brain_coral", + "english_translation": "Brain Coral" }, { - "key": "key.keyboard.page.up", - "english_translation": "Page Up" + "key": "argument.nbt.array.invalid", + "english_translation": "Invalid array type '%s'" }, { - "key": "key.keyboard.pause", - "english_translation": "Pause" + "key": "options.graphics.warning.renderer", + "english_translation": "Renderer detected: [%s]" }, { - "key": "key.keyboard.period", - "english_translation": "." + "key": "block.minecraft.banner.half_horizontal.magenta", + "english_translation": "Magenta Per Fess" }, { - "key": "key.keyboard.print.screen", - "english_translation": "Print Screen" + "key": "item.minecraft.cooked_mutton", + "english_translation": "Cooked Mutton" }, { - "key": "key.keyboard.right", - "english_translation": "Right Arrow" + "key": "selectWorld.world", + "english_translation": "World" }, { - "key": "key.keyboard.right.alt", - "english_translation": "Right Alt" + "key": "block.minecraft.banner.square_bottom_left.brown", + "english_translation": "Brown Base Dexter Canton" }, { - "key": "key.keyboard.right.bracket", - "english_translation": "]" + "key": "gui.acknowledge", + "english_translation": "Acknowledge" }, { - "key": "key.keyboard.right.control", - "english_translation": "Right Control" + "key": "block.minecraft.banner.rhombus.magenta", + "english_translation": "Magenta Lozenge" }, { - "key": "key.keyboard.right.shift", - "english_translation": "Right Shift" + "key": "block.minecraft.banner.stripe_middle.pink", + "english_translation": "Pink Fess" }, { - "key": "key.keyboard.right.win", - "english_translation": "Right Win" + "key": "createWorld.customize.custom.count", + "english_translation": "Spawn Tries" }, { - "key": "key.keyboard.scroll.lock", - "english_translation": "Scroll Lock" + "key": "subtitles.entity.parrot.imitate.endermite", + "english_translation": "Parrot scuttles" }, { - "key": "key.keyboard.semicolon", - "english_translation": ";" + "key": "block.minecraft.banner.stripe_center.lime", + "english_translation": "Lime Pale" }, { - "key": "key.keyboard.slash", - "english_translation": "/" + "key": "block.minecraft.dead_bubble_coral_fan", + "english_translation": "Dead Bubble Coral Fan" }, { - "key": "key.keyboard.space", - "english_translation": "Space" + "key": "selectWorld.edit.backupFolder", + "english_translation": "Open Backups Folder" }, { - "key": "key.keyboard.tab", - "english_translation": "Tab" + "key": "subtitles.item.trident.throw", + "english_translation": "Trident clangs" }, { - "key": "key.keyboard.unknown", - "english_translation": "Not bound" + "key": "death.attack.fireworks.player", + "english_translation": "%1$s went off with a bang whilst fighting %2$s" }, { - "key": "key.keyboard.up", - "english_translation": "Up Arrow" + "key": "subtitles.entity.parrot.imitate.pillager", + "english_translation": "Parrot murmurs" }, { - "key": "key.keyboard.world.1", - "english_translation": "World 1" + "key": "gui.abuseReport.send.json_error", + "english_translation": "Encountered malformed payload while sending your report." }, { - "key": "key.keyboard.world.2", - "english_translation": "World 2" + "key": "item.minecraft.shelter_pottery_shard", + "english_translation": "Shelter Pottery Shard" }, { - "key": "key.left", - "english_translation": "Strafe Left" + "key": "block.minecraft.beacon.secondary", + "english_translation": "Secondary Power" }, { - "key": "key.loadToolbarActivator", - "english_translation": "Load Hotbar Activator" + "key": "block.minecraft.water_cauldron", + "english_translation": "Water Cauldron" }, { - "key": "key.mouse", - "english_translation": "Button %1$s" + "key": "item.minecraft.splash_potion.effect.strength", + "english_translation": "Splash Potion of Strength" }, { - "key": "key.mouse.left", - "english_translation": "Left Button" + "key": "effect.minecraft.night_vision", + "english_translation": "Night Vision" }, { - "key": "key.mouse.middle", - "english_translation": "Middle Button" + "key": "subtitles.entity.fox.death", + "english_translation": "Fox dies" }, { - "key": "key.mouse.right", - "english_translation": "Right Button" + "key": "container.enderchest", + "english_translation": "Ender Chest" }, { - "key": "key.pickItem", - "english_translation": "Pick Block" + "key": "item.minecraft.purple_dye", + "english_translation": "Purple Dye" }, { - "key": "key.playerlist", - "english_translation": "List Players" + "key": "biome.minecraft.birch_forest", + "english_translation": "Birch Forest" }, { - "key": "key.right", - "english_translation": "Strafe Right" + "key": "block.minecraft.banner.gradient.white", + "english_translation": "White Gradient" }, { - "key": "key.saveToolbarActivator", - "english_translation": "Save Hotbar Activator" + "key": "item.minecraft.pitcher_plant", + "english_translation": "Pitcher Plant" }, { - "key": "key.screenshot", - "english_translation": "Take Screenshot" + "key": "fabric-registry-sync-v0.unknown-remote.title.plural", + "english_translation": "Received %s registry entries that are unknown to this client.\n" }, { - "key": "key.smoothCamera", - "english_translation": "Toggle Cinematic Camera" + "key": "subtitles.block.grindstone.use", + "english_translation": "Grindstone used" }, { - "key": "key.sneak", - "english_translation": "Sneak" + "key": "biome.minecraft.forest", + "english_translation": "Forest" }, { - "key": "key.socialInteractions", - "english_translation": "Social Interactions Screen" + "key": "gui.abuseReport.reason.self_harm_or_suicide.description", + "english_translation": "Someone is threatening to harm themselves in real life or talking about harming themselves in real life." }, { - "key": "key.spectatorOutlines", - "english_translation": "Highlight Players (Spectators)" + "key": "commands.scoreboard.objectives.modify.displayname", + "english_translation": "Changed the display name of %s to %s" }, { - "key": "key.sprint", - "english_translation": "Sprint" + "key": "block.minecraft.water", + "english_translation": "Water" }, { - "key": "key.swapOffhand", - "english_translation": "Swap Item With Offhand" + "key": "subtitles.entity.boat.paddle_water", + "english_translation": "Rowing" }, { - "key": "key.togglePerspective", - "english_translation": "Toggle Perspective" + "key": "gui.banned.reason.harassment_or_bullying", + "english_translation": "Abusive language used in a directed, harmful manner" }, { - "key": "key.use", - "english_translation": "Use Item/Place Block" + "key": "selectWorld.deleteWarning", + "english_translation": "'%s' will be lost forever! (A long time!)" }, { - "key": "language.code", - "english_translation": "en_us" + "key": "block.minecraft.green_carpet", + "english_translation": "Green Carpet" }, { - "key": "language.name", - "english_translation": "English" + "key": "team.collision.always", + "english_translation": "Always" }, { - "key": "language.region", - "english_translation": "United States" - }, - { - "key": "lanServer.otherPlayers", - "english_translation": "Settings for Other Players" - }, - { - "key": "lanServer.port", - "english_translation": "Port Number" - }, - { - "key": "lanServer.port.invalid", - "english_translation": "Not a valid port.\nLeave the edit box empty or enter a number between 1024 and 65535." - }, - { - "key": "lanServer.port.invalid.new", - "english_translation": "Not a valid port.\nLeave the edit box empty or enter a number between %s and %s." - }, - { - "key": "lanServer.port.unavailable", - "english_translation": "Port not available.\nLeave the edit box empty or enter a different number between 1024 and 65535." - }, - { - "key": "lanServer.port.unavailable.new", - "english_translation": "Port not available.\nLeave the edit box empty or enter a different number between %s and %s." - }, - { - "key": "lanServer.scanning", - "english_translation": "Scanning for games on your local network" - }, - { - "key": "lanServer.start", - "english_translation": "Start LAN World" - }, - { - "key": "lanServer.title", - "english_translation": "LAN World" - }, - { - "key": "lectern.take_book", - "english_translation": "Take Book" - }, - { - "key": "mco.account.privacy.info", - "english_translation": "Read more about Mojang and privacy laws" - }, - { - "key": "mco.account.privacyinfo", - "english_translation": "Mojang implements certain procedures to help protect children and their privacy including complying with the Children’s Online Privacy Protection Act (COPPA) and General Data Protection Regulation (GDPR).\n\nYou may need to obtain parental consent before accessing your Realms account.\n\nIf you have an older Minecraft account (you log in with your username), you need to migrate the account to a Mojang account in order to access Realms." - }, - { - "key": "mco.account.update", - "english_translation": "Update account" - }, - { - "key": "mco.activity.noactivity", - "english_translation": "No activity for the past %s day(s)" - }, - { - "key": "mco.activity.title", - "english_translation": "Player activity" - }, - { - "key": "mco.backup.button.download", - "english_translation": "Download latest" - }, - { - "key": "mco.backup.button.reset", - "english_translation": "Reset world" - }, - { - "key": "mco.backup.button.restore", - "english_translation": "Restore" - }, - { - "key": "mco.backup.button.upload", - "english_translation": "Upload world" - }, - { - "key": "mco.backup.changes.tooltip", - "english_translation": "Changes" - }, - { - "key": "mco.backup.generate.world", - "english_translation": "Generate world" - }, - { - "key": "mco.backup.nobackups", - "english_translation": "This realm doesn't have any backups currently." - }, - { - "key": "mco.backup.restoring", - "english_translation": "Restoring your realm" - }, - { - "key": "mco.brokenworld.download", - "english_translation": "Download" - }, - { - "key": "mco.brokenworld.downloaded", - "english_translation": "Downloaded" - }, - { - "key": "mco.brokenworld.message.line1", - "english_translation": "Please reset or select another world." - }, - { - "key": "mco.brokenworld.message.line2", - "english_translation": "You can also choose to download the world to singleplayer." - }, - { - "key": "mco.brokenworld.minigame.title", - "english_translation": "This minigame is no longer supported" - }, - { - "key": "mco.brokenworld.nonowner.error", - "english_translation": "Please wait for the realm owner to reset the world" - }, - { - "key": "mco.brokenworld.nonowner.title", - "english_translation": "World is out of date" - }, - { - "key": "mco.brokenworld.play", - "english_translation": "Play" - }, - { - "key": "mco.brokenworld.reset", - "english_translation": "Reset" - }, - { - "key": "mco.brokenworld.title", - "english_translation": "Your current world is no longer supported" - }, - { - "key": "mco.client.incompatible.msg.line1", - "english_translation": "Your client is not compatible with Realms." - }, - { - "key": "mco.client.incompatible.msg.line2", - "english_translation": "Please use the most recent version of Minecraft." - }, - { - "key": "mco.client.incompatible.msg.line3", - "english_translation": "Realms is not compatible with snapshot versions." - }, - { - "key": "mco.client.incompatible.title", - "english_translation": "Client incompatible!" - }, - { - "key": "mco.configure.current.minigame", - "english_translation": "Current" - }, - { - "key": "mco.configure.world.activityfeed.disabled", - "english_translation": "Player feed temporarily disabled" - }, - { - "key": "mco.configure.world.backup", - "english_translation": "World backups" - }, - { - "key": "mco.configure.world.buttons.activity", - "english_translation": "Player activity" - }, - { - "key": "mco.configure.world.buttons.close", - "english_translation": "Close realm" - }, - { - "key": "mco.configure.world.buttons.delete", - "english_translation": "Delete" - }, - { - "key": "mco.configure.world.buttons.done", - "english_translation": "Done" - }, - { - "key": "mco.configure.world.buttons.edit", - "english_translation": "Settings" - }, - { - "key": "mco.configure.world.buttons.invite", - "english_translation": "Invite player" - }, - { - "key": "mco.configure.world.buttons.moreoptions", - "english_translation": "More options" - }, - { - "key": "mco.configure.world.buttons.open", - "english_translation": "Open realm" - }, - { - "key": "mco.configure.world.buttons.options", - "english_translation": "World options" - }, - { - "key": "mco.configure.world.buttons.players", - "english_translation": "Players" - }, - { - "key": "mco.configure.world.buttons.resetworld", - "english_translation": "Reset world" - }, - { - "key": "mco.configure.world.buttons.settings", - "english_translation": "Settings" - }, - { - "key": "mco.configure.world.buttons.subscription", - "english_translation": "Subscription" - }, - { - "key": "mco.configure.world.buttons.switchminigame", - "english_translation": "Switch minigame" - }, - { - "key": "mco.configure.world.close.question.line1", - "english_translation": "Your realm will become unavailable." - }, - { - "key": "mco.configure.world.close.question.line2", - "english_translation": "Are you sure you want to continue?" - }, - { - "key": "mco.configure.world.closing", - "english_translation": "Closing the realm..." - }, - { - "key": "mco.configure.world.commandBlocks", - "english_translation": "Command blocks" + "key": "subtitles.entity.guardian.ambient_land", + "english_translation": "Guardian flaps" }, { "key": "mco.configure.world.delete.button", "english_translation": "Delete realm" }, { - "key": "mco.configure.world.delete.question.line1", - "english_translation": "Your realm will be permanently deleted" + "key": "telemetry.property.launcher_name.title", + "english_translation": "Launcher Name" }, { - "key": "mco.configure.world.delete.question.line2", - "english_translation": "Are you sure you want to continue?" + "key": "gamerule.sendCommandFeedback", + "english_translation": "Send command feedback" }, { - "key": "mco.configure.world.description", - "english_translation": "Realm description" + "key": "block.minecraft.banner.triangle_top.purple", + "english_translation": "Purple Inverted Chevron" }, { - "key": "mco.configure.world.edit.slot.name", - "english_translation": "World name" + "key": "item.minecraft.lingering_potion.effect.slowness", + "english_translation": "Lingering Potion of Slowness" }, { - "key": "mco.configure.world.edit.subscreen.adventuremap", - "english_translation": "Some settings are disabled since your current world is an adventure" - }, - { - "key": "mco.configure.world.edit.subscreen.experience", - "english_translation": "Some settings are disabled since your current world is an experience" - }, - { - "key": "mco.configure.world.edit.subscreen.inspiration", - "english_translation": "Some settings are disabled since your current world is an inspiration" - }, - { - "key": "mco.configure.world.forceGameMode", - "english_translation": "Force game mode" - }, - { - "key": "mco.configure.world.invite.narration", - "english_translation": "You have %s new invite(s)" - }, - { - "key": "mco.configure.world.invite.profile.name", - "english_translation": "Name" - }, - { - "key": "mco.configure.world.invited", - "english_translation": "Invited" - }, - { - "key": "mco.configure.world.invites.normal.tooltip", - "english_translation": "Normal user" - }, - { - "key": "mco.configure.world.invites.ops.tooltip", - "english_translation": "Operator" - }, - { - "key": "mco.configure.world.invites.remove.tooltip", - "english_translation": "Remove" - }, - { - "key": "mco.configure.world.leave.question.line1", - "english_translation": "If you leave this realm you won't see it unless you are invited again" - }, - { - "key": "mco.configure.world.leave.question.line2", - "english_translation": "Are you sure you want to continue?" - }, - { - "key": "mco.configure.world.location", - "english_translation": "Location" - }, - { - "key": "mco.configure.world.name", - "english_translation": "Realm name" - }, - { - "key": "mco.configure.world.opening", - "english_translation": "Opening the realm..." - }, - { - "key": "mco.configure.world.players.error", - "english_translation": "A player with the provided name does not exist" - }, - { - "key": "mco.configure.world.players.title", - "english_translation": "Players" - }, - { - "key": "mco.configure.world.pvp", - "english_translation": "PVP" - }, - { - "key": "mco.configure.world.reset.question.line1", - "english_translation": "Your world will be regenerated and your current world will be lost" - }, - { - "key": "mco.configure.world.reset.question.line2", - "english_translation": "Are you sure you want to continue?" - }, - { - "key": "mco.configure.world.resourcepack.question.line1", - "english_translation": "You need a custom resource pack to play on this realm" - }, - { - "key": "mco.configure.world.resourcepack.question.line2", - "english_translation": "Do you want to download it and play?" - }, - { - "key": "mco.configure.world.restore.download.question.line1", - "english_translation": "The world will be downloaded and added to your single player worlds." - }, - { - "key": "mco.configure.world.restore.download.question.line2", - "english_translation": "Do you want to continue?" - }, - { - "key": "mco.configure.world.restore.question.line1", - "english_translation": "Your world will be restored to date '%s' (%s)" - }, - { - "key": "mco.configure.world.restore.question.line2", - "english_translation": "Are you sure you want to continue?" - }, - { - "key": "mco.configure.world.settings.title", - "english_translation": "Settings" - }, - { - "key": "mco.configure.world.slot", - "english_translation": "World %s" - }, - { - "key": "mco.configure.world.slot.empty", - "english_translation": "Empty" - }, - { - "key": "mco.configure.world.slot.switch.question.line1", - "english_translation": "Your realm will be switched to another world" - }, - { - "key": "mco.configure.world.slot.switch.question.line2", - "english_translation": "Are you sure you want to continue?" - }, - { - "key": "mco.configure.world.slot.tooltip", - "english_translation": "Switch to world" - }, - { - "key": "mco.configure.world.slot.tooltip.active", - "english_translation": "Join" - }, - { - "key": "mco.configure.world.slot.tooltip.minigame", - "english_translation": "Switch to minigame" - }, - { - "key": "mco.configure.world.spawn_toggle.message", - "english_translation": "Turning this option off will REMOVE ALL existing entities of that type" - }, - { - "key": "mco.configure.world.spawn_toggle.message.npc", - "english_translation": "Turning this option off will REMOVE ALL existing entities of that type, like Villagers" - }, - { - "key": "mco.configure.world.spawn_toggle.title", - "english_translation": "Warning!" - }, - { - "key": "mco.configure.world.spawnAnimals", - "english_translation": "Spawn animals" - }, - { - "key": "mco.configure.world.spawnMonsters", - "english_translation": "Spawn monsters" - }, - { - "key": "mco.configure.world.spawnNPCs", - "english_translation": "Spawn NPCs" - }, - { - "key": "mco.configure.world.spawnProtection", - "english_translation": "Spawn protection" - }, - { - "key": "mco.configure.world.status", - "english_translation": "Status" - }, - { - "key": "mco.configure.world.subscription.day", - "english_translation": "day" - }, - { - "key": "mco.configure.world.subscription.days", - "english_translation": "days" - }, - { - "key": "mco.configure.world.subscription.expired", - "english_translation": "Expired" - }, - { - "key": "mco.configure.world.subscription.extend", - "english_translation": "Extend subscription" - }, - { - "key": "mco.configure.world.subscription.less_than_a_day", - "english_translation": "Less than a day" - }, - { - "key": "mco.configure.world.subscription.month", - "english_translation": "month" - }, - { - "key": "mco.configure.world.subscription.months", - "english_translation": "months" - }, - { - "key": "mco.configure.world.subscription.recurring.daysleft", - "english_translation": "Renewed automatically in" - }, - { - "key": "mco.configure.world.subscription.recurring.info", - "english_translation": "Changes made to your Realms subscription such as stacking time or turning off recurring billing will not be reflected until your next bill date." - }, - { - "key": "mco.configure.world.subscription.start", - "english_translation": "Start date" - }, - { - "key": "mco.configure.world.subscription.timeleft", - "english_translation": "Time left" - }, - { - "key": "mco.configure.world.subscription.title", - "english_translation": "Your subscription" - }, - { - "key": "mco.configure.world.subscription.unknown", - "english_translation": "Unknown" - }, - { - "key": "mco.configure.world.switch.slot", - "english_translation": "Create world" - }, - { - "key": "mco.configure.world.switch.slot.subtitle", - "english_translation": "This world is empty, choose how to create your world" - }, - { - "key": "mco.configure.world.title", - "english_translation": "Configure realm:" - }, - { - "key": "mco.configure.world.uninvite.question", - "english_translation": "Are you sure that you want to uninvite" - }, - { - "key": "mco.configure.worlds.title", - "english_translation": "Worlds" - }, - { - "key": "mco.connect.authorizing", - "english_translation": "Logging in..." - }, - { - "key": "mco.connect.connecting", - "english_translation": "Connecting to the realm..." - }, - { - "key": "mco.connect.failed", - "english_translation": "Failed to connect to the realm" - }, - { - "key": "mco.connect.success", - "english_translation": "Done" - }, - { - "key": "mco.create.world", - "english_translation": "Create" - }, - { - "key": "mco.create.world.error", - "english_translation": "You must enter a name!" - }, - { - "key": "mco.create.world.reset.title", - "english_translation": "Creating world..." - }, - { - "key": "mco.create.world.skip", - "english_translation": "Skip" - }, - { - "key": "mco.create.world.subtitle", - "english_translation": "Optionally, select what world to put on your new realm" - }, - { - "key": "mco.create.world.wait", - "english_translation": "Creating the realm..." - }, - { - "key": "mco.download.cancelled", - "english_translation": "Download cancelled" - }, - { - "key": "mco.download.confirmation.line1", - "english_translation": "The world you are going to download is larger than %s" - }, - { - "key": "mco.download.confirmation.line2", - "english_translation": "You won't be able to upload this world to your realm again" - }, - { - "key": "mco.download.done", - "english_translation": "Download done" - }, - { - "key": "mco.download.downloading", - "english_translation": "Downloading" - }, - { - "key": "mco.download.extracting", - "english_translation": "Extracting" - }, - { - "key": "mco.download.failed", - "english_translation": "Download failed" - }, - { - "key": "mco.download.preparing", - "english_translation": "Preparing download" - }, - { - "key": "mco.download.title", - "english_translation": "Downloading latest world" - }, - { - "key": "mco.error.invalid.session.message", - "english_translation": "Please try restarting Minecraft" - }, - { - "key": "mco.error.invalid.session.title", - "english_translation": "Invalid session" - }, - { - "key": "mco.errorMessage.6001", - "english_translation": "Client outdated" - }, - { - "key": "mco.errorMessage.6002", - "english_translation": "Terms of service not accepted" - }, - { - "key": "mco.errorMessage.6003", - "english_translation": "Download limit reached" - }, - { - "key": "mco.errorMessage.6004", - "english_translation": "Upload limit reached" - }, - { - "key": "mco.errorMessage.connectionFailure", - "english_translation": "An error occurred, please try again later." - }, - { - "key": "mco.errorMessage.serviceBusy", - "english_translation": "Realms is busy at the moment.\nPlease try connecting to your Realm again in a couple of minutes." - }, - { - "key": "mco.gui.button", - "english_translation": "Button" - }, - { - "key": "mco.gui.ok", - "english_translation": "Ok" - }, - { - "key": "mco.invites.button.accept", - "english_translation": "Accept" - }, - { - "key": "mco.invites.button.reject", - "english_translation": "Reject" - }, - { - "key": "mco.invites.nopending", - "english_translation": "No pending invites!" - }, - { - "key": "mco.invites.pending", - "english_translation": "New invite(s)!" - }, - { - "key": "mco.invites.title", - "english_translation": "Pending Invites" - }, - { - "key": "mco.minigame.world.changeButton", - "english_translation": "Select another minigame" - }, - { - "key": "mco.minigame.world.info.line1", - "english_translation": "This will temporarily replace your world with a minigame!" - }, - { - "key": "mco.minigame.world.info.line2", - "english_translation": "You can later return to your original world without losing anything." - }, - { - "key": "mco.minigame.world.noSelection", - "english_translation": "Please make a selection" - }, - { - "key": "mco.minigame.world.restore", - "english_translation": "Ending minigame..." - }, - { - "key": "mco.minigame.world.restore.question.line1", - "english_translation": "The minigame will end and your realm will be restored." - }, - { - "key": "mco.minigame.world.restore.question.line2", - "english_translation": "Are you sure you want to continue?" - }, - { - "key": "mco.minigame.world.selected", - "english_translation": "Selected minigame:" - }, - { - "key": "mco.minigame.world.slot.screen.title", - "english_translation": "Switching world..." - }, - { - "key": "mco.minigame.world.startButton", - "english_translation": "Switch" - }, - { - "key": "mco.minigame.world.starting.screen.title", - "english_translation": "Starting minigame..." - }, - { - "key": "mco.minigame.world.stopButton", - "english_translation": "End minigame" - }, - { - "key": "mco.minigame.world.switch.new", - "english_translation": "Select another minigame?" - }, - { - "key": "mco.minigame.world.switch.title", - "english_translation": "Switch minigame" - }, - { - "key": "mco.minigame.world.title", - "english_translation": "Switch realm to minigame" - }, - { - "key": "mco.news", - "english_translation": "Realms news" - }, - { - "key": "mco.notification.dismiss", - "english_translation": "Dismiss" - }, - { - "key": "mco.notification.visitUrl.message.default", - "english_translation": "Please visit the link below" - }, - { - "key": "mco.notification.visitUrl.buttonText.default", - "english_translation": "Open link" - }, - { - "key": "mco.reset.world.adventure", - "english_translation": "Adventures" - }, - { - "key": "mco.reset.world.experience", - "english_translation": "Experiences" - }, - { - "key": "mco.reset.world.generate", - "english_translation": "New world" - }, - { - "key": "mco.reset.world.inspiration", - "english_translation": "Inspiration" - }, - { - "key": "mco.reset.world.resetting.screen.title", - "english_translation": "Resetting world..." - }, - { - "key": "mco.reset.world.seed", - "english_translation": "Seed (Optional)" - }, - { - "key": "mco.reset.world.template", - "english_translation": "World templates" - }, - { - "key": "mco.reset.world.title", - "english_translation": "Reset world" - }, - { - "key": "mco.reset.world.upload", - "english_translation": "Upload world" - }, - { - "key": "mco.reset.world.warning", - "english_translation": "This will replace the current world of your realm" - }, - { - "key": "mco.selectServer.buy", - "english_translation": "Buy a realm!" - }, - { - "key": "mco.selectServer.close", - "english_translation": "Close" - }, - { - "key": "mco.selectServer.closed", - "english_translation": "Closed realm" - }, - { - "key": "mco.selectServer.closeserver", - "english_translation": "Close realm" - }, - { - "key": "mco.selectServer.configure", - "english_translation": "Configure" - }, - { - "key": "mco.selectServer.configureRealm", - "english_translation": "Configure realm" - }, - { - "key": "mco.selectServer.create", - "english_translation": "Create realm" - }, - { - "key": "mco.selectServer.expired", - "english_translation": "Expired realm" - }, - { - "key": "mco.selectServer.expiredList", - "english_translation": "Your subscription has expired" - }, - { - "key": "mco.selectServer.expiredRenew", - "english_translation": "Renew" - }, - { - "key": "mco.selectServer.expiredSubscribe", - "english_translation": "Subscribe" - }, - { - "key": "mco.selectServer.expiredTrial", - "english_translation": "Your trial has ended" - }, - { - "key": "mco.selectServer.expires.day", - "english_translation": "Expires in a day" - }, - { - "key": "mco.selectServer.expires.days", - "english_translation": "Expires in %s days" - }, - { - "key": "mco.selectServer.expires.soon", - "english_translation": "Expires soon" - }, - { - "key": "mco.selectServer.leave", - "english_translation": "Leave realm" - }, - { - "key": "mco.selectServer.mapOnlySupportedForVersion", - "english_translation": "This map is unsupported in %s" - }, - { - "key": "mco.selectServer.minigame", - "english_translation": "Minigame:" - }, - { - "key": "mco.selectServer.minigameNotSupportedInVersion", - "english_translation": "Can't play this minigame in %s" - }, - { - "key": "mco.selectServer.note", - "english_translation": "Note:" - }, - { - "key": "mco.selectServer.open", - "english_translation": "Open realm" - }, - { - "key": "mco.selectServer.openserver", - "english_translation": "Open realm" - }, - { - "key": "mco.selectServer.play", - "english_translation": "Play" - }, - { - "key": "mco.selectServer.popup", - "english_translation": "Realms is a safe, simple way to enjoy an online Minecraft world with up to ten friends at a time. It supports loads of minigames and plenty of custom worlds! Only the owner of the realm needs to pay." - }, - { - "key": "mco.selectServer.purchase", - "english_translation": "Add Realm" - }, - { - "key": "mco.selectServer.trial", - "english_translation": "Get a trial!" - }, - { - "key": "mco.selectServer.uninitialized", - "english_translation": "Click to start your new realm!" - }, - { - "key": "mco.template.button.publisher", - "english_translation": "Publisher" - }, - { - "key": "mco.template.button.select", - "english_translation": "Select" - }, - { - "key": "mco.template.button.trailer", - "english_translation": "Trailer" - }, - { - "key": "mco.template.default.name", - "english_translation": "World template" - }, - { - "key": "mco.template.info.tooltip", - "english_translation": "Publisher website" - }, - { - "key": "mco.template.name", - "english_translation": "Template" - }, - { - "key": "mco.template.select.failure", - "english_translation": "We couldn't retrieve the list of content for this category.\nPlease check your internet connection, or try again later." - }, - { - "key": "mco.template.select.narrate.authors", - "english_translation": "Authors: %s" - }, - { - "key": "mco.template.select.narrate.version", - "english_translation": "version %s" - }, - { - "key": "mco.template.select.none", - "english_translation": "Oops, it looks like this content category is currently empty.\nPlease check back later for new content, or if you're a creator,\n%s." - }, - { - "key": "mco.template.select.none.linkTitle", - "english_translation": "consider submitting something yourself" - }, - { - "key": "mco.template.title", - "english_translation": "World templates" - }, - { - "key": "mco.template.title.minigame", - "english_translation": "Minigames" - }, - { - "key": "mco.template.trailer.tooltip", - "english_translation": "Map trailer" - }, - { - "key": "mco.terms.buttons.agree", - "english_translation": "Agree" - }, - { - "key": "mco.terms.buttons.disagree", - "english_translation": "Don't agree" - }, - { - "key": "mco.terms.sentence.1", - "english_translation": "I agree to the Minecraft Realms" - }, - { - "key": "mco.terms.sentence.2", - "english_translation": "Terms of Service" - }, - { - "key": "mco.terms.title", - "english_translation": "Realms Terms of Service" - }, - { - "key": "mco.trial.message.line1", - "english_translation": "Want to get your own realm?" - }, - { - "key": "mco.trial.message.line2", - "english_translation": "Click here for more info!" - }, - { - "key": "mco.upload.button.name", - "english_translation": "Upload" - }, - { - "key": "mco.upload.cancelled", - "english_translation": "Upload cancelled" - }, - { - "key": "mco.upload.close.failure", - "english_translation": "Could not close your realm, please try again later" - }, - { - "key": "mco.upload.done", - "english_translation": "Upload done" - }, - { - "key": "mco.upload.failed", - "english_translation": "Upload failed! (%s)" - }, - { - "key": "mco.upload.hardcore", - "english_translation": "Hardcore worlds can't be uploaded!" - }, - { - "key": "mco.upload.preparing", - "english_translation": "Preparing your world" - }, - { - "key": "mco.upload.select.world.none", - "english_translation": "No singleplayer worlds found!" - }, - { - "key": "mco.upload.select.world.subtitle", - "english_translation": "Please select a singleplayer world to upload" - }, - { - "key": "mco.upload.select.world.title", - "english_translation": "Upload world" - }, - { - "key": "mco.upload.size.failure.line1", - "english_translation": "'%s' is too big!" - }, - { - "key": "mco.upload.size.failure.line2", - "english_translation": "It is %s. The maximum allowed size is %s." - }, - { - "key": "mco.upload.uploading", - "english_translation": "Uploading '%s'" - }, - { - "key": "mco.upload.verifying", - "english_translation": "Verifying your world" - }, - { - "key": "menu.convertingLevel", - "english_translation": "Converting world" - }, - { - "key": "menu.disconnect", - "english_translation": "Disconnect" - }, - { - "key": "menu.game", - "english_translation": "Game Menu" - }, - { - "key": "menu.generatingLevel", - "english_translation": "Generating world" - }, - { - "key": "menu.generatingTerrain", - "english_translation": "Building terrain" - }, - { - "key": "menu.loadingForcedChunks", - "english_translation": "Loading forced chunks for dimension %s" - }, - { - "key": "menu.loadingLevel", - "english_translation": "Loading world" - }, - { - "key": "menu.modded", - "english_translation": " (Modded)" - }, - { - "key": "menu.multiplayer", - "english_translation": "Multiplayer" - }, - { - "key": "menu.online", - "english_translation": "Minecraft Realms" - }, - { - "key": "menu.options", - "english_translation": "Options..." - }, - { - "key": "menu.paused", - "english_translation": "Game Paused" - }, - { - "key": "menu.playdemo", - "english_translation": "Play Demo World" - }, - { - "key": "menu.playerReporting", - "english_translation": "Player Reporting" - }, - { - "key": "menu.preparingSpawn", - "english_translation": "Preparing spawn area: %s%%" - }, - { - "key": "menu.quit", - "english_translation": "Quit Game" - }, - { - "key": "menu.reportBugs", - "english_translation": "Report Bugs" - }, - { - "key": "menu.resetdemo", - "english_translation": "Reset Demo World" - }, - { - "key": "menu.respawning", - "english_translation": "Respawning" - }, - { - "key": "menu.returnToGame", - "english_translation": "Back to Game" - }, - { - "key": "menu.returnToMenu", - "english_translation": "Save and Quit to Title" - }, - { - "key": "menu.savingChunks", - "english_translation": "Saving chunks" - }, - { - "key": "menu.savingLevel", - "english_translation": "Saving world" - }, - { - "key": "menu.sendFeedback", - "english_translation": "Give Feedback" - }, - { - "key": "menu.shareToLan", - "english_translation": "Open to LAN" - }, - { - "key": "menu.singleplayer", - "english_translation": "Singleplayer" - }, - { - "key": "menu.working", - "english_translation": "Working..." - }, - { - "key": "merchant.current_level", - "english_translation": "Trader's current level" - }, - { - "key": "merchant.deprecated", - "english_translation": "Villagers restock up to two times per day." - }, - { - "key": "merchant.level.1", - "english_translation": "Novice" - }, - { - "key": "merchant.level.2", - "english_translation": "Apprentice" - }, - { - "key": "merchant.level.3", - "english_translation": "Journeyman" - }, - { - "key": "merchant.level.4", - "english_translation": "Expert" - }, - { - "key": "merchant.level.5", - "english_translation": "Master" - }, - { - "key": "merchant.next_level", - "english_translation": "Trader's next level" - }, - { - "key": "merchant.trades", - "english_translation": "Trades" - }, - { - "key": "mirror.front_back", - "english_translation": "↑ ↓" - }, - { - "key": "mirror.left_right", - "english_translation": "← →" - }, - { - "key": "mirror.none", - "english_translation": "|" - }, - { - "key": "mount.onboard", - "english_translation": "Press %1$s to Dismount" - }, - { - "key": "multiplayer.applyingPack", - "english_translation": "Applying resource pack" - }, - { - "key": "multiplayer.disconnect.authservers_down", - "english_translation": "Authentication servers are down. Please try again later, sorry!" - }, - { - "key": "multiplayer.disconnect.banned", - "english_translation": "You are banned from this server" - }, - { - "key": "multiplayer.disconnect.banned_ip.expiration", - "english_translation": "\nYour ban will be removed on %s" - }, - { - "key": "multiplayer.disconnect.banned_ip.reason", - "english_translation": "Your IP address is banned from this server.\nReason: %s" - }, - { - "key": "multiplayer.disconnect.banned.expiration", - "english_translation": "\nYour ban will be removed on %s" - }, - { - "key": "multiplayer.disconnect.banned.reason", - "english_translation": "You are banned from this server.\nReason: %s" - }, - { - "key": "multiplayer.disconnect.chat_validation_failed", - "english_translation": "Chat message validation failure" - }, - { - "key": "multiplayer.disconnect.duplicate_login", - "english_translation": "You logged in from another location" - }, - { - "key": "multiplayer.disconnect.expired_public_key", - "english_translation": "Expired profile public key. Check that your system time is synchronized, and try restarting your game." - }, - { - "key": "multiplayer.disconnect.flying", - "english_translation": "Flying is not enabled on this server" - }, - { - "key": "multiplayer.disconnect.generic", - "english_translation": "Disconnected" - }, - { - "key": "multiplayer.disconnect.idling", - "english_translation": "You have been idle for too long!" - }, - { - "key": "multiplayer.disconnect.illegal_characters", - "english_translation": "Illegal characters in chat" - }, - { - "key": "multiplayer.disconnect.incompatible", - "english_translation": "Incompatible client! Please use %s" - }, - { - "key": "multiplayer.disconnect.invalid_entity_attacked", - "english_translation": "Attempting to attack an invalid entity" - }, - { - "key": "multiplayer.disconnect.invalid_packet", - "english_translation": "Server sent an invalid packet" - }, - { - "key": "multiplayer.disconnect.invalid_player_data", - "english_translation": "Invalid player data" + "key": "mco.backup.unknown", + "english_translation": "UNKNOWN" }, { "key": "multiplayer.disconnect.invalid_player_movement", "english_translation": "Invalid move player packet received" }, { - "key": "multiplayer.disconnect.invalid_public_key_signature", - "english_translation": "Invalid signature for profile public key.\nTry restarting your game." + "key": "advancements.end.respawn_dragon.description", + "english_translation": "Respawn the Ender Dragon" }, { - "key": "multiplayer.disconnect.invalid_vehicle_movement", - "english_translation": "Invalid move vehicle packet received" + "key": "block.minecraft.banner.stripe_bottom.magenta", + "english_translation": "Magenta Base" }, { - "key": "multiplayer.disconnect.ip_banned", - "english_translation": "You have been IP banned from this server" + "key": "subtitles.block.smithing_table.use", + "english_translation": "Smithing Table used" }, { - "key": "multiplayer.disconnect.kicked", - "english_translation": "Kicked by an operator" + "key": "block.minecraft.sculk_vein", + "english_translation": "Sculk Vein" }, { - "key": "multiplayer.disconnect.missing_tags", - "english_translation": "Incomplete set of tags received from server.\nPlease contact server operator." + "key": "command.unknown.command", + "english_translation": "Unknown or incomplete command, see below for error" }, { - "key": "multiplayer.disconnect.name_taken", - "english_translation": "That name is already taken" + "key": "advMode.previousOutput", + "english_translation": "Previous Output" }, { - "key": "multiplayer.disconnect.not_whitelisted", - "english_translation": "You are not white-listed on this server!" + "key": "stat.minecraft.enchant_item", + "english_translation": "Items Enchanted" }, { - "key": "multiplayer.disconnect.out_of_order_chat", - "english_translation": "Out-of-order chat packet received. Did your system time change?" + "key": "block.minecraft.dark_oak_leaves", + "english_translation": "Dark Oak Leaves" }, { - "key": "multiplayer.disconnect.outdated_client", - "english_translation": "Incompatible client! Please use %s" + "key": "key.keyboard.unknown", + "english_translation": "Not Bound" }, { - "key": "multiplayer.disconnect.outdated_server", - "english_translation": "Incompatible client! Please use %s" + "key": "item.minecraft.rabbit_spawn_egg", + "english_translation": "Rabbit Spawn Egg" }, { - "key": "multiplayer.disconnect.server_full", - "english_translation": "The server is full!" + "key": "block.minecraft.green_stained_glass", + "english_translation": "Green Stained Glass" }, { - "key": "multiplayer.disconnect.server_shutdown", - "english_translation": "Server closed" + "key": "mirror.front_back", + "english_translation": "↑ ↓" }, { - "key": "multiplayer.disconnect.slow_login", - "english_translation": "Took too long to log in" + "key": "block.minecraft.command_block", + "english_translation": "Command Block" }, { - "key": "multiplayer.disconnect.too_many_pending_chats", - "english_translation": "Too many unacknowledged chat messages" + "key": "block.minecraft.banner.stripe_center.blue", + "english_translation": "Blue Pale" }, { - "key": "multiplayer.disconnect.unexpected_query_response", - "english_translation": "Unexpected custom data from client" + "key": "advancements.nether.obtain_crying_obsidian.title", + "english_translation": "Who is Cutting Onions?" }, { - "key": "multiplayer.disconnect.unsigned_chat", - "english_translation": "Received chat packet with missing or invalid signature." + "key": "mco.minigame.world.slot.screen.title", + "english_translation": "Switching world..." }, { - "key": "multiplayer.disconnect.unverified_username", - "english_translation": "Failed to verify username!" + "key": "disconnect.overflow", + "english_translation": "Buffer overflow" }, { - "key": "multiplayer.downloadingStats", - "english_translation": "Retrieving statistics..." + "key": "options.directionalAudio.on.tooltip", + "english_translation": "Uses HRTF-based directional audio to improve the simulation of 3D sound. Requires HRTF compatible audio hardware, and is best experienced with headphones." }, { - "key": "multiplayer.downloadingTerrain", - "english_translation": "Loading terrain..." + "key": "block.minecraft.bed.no_sleep", + "english_translation": "You can sleep only at night or during thunderstorms" }, { - "key": "multiplayer.lan.server_found", - "english_translation": "New server found: %s" + "key": "commands.drop.success.multiple_with_table", + "english_translation": "Dropped %s items from loot table %s" }, { - "key": "multiplayer.message_not_delivered", - "english_translation": "Can't deliver chat message, check server logs: %s" + "key": "commands.worldborder.set.failed.small", + "english_translation": "World border cannot be smaller than 1 block wide" }, { - "key": "multiplayer.player.joined", - "english_translation": "%s joined the game" + "key": "item.minecraft.firework_star.lime", + "english_translation": "Lime" }, { - "key": "multiplayer.player.joined.renamed", - "english_translation": "%s (formerly known as %s) joined the game" + "key": "telemetry.event.game_load_times.description", + "english_translation": "This event can help us figure out where startup performance improvements are needed by measuring the execution times of the startup phases." }, { - "key": "multiplayer.player.left", - "english_translation": "%s left the game" + "key": "subtitles.block.enchantment_table.use", + "english_translation": "Enchanting Table used" }, { - "key": "multiplayer.player.list.narration", - "english_translation": "Online players: %s" + "key": "subtitles.block.sculk.charge", + "english_translation": "Sculk bubbles" }, { - "key": "multiplayer.requiredTexturePrompt.disconnect", - "english_translation": "Server requires a custom resource pack" + "key": "subtitles.entity.glow_item_frame.add_item", + "english_translation": "Glow Item Frame fills" }, { - "key": "multiplayer.requiredTexturePrompt.line1", - "english_translation": "This server requires the use of a custom resource pack." + "key": "block.minecraft.raw_iron_block", + "english_translation": "Block of Raw Iron" }, { - "key": "multiplayer.requiredTexturePrompt.line2", - "english_translation": "Rejecting this custom resource pack will disconnect you from this server." + "key": "enchantment.minecraft.multishot", + "english_translation": "Multishot" }, { - "key": "multiplayer.socialInteractions.not_available", - "english_translation": "Social Interactions are only available in Multiplayer worlds" + "key": "painting.minecraft.donkey_kong.title", + "english_translation": "Kong" }, { - "key": "multiplayer.status.and_more", - "english_translation": "... and %s more ..." + "key": "gui.abuseReport.send.service_unavailable", + "english_translation": "Unable to reach the Abuse Reporting service. Please make sure you are connected to the internet and try again." }, { - "key": "multiplayer.status.cancelled", - "english_translation": "Cancelled" + "key": "gamerule.reducedDebugInfo", + "english_translation": "Reduce debug info" }, { - "key": "multiplayer.status.cannot_connect", - "english_translation": "Can't connect to server" + "key": "key.keyboard.menu", + "english_translation": "Menu" }, { - "key": "multiplayer.status.cannot_resolve", - "english_translation": "Can't resolve hostname" + "key": "advMode.notAllowed", + "english_translation": "Must be an opped player in creative mode" }, { - "key": "multiplayer.status.finished", - "english_translation": "Finished" + "key": "symlink_warning.title", + "english_translation": "World folder contains symbolic links" }, { - "key": "multiplayer.status.incompatible", - "english_translation": "Incompatible version!" + "key": "options.graphics.warning.message", + "english_translation": "Your graphics device is detected as unsupported for the %s graphics option.\n\nYou may ignore this and continue, however support will not be provided for your device if you choose to use %s graphics." }, { - "key": "multiplayer.status.motd.narration", - "english_translation": "Message of the day: %s" + "key": "options.renderClouds", + "english_translation": "Clouds" }, { - "key": "multiplayer.status.no_connection", - "english_translation": "(no connection)" + "key": "subtitles.entity.panda.cant_breed", + "english_translation": "Panda bleats" }, { - "key": "multiplayer.status.old", - "english_translation": "Old" + "key": "item.minecraft.chainmail_boots", + "english_translation": "Chainmail Boots" }, { - "key": "multiplayer.status.online", - "english_translation": "Online" + "key": "advancements.husbandry.obtain_sniffer_egg.title", + "english_translation": "Smells Interesting" }, { - "key": "multiplayer.status.ping", - "english_translation": "%s ms" + "key": "createWorld.customize.custom.heightScale", + "english_translation": "Height Scale" }, { - "key": "multiplayer.status.ping.narration", - "english_translation": "Ping %s milliseconds" + "key": "structure_block.invalid_structure_name", + "english_translation": "Invalid structure name '%s'" }, { - "key": "multiplayer.status.pinging", - "english_translation": "Pinging..." + "key": "block.minecraft.blue_glazed_terracotta", + "english_translation": "Blue Glazed Terracotta" }, { - "key": "multiplayer.status.player_count.narration", - "english_translation": "%s out of %s players online" + "key": "death.attack.lightningBolt", + "english_translation": "%1$s was struck by lightning" }, { - "key": "multiplayer.status.quitting", - "english_translation": "Quitting" + "key": "item.minecraft.snort_pottery_shard", + "english_translation": "Snort Pottery Shard" }, { - "key": "multiplayer.status.request_handled", - "english_translation": "Status request has been handled" + "key": "telemetry.property.seconds_since_load.title", + "english_translation": "Time Since Load (Seconds)" }, { - "key": "multiplayer.status.unknown", - "english_translation": "???" - }, - { - "key": "multiplayer.status.unrequested", - "english_translation": "Received unrequested status" - }, - { - "key": "multiplayer.status.version.narration", - "english_translation": "Server version: %s" - }, - { - "key": "multiplayer.stopSleeping", - "english_translation": "Leave Bed" - }, - { - "key": "multiplayer.texturePrompt.failure.line1", - "english_translation": "Server resource pack couldn't be applied" - }, - { - "key": "multiplayer.texturePrompt.failure.line2", - "english_translation": "Any functionality that requires custom resources might not work as expected" + "key": "block.minecraft.cyan_stained_glass_pane", + "english_translation": "Cyan Stained Glass Pane" }, { "key": "multiplayer.texturePrompt.line1", @@ -18232,2676 +24136,48 @@ "english_translation": "Would you like to download and install it automagically?" }, { - "key": "multiplayer.texturePrompt.serverPrompt", - "english_translation": "%s\n\nMessage from server:\n%s" + "key": "addServer.hideAddress", + "english_translation": "Hide Address" }, { - "key": "multiplayer.title", - "english_translation": "Play Multiplayer" + "key": "block.minecraft.banner.cross.yellow", + "english_translation": "Yellow Saltire" }, { - "key": "multiplayer.unsecureserver.toast", - "english_translation": "Messages sent on this server may be modified and might not reflect the original message" + "key": "block.minecraft.banner.triangle_bottom.gray", + "english_translation": "Gray Chevron" }, { - "key": "multiplayer.unsecureserver.toast.title", - "english_translation": "Chat messages can't be verified" + "key": "biome.minecraft.windswept_savanna", + "english_translation": "Windswept Savanna" }, { - "key": "multiplayerWarning.check", - "english_translation": "Do not show this screen again" + "key": "block.minecraft.banner.stripe_center.light_gray", + "english_translation": "Light Gray Pale" }, { - "key": "multiplayerWarning.header", - "english_translation": "Caution: Third-Party Online Play" + "key": "subtitles.entity.puffer_fish.sting", + "english_translation": "Pufferfish stings" }, { - "key": "multiplayerWarning.message", - "english_translation": "Caution: Online play is offered by third-party servers that are not owned, operated, or supervised by Mojang Studios or Microsoft. During online play, you may be exposed to unmoderated chat messages or other types of user-generated content that may not be suitable for everyone." + "key": "createWorld.customize.custom.maxHeight", + "english_translation": "Max. Height" }, { - "key": "narration.button", - "english_translation": "Button: %s" + "key": "item.minecraft.splash_potion.effect.leaping", + "english_translation": "Splash Potion of Leaping" }, { - "key": "narration.button.usage.focused", - "english_translation": "Press Enter to activate" + "key": "mco.minigame.world.restore", + "english_translation": "Ending minigame..." }, { - "key": "narration.button.usage.hovered", - "english_translation": "Left click to activate" + "key": "advancements.story.shiny_gear.title", + "english_translation": "Cover Me with Diamonds" }, { - "key": "narration.checkbox", - "english_translation": "Checkbox: %s" - }, - { - "key": "narration.checkbox.usage.focused", - "english_translation": "Press Enter to toggle" - }, - { - "key": "narration.checkbox.usage.hovered", - "english_translation": "Left click to toggle" - }, - { - "key": "narration.component_list.usage", - "english_translation": "Press Tab to navigate to next element" - }, - { - "key": "narration.cycle_button.usage.focused", - "english_translation": "Press Enter to switch to %s" - }, - { - "key": "narration.cycle_button.usage.hovered", - "english_translation": "Left click to switch to %s" - }, - { - "key": "narration.edit_box", - "english_translation": "Edit box: %s" - }, - { - "key": "narration.recipe", - "english_translation": "Recipe for %s" - }, - { - "key": "narration.recipe.usage", - "english_translation": "Left click to select" - }, - { - "key": "narration.recipe.usage.more", - "english_translation": "Right click to show more recipes" - }, - { - "key": "narration.selection.usage", - "english_translation": "Press up and down buttons to move to another entry" - }, - { - "key": "narration.tab_navigation.usage", - "english_translation": "Press Ctrl and Tab to switch between tabs" - }, - { - "key": "narration.slider.usage.focused", - "english_translation": "Press left or right keyboard buttons to change value" - }, - { - "key": "narration.slider.usage.hovered", - "english_translation": "Drag slider to change value" - }, - { - "key": "narration.suggestion", - "english_translation": "Selected suggestion %s out of %s: %s" - }, - { - "key": "narration.suggestion.tooltip", - "english_translation": "Selected suggestion %s out of %s: %s (%s)" - }, - { - "key": "narrator.button.accessibility", - "english_translation": "Accessibility" - }, - { - "key": "narrator.button.difficulty_lock", - "english_translation": "Difficulty lock" - }, - { - "key": "narrator.button.difficulty_lock.locked", - "english_translation": "Locked" - }, - { - "key": "narrator.button.difficulty_lock.unlocked", - "english_translation": "Unlocked" - }, - { - "key": "narrator.button.language", - "english_translation": "Language" - }, - { - "key": "narrator.controls.bound", - "english_translation": "%s is bound to %s" - }, - { - "key": "narrator.controls.reset", - "english_translation": "Reset %s button" - }, - { - "key": "narrator.controls.unbound", - "english_translation": "%s is not bound" - }, - { - "key": "narrator.joining", - "english_translation": "Joining" - }, - { - "key": "narrator.loading", - "english_translation": "Loading: %s" - }, - { - "key": "narrator.loading.done", - "english_translation": "Done" - }, - { - "key": "narrator.position.list", - "english_translation": "Selected list row %s out of %s" - }, - { - "key": "narrator.position.object_list", - "english_translation": "Selected row element %s out of %s" - }, - { - "key": "narrator.position.screen", - "english_translation": "Screen element %s out of %s" - }, - { - "key": "narrator.position.tab", - "english_translation": "Selected tab %s out of %s" - }, - { - "key": "narrator.ready_to_play", - "english_translation": "Ready to play" - }, - { - "key": "narrator.screen.title", - "english_translation": "Title Screen" - }, - { - "key": "narrator.screen.usage", - "english_translation": "Use mouse cursor or Tab button to select element" - }, - { - "key": "narrator.select", - "english_translation": "Selected: %s" - }, - { - "key": "narrator.select.world", - "english_translation": "Selected %s, last played: %s, %s, %s, version: %s" - }, - { - "key": "narrator.toast.disabled", - "english_translation": "Narrator Disabled" - }, - { - "key": "narrator.toast.enabled", - "english_translation": "Narrator Enabled" - }, - { - "key": "optimizeWorld.confirm.description", - "english_translation": "This will attempt to optimize your world by making sure all data is stored in the most recent game format. This can take a very long time, depending on your world. Once done, your world may play faster but will no longer be compatible with older versions of the game. Are you sure you wish to proceed?" - }, - { - "key": "optimizeWorld.confirm.title", - "english_translation": "Optimize World" - }, - { - "key": "optimizeWorld.info.converted", - "english_translation": "Upgraded chunks: %s" - }, - { - "key": "optimizeWorld.info.skipped", - "english_translation": "Skipped chunks: %s" - }, - { - "key": "optimizeWorld.info.total", - "english_translation": "Total chunks: %s" - }, - { - "key": "optimizeWorld.stage.counting", - "english_translation": "Counting chunks..." - }, - { - "key": "optimizeWorld.stage.failed", - "english_translation": "Failed! :(" - }, - { - "key": "optimizeWorld.stage.finished", - "english_translation": "Finishing up..." - }, - { - "key": "optimizeWorld.stage.upgrading", - "english_translation": "Upgrading all chunks..." - }, - { - "key": "optimizeWorld.title", - "english_translation": "Optimizing World '%s'" - }, - { - "key": "options.accessibility.high_contrast", - "english_translation": "High Contrast" - }, - { - "key": "options.accessibility.high_contrast.tooltip", - "english_translation": "Enhances the contrast of UI elements" - }, - { - "key": "options.accessibility.high_contrast.error.tooltip", - "english_translation": "High Contrast resource pack is not available" - }, - { - "key": "options.accessibility.link", - "english_translation": "Accessibility Guide" - }, - { - "key": "options.accessibility.panorama_speed", - "english_translation": "Panorama Scroll Speed" - }, - { - "key": "options.accessibility.text_background", - "english_translation": "Text Background" - }, - { - "key": "options.accessibility.text_background_opacity", - "english_translation": "Text Background Opacity" - }, - { - "key": "options.accessibility.text_background.chat", - "english_translation": "Chat" - }, - { - "key": "options.accessibility.text_background.everywhere", - "english_translation": "Everywhere" - }, - { - "key": "options.accessibility.title", - "english_translation": "Accessibility Settings..." - }, - { - "key": "options.allowServerListing", - "english_translation": "Allow Server Listings" - }, - { - "key": "options.allowServerListing.tooltip", - "english_translation": "Servers may list online players as part of their public status.\nWith this option off your name will not show up in such lists." - }, - { - "key": "options.ao", - "english_translation": "Smooth Lighting" - }, - { - "key": "options.ao.max", - "english_translation": "Maximum" - }, - { - "key": "options.ao.min", - "english_translation": "Minimum" - }, - { - "key": "options.ao.off", - "english_translation": "OFF" - }, - { - "key": "options.attack.crosshair", - "english_translation": "Crosshair" - }, - { - "key": "options.attack.hotbar", - "english_translation": "Hotbar" - }, - { - "key": "options.attackIndicator", - "english_translation": "Attack Indicator" - }, - { - "key": "options.audioDevice", - "english_translation": "Device" - }, - { - "key": "options.audioDevice.default", - "english_translation": "System Default" - }, - { - "key": "options.autoJump", - "english_translation": "Auto-Jump" - }, - { - "key": "options.autosaveIndicator", - "english_translation": "Autosave Indicator" - }, - { - "key": "options.autoSuggestCommands", - "english_translation": "Command Suggestions" - }, - { - "key": "options.biomeBlendRadius", - "english_translation": "Biome Blend" - }, - { - "key": "options.biomeBlendRadius.1", - "english_translation": "OFF (Fastest)" - }, - { - "key": "options.biomeBlendRadius.3", - "english_translation": "3x3 (Fast)" - }, - { - "key": "options.biomeBlendRadius.5", - "english_translation": "5x5 (Normal)" - }, - { - "key": "options.biomeBlendRadius.7", - "english_translation": "7x7 (High)" - }, - { - "key": "options.biomeBlendRadius.9", - "english_translation": "9x9 (Very High)" - }, - { - "key": "options.biomeBlendRadius.11", - "english_translation": "11x11 (Extreme)" - }, - { - "key": "options.biomeBlendRadius.13", - "english_translation": "13x13 (Showoff)" - }, - { - "key": "options.biomeBlendRadius.15", - "english_translation": "15x15 (Maximum)" - }, - { - "key": "options.chat.color", - "english_translation": "Colors" - }, - { - "key": "options.chat.delay", - "english_translation": "Chat Delay: %s seconds" - }, - { - "key": "options.chat.delay_none", - "english_translation": "Chat Delay: None" - }, - { - "key": "options.chat.height.focused", - "english_translation": "Focused Height" - }, - { - "key": "options.chat.height.unfocused", - "english_translation": "Unfocused Height" - }, - { - "key": "options.chat.line_spacing", - "english_translation": "Line Spacing" - }, - { - "key": "options.chat.links", - "english_translation": "Web Links" - }, - { - "key": "options.chat.links.prompt", - "english_translation": "Prompt on Links" - }, - { - "key": "options.chat.opacity", - "english_translation": "Chat Text Opacity" - }, - { - "key": "options.chat.scale", - "english_translation": "Chat Text Size" - }, - { - "key": "options.chat.title", - "english_translation": "Chat Settings..." - }, - { - "key": "options.chat.visibility", - "english_translation": "Chat" - }, - { - "key": "options.chat.visibility.full", - "english_translation": "Shown" - }, - { - "key": "options.chat.visibility.hidden", - "english_translation": "Hidden" - }, - { - "key": "options.chat.visibility.system", - "english_translation": "Commands Only" - }, - { - "key": "options.chat.width", - "english_translation": "Width" - }, - { - "key": "options.chunks", - "english_translation": "%s chunks" - }, - { - "key": "options.clouds.fancy", - "english_translation": "Fancy" - }, - { - "key": "options.clouds.fast", - "english_translation": "Fast" - }, - { - "key": "options.controls", - "english_translation": "Controls..." - }, - { - "key": "options.credits_and_attribution", - "english_translation": "Credits & Attribution..." - }, - { - "key": "options.customizeTitle", - "english_translation": "Customize World Settings" - }, - { - "key": "options.damageTiltStrength", - "english_translation": "Damage Tilt" - }, - { - "key": "options.damageTiltStrength.tooltip", - "english_translation": "The amount of camera shake caused by being hurt." - }, - { - "key": "options.darkMojangStudiosBackgroundColor", - "english_translation": "Monochrome Logo" - }, - { - "key": "options.darkMojangStudiosBackgroundColor.tooltip", - "english_translation": "Changes the Mojang Studios loading screen background color to black." - }, - { - "key": "options.darknessEffectScale", - "english_translation": "Darkness Pulsing" - }, - { - "key": "options.darknessEffectScale.tooltip", - "english_translation": "Controls how much the Darkness effect pulses when a Warden or Sculk Shrieker gives it to you." - }, - { - "key": "options.difficulty", - "english_translation": "Difficulty" - }, - { - "key": "options.difficulty.easy", - "english_translation": "Easy" - }, - { - "key": "options.difficulty.easy.info", - "english_translation": "Hostile mobs spawn but deal less damage. Hunger bar depletes and drains health down to 5 hearts." - }, - { - "key": "options.difficulty.hard", - "english_translation": "Hard" - }, - { - "key": "options.difficulty.hard.info", - "english_translation": "Hostile mobs spawn and deal more damage. Hunger bar depletes and drains all health." - }, - { - "key": "options.difficulty.hardcore", - "english_translation": "Hardcore" - }, - { - "key": "options.difficulty.normal", - "english_translation": "Normal" - }, - { - "key": "options.difficulty.normal.info", - "english_translation": "Hostile mobs spawn and deal standard damage. Hunger bar depletes and drains health down to half a heart." - }, - { - "key": "options.difficulty.online", - "english_translation": "Server Difficulty" - }, - { - "key": "options.difficulty.peaceful", - "english_translation": "Peaceful" - }, - { - "key": "options.difficulty.peaceful.info", - "english_translation": "No hostile mobs and only some neutral mobs spawn. Hunger bar doesn't deplete and health replenishes over time." - }, - { - "key": "options.directionalAudio", - "english_translation": "Directional Audio" - }, - { - "key": "options.directionalAudio.off.tooltip", - "english_translation": "Classic Stereo sound" - }, - { - "key": "options.directionalAudio.on.tooltip", - "english_translation": "Uses HRTF-based directional audio to improve the simulation of 3D sound. Requires HRTF compatible audio hardware, and is best experienced with headphones." - }, - { - "key": "options.discrete_mouse_scroll", - "english_translation": "Discrete Scrolling" - }, - { - "key": "options.entityDistanceScaling", - "english_translation": "Entity Distance" - }, - { - "key": "options.entityShadows", - "english_translation": "Entity Shadows" - }, - { - "key": "options.forceUnicodeFont", - "english_translation": "Force Unicode Font" - }, - { - "key": "options.fov", - "english_translation": "FOV" - }, - { - "key": "options.fov.max", - "english_translation": "Quake Pro" - }, - { - "key": "options.fov.min", - "english_translation": "Normal" - }, - { - "key": "options.fovEffectScale", - "english_translation": "FOV Effects" - }, - { - "key": "options.fovEffectScale.tooltip", - "english_translation": "Controls how much the field of view can change with gameplay effects." - }, - { - "key": "options.framerate", - "english_translation": "%s fps" - }, - { - "key": "options.framerateLimit", - "english_translation": "Max Framerate" - }, - { - "key": "options.framerateLimit.max", - "english_translation": "Unlimited" - }, - { - "key": "options.fullscreen", - "english_translation": "Fullscreen" - }, - { - "key": "options.fullscreen.current", - "english_translation": "Current" - }, - { - "key": "options.fullscreen.resolution", - "english_translation": "Fullscreen Resolution" - }, - { - "key": "options.fullscreen.unavailable", - "english_translation": "Setting unavailable" - }, - { - "key": "options.gamma", - "english_translation": "Brightness" - }, - { - "key": "options.gamma.default", - "english_translation": "Default" - }, - { - "key": "options.gamma.max", - "english_translation": "Bright" - }, - { - "key": "options.gamma.min", - "english_translation": "Moody" - }, - { - "key": "options.generic_value", - "english_translation": "%s: %s" - }, - { - "key": "options.glintSpeed", - "english_translation": "Glint Speed" - }, - { - "key": "options.glintSpeed.tooltip", - "english_translation": "Controls how fast the visual glint shimmers across enchanted items." - }, - { - "key": "options.glintStrength", - "english_translation": "Glint Strength" - }, - { - "key": "options.glintStrength.tooltip", - "english_translation": "Controls how transparent the visual glint is on enchanted items." - }, - { - "key": "options.graphics", - "english_translation": "Graphics" - }, - { - "key": "options.graphics.fabulous", - "english_translation": "Fabulous!" - }, - { - "key": "options.graphics.fabulous.tooltip", - "english_translation": "%s graphics uses screen shaders for drawing weather, clouds, and particles behind translucent blocks and water.\nThis may severely impact performance for portable devices and 4K displays." - }, - { - "key": "options.graphics.fancy", - "english_translation": "Fancy" - }, - { - "key": "options.graphics.fancy.tooltip", - "english_translation": "Fancy graphics balances performance and quality for the majority of machines.\nWeather, clouds, and particles may not appear behind translucent blocks or water." - }, - { - "key": "options.graphics.fast", - "english_translation": "Fast" - }, - { - "key": "options.graphics.fast.tooltip", - "english_translation": "Fast graphics reduces the amount of visible rain and snow.\nTransparency effects are disabled for various blocks such as leaves." - }, - { - "key": "options.graphics.warning.accept", - "english_translation": "Continue without Support" - }, - { - "key": "options.graphics.warning.cancel", - "english_translation": "Take me Back" - }, - { - "key": "options.graphics.warning.message", - "english_translation": "Your graphics device is detected as unsupported for the %s graphics option.\n\nYou may ignore this and continue, however support will not be provided for your device if you choose to use %s graphics." - }, - { - "key": "options.graphics.warning.renderer", - "english_translation": "Renderer detected: [%s]" - }, - { - "key": "options.graphics.warning.title", - "english_translation": "Graphics Device Unsupported" - }, - { - "key": "options.graphics.warning.vendor", - "english_translation": "Vendor detected: [%s]" - }, - { - "key": "options.graphics.warning.version", - "english_translation": "OpenGL Version detected: [%s]" - }, - { - "key": "options.guiScale", - "english_translation": "GUI Scale" - }, - { - "key": "options.guiScale.auto", - "english_translation": "Auto" - }, - { - "key": "options.hidden", - "english_translation": "Hidden" - }, - { - "key": "options.hideLightningFlashes", - "english_translation": "Hide Lightning Flashes" - }, - { - "key": "options.hideLightningFlashes.tooltip", - "english_translation": "Prevents lightning bolts from making the sky flash. The bolts themselves will still be visible." - }, - { - "key": "options.hideMatchedNames", - "english_translation": "Hide Matched Names" - }, - { - "key": "options.hideMatchedNames.tooltip", - "english_translation": "3rd-party Servers may send chat messages in non-standard formats.\nWith this option on: hidden players will be matched based on chat sender names." - }, - { - "key": "options.invertMouse", - "english_translation": "Invert Mouse" - }, - { - "key": "options.key.hold", - "english_translation": "Hold" - }, - { - "key": "options.key.toggle", - "english_translation": "Toggle" - }, - { - "key": "options.language", - "english_translation": "Language..." - }, - { - "key": "options.languageWarning", - "english_translation": "Language translations may not be 100%% accurate" - }, - { - "key": "options.mainHand", - "english_translation": "Main Hand" - }, - { - "key": "options.mainHand.left", - "english_translation": "Left" - }, - { - "key": "options.mainHand.right", - "english_translation": "Right" - }, - { - "key": "options.mipmapLevels", - "english_translation": "Mipmap Levels" - }, - { - "key": "options.modelPart.cape", - "english_translation": "Cape" - }, - { - "key": "options.modelPart.hat", - "english_translation": "Hat" - }, - { - "key": "options.modelPart.jacket", - "english_translation": "Jacket" - }, - { - "key": "options.modelPart.left_pants_leg", - "english_translation": "Left Pants Leg" - }, - { - "key": "options.modelPart.left_sleeve", - "english_translation": "Left Sleeve" - }, - { - "key": "options.modelPart.right_pants_leg", - "english_translation": "Right Pants Leg" - }, - { - "key": "options.modelPart.right_sleeve", - "english_translation": "Right Sleeve" - }, - { - "key": "options.mouse_settings", - "english_translation": "Mouse Settings..." - }, - { - "key": "options.mouse_settings.title", - "english_translation": "Mouse Settings" - }, - { - "key": "options.mouseWheelSensitivity", - "english_translation": "Scroll Sensitivity" - }, - { - "key": "options.multiplayer.title", - "english_translation": "Multiplayer Settings..." - }, - { - "key": "options.multiplier", - "english_translation": "%sx" - }, - { - "key": "options.narrator", - "english_translation": "Narrator" - }, - { - "key": "options.narrator.all", - "english_translation": "Narrates All" - }, - { - "key": "options.narrator.chat", - "english_translation": "Narrates Chat" - }, - { - "key": "options.narrator.notavailable", - "english_translation": "Not Available" - }, - { - "key": "options.narrator.off", - "english_translation": "OFF" - }, - { - "key": "options.narrator.system", - "english_translation": "Narrates System" - }, - { - "key": "options.notifications.display_time", - "english_translation": "Notification Time" - }, - { - "key": "options.notifications.display_time.tooltip", - "english_translation": "Affects the length of time that all notifications stay visible on the screen." - }, - { - "key": "options.off", - "english_translation": "OFF" - }, - { - "key": "options.off.composed", - "english_translation": "%s: OFF" - }, - { - "key": "options.on", - "english_translation": "ON" - }, - { - "key": "options.on.composed", - "english_translation": "%s: ON" - }, - { - "key": "options.online", - "english_translation": "Online..." - }, - { - "key": "options.online.title", - "english_translation": "Online Options" - }, - { - "key": "options.onlyShowSecureChat", - "english_translation": "Only Show Secure Chat" - }, - { - "key": "options.onlyShowSecureChat.tooltip", - "english_translation": "Only display messages from other players that can be verified to have been sent by that player, and have not been modified." - }, - { - "key": "options.operatorItemsTab", - "english_translation": "Operator Items Tab" - }, - { - "key": "options.particles", - "english_translation": "Particles" - }, - { - "key": "options.particles.all", - "english_translation": "All" - }, - { - "key": "options.particles.decreased", - "english_translation": "Decreased" - }, - { - "key": "options.particles.minimal", - "english_translation": "Minimal" - }, - { - "key": "options.percent_add_value", - "english_translation": "%s: +%s%%" - }, - { - "key": "options.percent_value", - "english_translation": "%s: %s%%" - }, - { - "key": "options.pixel_value", - "english_translation": "%s: %spx" - }, - { - "key": "options.prioritizeChunkUpdates", - "english_translation": "Chunk Builder" - }, - { - "key": "options.prioritizeChunkUpdates.byPlayer", - "english_translation": "Semi Blocking" - }, - { - "key": "options.prioritizeChunkUpdates.byPlayer.tooltip", - "english_translation": "Some actions within a chunk will recompile the chunk immediately. This includes block placing & destroying." - }, - { - "key": "options.prioritizeChunkUpdates.nearby", - "english_translation": "Fully Blocking" - }, - { - "key": "options.prioritizeChunkUpdates.nearby.tooltip", - "english_translation": "Nearby chunks are always compiled immediately. This may impact game performance when blocks are placed or destroyed." - }, - { - "key": "options.prioritizeChunkUpdates.none", - "english_translation": "Threaded" - }, - { - "key": "options.prioritizeChunkUpdates.none.tooltip", - "english_translation": "Nearby chunks are compiled in parallel threads. This may result in brief visual holes when blocks are destroyed." - }, - { - "key": "options.rawMouseInput", - "english_translation": "Raw Input" - }, - { - "key": "options.realmsNotifications", - "english_translation": "Realms News & Invites" - }, - { - "key": "options.reducedDebugInfo", - "english_translation": "Reduced Debug Info" - }, - { - "key": "options.renderClouds", - "english_translation": "Clouds" - }, - { - "key": "options.renderDistance", - "english_translation": "Render Distance" - }, - { - "key": "options.resourcepack", - "english_translation": "Resource Packs..." - }, - { - "key": "options.screenEffectScale", - "english_translation": "Distortion Effects" - }, - { - "key": "options.screenEffectScale.tooltip", - "english_translation": "Strength of nausea and Nether portal screen distortion effects.\nAt lower values, the nausea effect is replaced with a green overlay." - }, - { - "key": "options.sensitivity", - "english_translation": "Sensitivity" - }, - { - "key": "options.sensitivity.max", - "english_translation": "HYPERSPEED!!!" - }, - { - "key": "options.sensitivity.min", - "english_translation": "*yawn*" - }, - { - "key": "options.showSubtitles", - "english_translation": "Show Subtitles" - }, - { - "key": "options.simulationDistance", - "english_translation": "Simulation Distance" - }, - { - "key": "options.skinCustomisation", - "english_translation": "Skin Customization..." - }, - { - "key": "options.skinCustomisation.title", - "english_translation": "Skin Customization" - }, - { - "key": "options.sounds", - "english_translation": "Music & Sounds..." - }, - { - "key": "options.sounds.title", - "english_translation": "Music & Sound Options" - }, - { - "key": "options.telemetry", - "english_translation": "Telemetry Data..." - }, - { - "key": "options.telemetry.button", - "english_translation": "Data Collection" - }, - { - "key": "options.telemetry.button.tooltip", - "english_translation": "\"%s\" includes only the required data.\n\"%s\" includes optional, as well as the required data." - }, - { - "key": "options.telemetry.state.all", - "english_translation": "All" - }, - { - "key": "options.telemetry.state.minimal", - "english_translation": "Minimal" - }, - { - "key": "options.telemetry.state.none", - "english_translation": "None" - }, - { - "key": "options.title", - "english_translation": "Options" - }, - { - "key": "options.touchscreen", - "english_translation": "Touchscreen Mode" - }, - { - "key": "options.video", - "english_translation": "Video Settings..." - }, - { - "key": "options.videoTitle", - "english_translation": "Video Settings" - }, - { - "key": "options.viewBobbing", - "english_translation": "View Bobbing" - }, - { - "key": "options.visible", - "english_translation": "Shown" - }, - { - "key": "options.vsync", - "english_translation": "VSync" - }, - { - "key": "outOfMemory.message", - "english_translation": "Minecraft has run out of memory.\n\nThis could be caused by a bug in the game or by the Java Virtual Machine not being allocated enough memory.\n\nTo prevent level corruption, the current game has quit. We've tried to free up enough memory to let you go back to the main menu and back to playing, but this may not have worked.\n\nPlease restart the game if you see this message again." - }, - { - "key": "outOfMemory.title", - "english_translation": "Out of memory!" - }, - { - "key": "pack.available.title", - "english_translation": "Available" - }, - { - "key": "pack.copyFailure", - "english_translation": "Failed to copy packs" - }, - { - "key": "pack.dropConfirm", - "english_translation": "Do you want to add the following packs to Minecraft?" - }, - { - "key": "pack.dropInfo", - "english_translation": "Drag and drop files into this window to add packs" - }, - { - "key": "pack.folderInfo", - "english_translation": "(Place pack files here)" - }, - { - "key": "pack.incompatible", - "english_translation": "Incompatible" - }, - { - "key": "pack.incompatible.confirm.new", - "english_translation": "This pack was made for a newer version of Minecraft and may not work correctly." - }, - { - "key": "pack.incompatible.confirm.old", - "english_translation": "This pack was made for an older version of Minecraft and may no longer work correctly." - }, - { - "key": "pack.incompatible.confirm.title", - "english_translation": "Are you sure you want to load this pack?" - }, - { - "key": "pack.incompatible.new", - "english_translation": "(Made for a newer version of Minecraft)" - }, - { - "key": "pack.incompatible.old", - "english_translation": "(Made for an older version of Minecraft)" - }, - { - "key": "pack.nameAndSource", - "english_translation": "%s (%s)" - }, - { - "key": "pack.openFolder", - "english_translation": "Open Pack Folder" - }, - { - "key": "pack.selected.title", - "english_translation": "Selected" - }, - { - "key": "pack.source.builtin", - "english_translation": "built-in" - }, - { - "key": "pack.source.feature", - "english_translation": "feature" - }, - { - "key": "pack.source.local", - "english_translation": "local" - }, - { - "key": "pack.source.server", - "english_translation": "server" - }, - { - "key": "pack.source.world", - "english_translation": "world" - }, - { - "key": "painting.dimensions", - "english_translation": "%sx%s" - }, - { - "key": "painting.minecraft.alban.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.alban.title", - "english_translation": "Albanian" - }, - { - "key": "painting.minecraft.aztec.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.aztec.title", - "english_translation": "de_aztec" - }, - { - "key": "painting.minecraft.aztec2.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.aztec2.title", - "english_translation": "de_aztec" - }, - { - "key": "painting.minecraft.bomb.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.bomb.title", - "english_translation": "Target Successfully Bombed" - }, - { - "key": "painting.minecraft.burning_skull.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.burning_skull.title", - "english_translation": "Skull On Fire" - }, - { - "key": "painting.minecraft.bust.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.bust.title", - "english_translation": "Bust" - }, - { - "key": "painting.minecraft.courbet.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.courbet.title", - "english_translation": "Bonjour Monsieur Courbet" - }, - { - "key": "painting.minecraft.creebet.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.creebet.title", - "english_translation": "Creebet" - }, - { - "key": "painting.minecraft.donkey_kong.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.donkey_kong.title", - "english_translation": "Kong" - }, - { - "key": "painting.minecraft.earth.author", - "english_translation": "Mojang" - }, - { - "key": "painting.minecraft.earth.title", - "english_translation": "Earth" - }, - { - "key": "painting.minecraft.fighters.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.fighters.title", - "english_translation": "Fighters" - }, - { - "key": "painting.minecraft.fire.author", - "english_translation": "Mojang" - }, - { - "key": "painting.minecraft.fire.title", - "english_translation": "Fire" - }, - { - "key": "painting.minecraft.graham.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.graham.title", - "english_translation": "Graham" - }, - { - "key": "painting.minecraft.kebab.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.kebab.title", - "english_translation": "Kebab med tre pepperoni" - }, - { - "key": "painting.minecraft.match.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.match.title", - "english_translation": "Match" - }, - { - "key": "painting.minecraft.pigscene.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.pigscene.title", - "english_translation": "Pigscene" - }, - { - "key": "painting.minecraft.plant.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.plant.title", - "english_translation": "Paradisträd" - }, - { - "key": "painting.minecraft.pointer.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.pointer.title", - "english_translation": "Pointer" - }, - { - "key": "painting.minecraft.pool.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.pool.title", - "english_translation": "The Pool" - }, - { - "key": "painting.minecraft.sea.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.sea.title", - "english_translation": "Seaside" - }, - { - "key": "painting.minecraft.skeleton.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.skeleton.title", - "english_translation": "Mortal Coil" - }, - { - "key": "painting.minecraft.skull_and_roses.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.skull_and_roses.title", - "english_translation": "Skull and Roses" - }, - { - "key": "painting.minecraft.stage.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.stage.title", - "english_translation": "The Stage Is Set" - }, - { - "key": "painting.minecraft.sunset.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.sunset.title", - "english_translation": "sunset_dense" - }, - { - "key": "painting.minecraft.void.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.void.title", - "english_translation": "The void" - }, - { - "key": "painting.minecraft.wanderer.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.wanderer.title", - "english_translation": "Wanderer" - }, - { - "key": "painting.minecraft.wasteland.author", - "english_translation": "Kristoffer Zetterstrand" - }, - { - "key": "painting.minecraft.wasteland.title", - "english_translation": "Wasteland" - }, - { - "key": "painting.minecraft.water.author", - "english_translation": "Mojang" - }, - { - "key": "painting.minecraft.water.title", - "english_translation": "Water" - }, - { - "key": "painting.minecraft.wind.author", - "english_translation": "Mojang" - }, - { - "key": "painting.minecraft.wind.title", - "english_translation": "Wind" - }, - { - "key": "painting.minecraft.wither.author", - "english_translation": "Mojang" - }, - { - "key": "painting.minecraft.wither.title", - "english_translation": "Wither" - }, - { - "key": "painting.random", - "english_translation": "Random variant" - }, - { - "key": "parsing.bool.expected", - "english_translation": "Expected boolean" - }, - { - "key": "parsing.bool.invalid", - "english_translation": "Invalid boolean, expected 'true' or 'false' but found '%s'" - }, - { - "key": "parsing.double.expected", - "english_translation": "Expected double" - }, - { - "key": "parsing.double.invalid", - "english_translation": "Invalid double '%s'" - }, - { - "key": "parsing.expected", - "english_translation": "Expected '%s'" - }, - { - "key": "parsing.float.expected", - "english_translation": "Expected float" - }, - { - "key": "parsing.float.invalid", - "english_translation": "Invalid float '%s'" - }, - { - "key": "parsing.int.expected", - "english_translation": "Expected integer" - }, - { - "key": "parsing.int.invalid", - "english_translation": "Invalid integer '%s'" - }, - { - "key": "parsing.long.expected", - "english_translation": "Expected long" - }, - { - "key": "parsing.long.invalid", - "english_translation": "Invalid long '%s'" - }, - { - "key": "parsing.quote.escape", - "english_translation": "Invalid escape sequence '\\%s' in quoted string" - }, - { - "key": "parsing.quote.expected.end", - "english_translation": "Unclosed quoted string" - }, - { - "key": "parsing.quote.expected.start", - "english_translation": "Expected quote to start a string" - }, - { - "key": "particle.notFound", - "english_translation": "Unknown particle: %s" - }, - { - "key": "permissions.requires.entity", - "english_translation": "An entity is required to run this command here" - }, - { - "key": "permissions.requires.player", - "english_translation": "A player is required to run this command here" - }, - { - "key": "potion.potency.0", - "english_translation": "" - }, - { - "key": "potion.potency.1", - "english_translation": "II" - }, - { - "key": "potion.potency.2", - "english_translation": "III" - }, - { - "key": "potion.potency.3", - "english_translation": "IV" - }, - { - "key": "potion.potency.4", - "english_translation": "V" - }, - { - "key": "potion.potency.5", - "english_translation": "VI" - }, - { - "key": "potion.whenDrank", - "english_translation": "When Applied:" - }, - { - "key": "potion.withAmplifier", - "english_translation": "%s %s" - }, - { - "key": "potion.withDuration", - "english_translation": "%s (%s)" - }, - { - "key": "predicate.unknown", - "english_translation": "Unknown predicate: %s" - }, - { - "key": "realms.missing.module.error.text", - "english_translation": "Realms could not be opened right now, please try again later" - }, - { - "key": "realms.missing.snapshot.error.text", - "english_translation": "Realms is currently not supported in snapshots" - }, - { - "key": "recipe.notFound", - "english_translation": "Unknown recipe: %s" - }, - { - "key": "recipe.toast.description", - "english_translation": "Check your recipe book" - }, - { - "key": "recipe.toast.title", - "english_translation": "New Recipes Unlocked!" - }, - { - "key": "record.nowPlaying", - "english_translation": "Now Playing: %s" - }, - { - "key": "resourcePack.broken_assets", - "english_translation": "BROKEN ASSETS DETECTED" - }, - { - "key": "resourcepack.downloading", - "english_translation": "Downloading Resource Pack" - }, - { - "key": "resourcePack.high_contrast.name", - "english_translation": "High Contrast" - }, - { - "key": "resourcePack.load_fail", - "english_translation": "Resource reload failed" - }, - { - "key": "resourcePack.programmer_art.name", - "english_translation": "Programmer Art" - }, - { - "key": "resourcepack.progress", - "english_translation": "Downloading file (%s MB)..." - }, - { - "key": "resourcepack.requesting", - "english_translation": "Making Request..." - }, - { - "key": "resourcePack.server.name", - "english_translation": "World Specific Resources" - }, - { - "key": "resourcePack.title", - "english_translation": "Select Resource Packs" - }, - { - "key": "resourcePack.vanilla.description", - "english_translation": "The default look and feel of Minecraft" - }, - { - "key": "resourcePack.vanilla.name", - "english_translation": "Default" - }, - { - "key": "screenshot.failure", - "english_translation": "Couldn't save screenshot: %s" - }, - { - "key": "screenshot.success", - "english_translation": "Saved screenshot as %s" - }, - { - "key": "selectServer.add", - "english_translation": "Add Server" - }, - { - "key": "selectServer.defaultName", - "english_translation": "Minecraft Server" - }, - { - "key": "selectServer.delete", - "english_translation": "Delete" - }, - { - "key": "selectServer.deleteButton", - "english_translation": "Delete" - }, - { - "key": "selectServer.deleteQuestion", - "english_translation": "Are you sure you want to remove this server?" - }, - { - "key": "selectServer.deleteWarning", - "english_translation": "'%s' will be lost forever! (A long time!)" - }, - { - "key": "selectServer.direct", - "english_translation": "Direct Connection" - }, - { - "key": "selectServer.edit", - "english_translation": "Edit" - }, - { - "key": "selectServer.hiddenAddress", - "english_translation": "(Hidden)" - }, - { - "key": "selectServer.refresh", - "english_translation": "Refresh" - }, - { - "key": "selectServer.select", - "english_translation": "Join Server" - }, - { - "key": "selectServer.title", - "english_translation": "Select Server" - }, - { - "key": "selectWorld.access_failure", - "english_translation": "Failed to access world" - }, - { - "key": "selectWorld.allowCommands", - "english_translation": "Allow Cheats" - }, - { - "key": "selectWorld.allowCommands.info", - "english_translation": "Commands like /gamemode, /experience" - }, - { - "key": "selectWorld.backupEraseCache", - "english_translation": "Erase Cached Data" - }, - { - "key": "selectWorld.backupJoinConfirmButton", - "english_translation": "Create Backup and Load" - }, - { - "key": "selectWorld.backupJoinSkipButton", - "english_translation": "I know what I'm doing!" - }, - { - "key": "selectWorld.backupQuestion.customized", - "english_translation": "Customized worlds are no longer supported" - }, - { - "key": "selectWorld.backupQuestion.downgrade", - "english_translation": "Downgrading a world is not supported" - }, - { - "key": "selectWorld.backupQuestion.experimental", - "english_translation": "Worlds using Experimental Settings are not supported" - }, - { - "key": "selectWorld.backupQuestion.snapshot", - "english_translation": "Do you really want to load this world?" - }, - { - "key": "selectWorld.backupWarning.customized", - "english_translation": "Unfortunately, we do not support customized worlds in this version of Minecraft. We can still load this world and keep everything the way it was, but any newly generated terrain will no longer be customized. We're sorry for the inconvenience!" - }, - { - "key": "selectWorld.backupWarning.downgrade", - "english_translation": "This world was last played in version %s; you are on version %s. Downgrading a world could cause corruption - we cannot guarantee that it will load or work. If you still want to continue, please make a backup!" - }, - { - "key": "selectWorld.backupWarning.experimental", - "english_translation": "This world uses experimental settings that could stop working at any time. We cannot guarantee it will load or work. Here be dragons!" - }, - { - "key": "selectWorld.backupWarning.snapshot", - "english_translation": "This world was last played in version %s; you are on version %s. Please make a backup in case you experience world corruptions!" - }, - { - "key": "selectWorld.bonusItems", - "english_translation": "Bonus Chest" - }, - { - "key": "selectWorld.cheats", - "english_translation": "Cheats" - }, - { - "key": "selectWorld.conversion", - "english_translation": "Must be converted!" - }, - { - "key": "selectWorld.conversion.tooltip", - "english_translation": "This world must be opened in an older version (like 1.6.4) to be safely converted" - }, - { - "key": "selectWorld.create", - "english_translation": "Create New World" - }, - { - "key": "selectWorld.createDemo", - "english_translation": "Play New Demo World" - }, - { - "key": "selectWorld.customizeType", - "english_translation": "Customize" - }, - { - "key": "selectWorld.data_read", - "english_translation": "Reading world data..." - }, - { - "key": "selectWorld.dataPacks", - "english_translation": "Data Packs" - }, - { - "key": "selectWorld.delete", - "english_translation": "Delete" - }, - { - "key": "selectWorld.delete_failure", - "english_translation": "Failed to delete world" - }, - { - "key": "selectWorld.deleteButton", - "english_translation": "Delete" - }, - { - "key": "selectWorld.deleteQuestion", - "english_translation": "Are you sure you want to delete this world?" - }, - { - "key": "selectWorld.deleteWarning", - "english_translation": "'%s' will be lost forever! (A long time!)" - }, - { - "key": "selectWorld.edit", - "english_translation": "Edit" - }, - { - "key": "selectWorld.edit.backup", - "english_translation": "Make Backup" - }, - { - "key": "selectWorld.edit.backupCreated", - "english_translation": "Backed up: %s" - }, - { - "key": "selectWorld.edit.backupFailed", - "english_translation": "Backup failed" - }, - { - "key": "selectWorld.edit.backupFolder", - "english_translation": "Open Backups Folder" - }, - { - "key": "selectWorld.edit.backupSize", - "english_translation": "size: %s MB" - }, - { - "key": "selectWorld.edit.export_worldgen_settings", - "english_translation": "Export World Generation Settings" - }, - { - "key": "selectWorld.edit.export_worldgen_settings.failure", - "english_translation": "Export failed" - }, - { - "key": "selectWorld.edit.export_worldgen_settings.success", - "english_translation": "Exported" - }, - { - "key": "selectWorld.edit.openFolder", - "english_translation": "Open World Folder" - }, - { - "key": "selectWorld.edit.optimize", - "english_translation": "Optimize World" - }, - { - "key": "selectWorld.edit.resetIcon", - "english_translation": "Reset Icon" - }, - { - "key": "selectWorld.edit.save", - "english_translation": "Save" - }, - { - "key": "selectWorld.edit.title", - "english_translation": "Edit World" - }, - { - "key": "selectWorld.enterName", - "english_translation": "World Name" - }, - { - "key": "selectWorld.enterSeed", - "english_translation": "Seed for the world generator" - }, - { - "key": "selectWorld.experimental", - "english_translation": "Experimental" - }, - { - "key": "selectWorld.experimental.details", - "english_translation": "Details" - }, - { - "key": "selectWorld.experimental.details.entry", - "english_translation": "Required experimental features: %s" - }, - { - "key": "selectWorld.experimental.details.title", - "english_translation": "Experimental feature requirements" - }, - { - "key": "selectWorld.experimental.message", - "english_translation": "Be careful!\nThis configuration requires features that are still under development. Your world might crash, break, or not work with future updates." - }, - { - "key": "selectWorld.experimental.title", - "english_translation": "Experimental Features Warning" - }, - { - "key": "selectWorld.experiments", - "english_translation": "Experiments" - }, - { - "key": "selectWorld.experiments.info", - "english_translation": "Experiments are potential new features. Be careful as things might break. Experiments can't be turned off after world creation." - }, - { - "key": "selectWorld.futureworld.error.text", - "english_translation": "Something went wrong while trying to load a world from a future version. This was a risky operation to begin with; sorry it didn't work." - }, - { - "key": "selectWorld.futureworld.error.title", - "english_translation": "An error occurred!" - }, - { - "key": "selectWorld.gameMode", - "english_translation": "Game Mode" - }, - { - "key": "selectWorld.gameMode.adventure", - "english_translation": "Adventure" - }, - { - "key": "selectWorld.gameMode.adventure.info", - "english_translation": "Same as Survival Mode, but blocks can't be added or removed." - }, - { - "key": "selectWorld.gameMode.adventure.line1", - "english_translation": "Same as Survival Mode, but blocks can't" - }, - { - "key": "selectWorld.gameMode.adventure.line2", - "english_translation": "be added or removed" - }, - { - "key": "selectWorld.gameMode.creative", - "english_translation": "Creative" - }, - { - "key": "selectWorld.gameMode.creative.info", - "english_translation": "Create, build, and explore without limits. You can fly, have endless materials, and can't be hurt by monsters." - }, - { - "key": "selectWorld.gameMode.creative.line1", - "english_translation": "Unlimited resources, free flying and" - }, - { - "key": "selectWorld.gameMode.creative.line2", - "english_translation": "destroy blocks instantly" - }, - { - "key": "selectWorld.gameMode.hardcore", - "english_translation": "Hardcore" - }, - { - "key": "selectWorld.gameMode.hardcore.info", - "english_translation": "Survival Mode locked to 'Hard' difficulty. You can't respawn if you die." - }, - { - "key": "selectWorld.gameMode.hardcore.line1", - "english_translation": "Same as Survival Mode, locked at hardest" - }, - { - "key": "selectWorld.gameMode.hardcore.line2", - "english_translation": "difficulty, and one life only" - }, - { - "key": "selectWorld.gameMode.spectator", - "english_translation": "Spectator" - }, - { - "key": "selectWorld.gameMode.spectator.info", - "english_translation": "You can look but don't touch." - }, - { - "key": "selectWorld.gameMode.spectator.line1", - "english_translation": "You can look but don't touch" - }, - { - "key": "selectWorld.gameMode.spectator.line2", - "english_translation": "" - }, - { - "key": "selectWorld.gameMode.survival", - "english_translation": "Survival" - }, - { - "key": "selectWorld.gameMode.survival.info", - "english_translation": "Explore a mysterious world where you build, collect, craft, and fight monsters." - }, - { - "key": "selectWorld.gameMode.survival.line1", - "english_translation": "Search for resources, craft, gain" - }, - { - "key": "selectWorld.gameMode.survival.line2", - "english_translation": "levels, health and hunger" - }, - { - "key": "selectWorld.gameRules", - "english_translation": "Game Rules" - }, - { - "key": "selectWorld.import_worldgen_settings", - "english_translation": "Import Settings" - }, - { - "key": "selectWorld.import_worldgen_settings.failure", - "english_translation": "Error importing settings" - }, - { - "key": "selectWorld.import_worldgen_settings.select_file", - "english_translation": "Select settings file (.json)" - }, - { - "key": "selectWorld.incompatible_series", - "english_translation": "Created by an incompatible version" - }, - { - "key": "selectWorld.load_folder_access", - "english_translation": "Unable to read or access folder where game worlds are saved!" - }, - { - "key": "selectWorld.loading_list", - "english_translation": "Loading world list" - }, - { - "key": "selectWorld.locked", - "english_translation": "Locked by another running instance of Minecraft" - }, - { - "key": "selectWorld.mapFeatures", - "english_translation": "Generate Structures" - }, - { - "key": "selectWorld.mapFeatures.info", - "english_translation": "Villages, Shipwrecks, etc." - }, - { - "key": "selectWorld.mapType", - "english_translation": "World Type" - }, - { - "key": "selectWorld.mapType.normal", - "english_translation": "Normal" - }, - { - "key": "selectWorld.moreWorldOptions", - "english_translation": "More World Options..." - }, - { - "key": "selectWorld.newWorld", - "english_translation": "New World" - }, - { - "key": "selectWorld.recreate", - "english_translation": "Re-Create" - }, - { - "key": "selectWorld.recreate.customized.text", - "english_translation": "Customized worlds are no longer supported in this version of Minecraft. We can try to recreate it with the same seed and properties, but any terrain customizations will be lost. We're sorry for the inconvenience!" - }, - { - "key": "selectWorld.recreate.customized.title", - "english_translation": "Customized worlds are no longer supported" - }, - { - "key": "selectWorld.recreate.error.text", - "english_translation": "Something went wrong while trying to recreate a world." - }, - { - "key": "selectWorld.recreate.error.title", - "english_translation": "An error occurred!" - }, - { - "key": "selectWorld.resultFolder", - "english_translation": "Will be saved in:" - }, - { - "key": "selectWorld.search", - "english_translation": "search for worlds" - }, - { - "key": "selectWorld.seedInfo", - "english_translation": "Leave blank for a random seed" - }, - { - "key": "selectWorld.select", - "english_translation": "Play Selected World" - }, - { - "key": "selectWorld.targetFolder", - "english_translation": "Save folder: %s" - }, - { - "key": "selectWorld.title", - "english_translation": "Select World" - }, - { - "key": "selectWorld.tooltip.fromNewerVersion1", - "english_translation": "World was saved in a newer version," - }, - { - "key": "selectWorld.tooltip.fromNewerVersion2", - "english_translation": "loading this world could cause problems!" - }, - { - "key": "selectWorld.tooltip.snapshot1", - "english_translation": "Don't forget to back up this world" - }, - { - "key": "selectWorld.tooltip.snapshot2", - "english_translation": "before you load it in this snapshot." - }, - { - "key": "selectWorld.unable_to_load", - "english_translation": "Unable to load worlds" - }, - { - "key": "selectWorld.version", - "english_translation": "Version:" - }, - { - "key": "selectWorld.versionJoinButton", - "english_translation": "Load Anyway" - }, - { - "key": "selectWorld.versionQuestion", - "english_translation": "Do you really want to load this world?" - }, - { - "key": "selectWorld.versionUnknown", - "english_translation": "unknown" - }, - { - "key": "selectWorld.versionWarning", - "english_translation": "This world was last played in version %s and loading it in this version could cause corruption!" - }, - { - "key": "selectWorld.warning.deprecated.question", - "english_translation": "Some features used are deprecated and will stop working in the future. Do you wish to proceed?" - }, - { - "key": "selectWorld.warning.deprecated.title", - "english_translation": "Warning! These settings are using deprecated features" - }, - { - "key": "selectWorld.warning.experimental.question", - "english_translation": "These settings are experimental and could one day stop working. Do you wish to proceed?" - }, - { - "key": "selectWorld.warning.experimental.title", - "english_translation": "Warning! These settings are using experimental features" - }, - { - "key": "selectWorld.world", - "english_translation": "World" - }, - { - "key": "sign.edit", - "english_translation": "Edit Sign Message" - }, - { - "key": "sleep.not_possible", - "english_translation": "No amount of rest can pass this night" - }, - { - "key": "sleep.players_sleeping", - "english_translation": "%s/%s players sleeping" - }, - { - "key": "sleep.skipping_night", - "english_translation": "Sleeping through this night" - }, - { - "key": "slot.unknown", - "english_translation": "Unknown slot '%s'" - }, - { - "key": "soundCategory.ambient", - "english_translation": "Ambient/Environment" - }, - { - "key": "soundCategory.block", - "english_translation": "Blocks" - }, - { - "key": "soundCategory.hostile", - "english_translation": "Hostile Creatures" - }, - { - "key": "soundCategory.master", - "english_translation": "Master Volume" - }, - { - "key": "soundCategory.music", - "english_translation": "Music" - }, - { - "key": "soundCategory.neutral", - "english_translation": "Friendly Creatures" - }, - { - "key": "soundCategory.player", - "english_translation": "Players" - }, - { - "key": "soundCategory.record", - "english_translation": "Jukebox/Note Blocks" - }, - { - "key": "soundCategory.voice", - "english_translation": "Voice/Speech" - }, - { - "key": "soundCategory.weather", - "english_translation": "Weather" - }, - { - "key": "spectatorMenu.close", - "english_translation": "Close Menu" - }, - { - "key": "spectatorMenu.next_page", - "english_translation": "Next Page" - }, - { - "key": "spectatorMenu.previous_page", - "english_translation": "Previous Page" - }, - { - "key": "spectatorMenu.root.prompt", - "english_translation": "Press a key to select a command, and again to use it." - }, - { - "key": "spectatorMenu.team_teleport", - "english_translation": "Teleport to Team Member" - }, - { - "key": "spectatorMenu.team_teleport.prompt", - "english_translation": "Select a team to teleport to" - }, - { - "key": "spectatorMenu.teleport", - "english_translation": "Teleport to Player" - }, - { - "key": "spectatorMenu.teleport.prompt", - "english_translation": "Select a player to teleport to" - }, - { - "key": "stat_type.minecraft.broken", - "english_translation": "Times Broken" - }, - { - "key": "stat_type.minecraft.crafted", - "english_translation": "Times Crafted" - }, - { - "key": "stat_type.minecraft.dropped", - "english_translation": "Dropped" - }, - { - "key": "stat_type.minecraft.killed", - "english_translation": "You killed %s %s" - }, - { - "key": "stat_type.minecraft.killed_by", - "english_translation": "%s killed you %s time(s)" - }, - { - "key": "stat_type.minecraft.killed_by.none", - "english_translation": "You have never been killed by %s" - }, - { - "key": "stat_type.minecraft.killed.none", - "english_translation": "You have never killed %s" - }, - { - "key": "stat_type.minecraft.mined", - "english_translation": "Times Mined" - }, - { - "key": "stat_type.minecraft.picked_up", - "english_translation": "Picked Up" - }, - { - "key": "stat_type.minecraft.used", - "english_translation": "Times Used" - }, - { - "key": "stat.generalButton", - "english_translation": "General" - }, - { - "key": "stat.itemsButton", - "english_translation": "Items" - }, - { - "key": "stat.minecraft.animals_bred", - "english_translation": "Animals Bred" - }, - { - "key": "stat.minecraft.aviate_one_cm", - "english_translation": "Distance by Elytra" - }, - { - "key": "stat.minecraft.bell_ring", - "english_translation": "Bells Rung" - }, - { - "key": "stat.minecraft.boat_one_cm", - "english_translation": "Distance by Boat" - }, - { - "key": "stat.minecraft.clean_armor", - "english_translation": "Armor Pieces Cleaned" - }, - { - "key": "stat.minecraft.clean_banner", - "english_translation": "Banners Cleaned" - }, - { - "key": "stat.minecraft.clean_shulker_box", - "english_translation": "Shulker Boxes Cleaned" - }, - { - "key": "stat.minecraft.climb_one_cm", - "english_translation": "Distance Climbed" - }, - { - "key": "stat.minecraft.crouch_one_cm", - "english_translation": "Distance Crouched" - }, - { - "key": "stat.minecraft.damage_absorbed", - "english_translation": "Damage Absorbed" - }, - { - "key": "stat.minecraft.damage_blocked_by_shield", - "english_translation": "Damage Blocked by Shield" - }, - { - "key": "stat.minecraft.damage_dealt", - "english_translation": "Damage Dealt" - }, - { - "key": "stat.minecraft.damage_dealt_absorbed", - "english_translation": "Damage Dealt (Absorbed)" - }, - { - "key": "stat.minecraft.damage_dealt_resisted", - "english_translation": "Damage Dealt (Resisted)" - }, - { - "key": "stat.minecraft.damage_resisted", - "english_translation": "Damage Resisted" - }, - { - "key": "stat.minecraft.damage_taken", - "english_translation": "Damage Taken" - }, - { - "key": "stat.minecraft.deaths", - "english_translation": "Number of Deaths" - }, - { - "key": "stat.minecraft.drop", - "english_translation": "Items Dropped" - }, - { - "key": "stat.minecraft.eat_cake_slice", - "english_translation": "Cake Slices Eaten" - }, - { - "key": "stat.minecraft.enchant_item", - "english_translation": "Items Enchanted" - }, - { - "key": "stat.minecraft.fall_one_cm", - "english_translation": "Distance Fallen" - }, - { - "key": "stat.minecraft.fill_cauldron", - "english_translation": "Cauldrons Filled" - }, - { - "key": "stat.minecraft.fish_caught", - "english_translation": "Fish Caught" - }, - { - "key": "stat.minecraft.fly_one_cm", - "english_translation": "Distance Flown" - }, - { - "key": "stat.minecraft.horse_one_cm", - "english_translation": "Distance by Horse" - }, - { - "key": "stat.minecraft.inspect_dispenser", - "english_translation": "Dispensers Searched" - }, - { - "key": "stat.minecraft.inspect_dropper", - "english_translation": "Droppers Searched" - }, - { - "key": "stat.minecraft.inspect_hopper", - "english_translation": "Hoppers Searched" - }, - { - "key": "stat.minecraft.interact_with_anvil", - "english_translation": "Interactions with Anvil" - }, - { - "key": "stat.minecraft.interact_with_beacon", - "english_translation": "Interactions with Beacon" - }, - { - "key": "stat.minecraft.interact_with_blast_furnace", - "english_translation": "Interactions with Blast Furnace" - }, - { - "key": "stat.minecraft.interact_with_brewingstand", - "english_translation": "Interactions with Brewing Stand" - }, - { - "key": "stat.minecraft.interact_with_campfire", - "english_translation": "Interactions with Campfire" - }, - { - "key": "stat.minecraft.interact_with_cartography_table", - "english_translation": "Interactions with Cartography Table" - }, - { - "key": "stat.minecraft.interact_with_crafting_table", - "english_translation": "Interactions with Crafting Table" - }, - { - "key": "stat.minecraft.interact_with_furnace", - "english_translation": "Interactions with Furnace" - }, - { - "key": "stat.minecraft.interact_with_grindstone", - "english_translation": "Interactions with Grindstone" - }, - { - "key": "stat.minecraft.interact_with_lectern", - "english_translation": "Interactions with Lectern" - }, - { - "key": "stat.minecraft.interact_with_loom", - "english_translation": "Interactions with Loom" - }, - { - "key": "stat.minecraft.interact_with_smithing_table", - "english_translation": "Interactions with Smithing Table" - }, - { - "key": "stat.minecraft.interact_with_smoker", - "english_translation": "Interactions with Smoker" - }, - { - "key": "stat.minecraft.interact_with_stonecutter", - "english_translation": "Interactions with Stonecutter" - }, - { - "key": "stat.minecraft.jump", - "english_translation": "Jumps" - }, - { - "key": "stat.minecraft.junk_fished", - "english_translation": "Junk Fished" - }, - { - "key": "stat.minecraft.leave_game", - "english_translation": "Games Quit" - }, - { - "key": "stat.minecraft.minecart_one_cm", - "english_translation": "Distance by Minecart" - }, - { - "key": "stat.minecraft.mob_kills", - "english_translation": "Mob Kills" - }, - { - "key": "stat.minecraft.open_barrel", - "english_translation": "Barrels Opened" - }, - { - "key": "stat.minecraft.open_chest", - "english_translation": "Chests Opened" - }, - { - "key": "stat.minecraft.open_enderchest", - "english_translation": "Ender Chests Opened" - }, - { - "key": "stat.minecraft.open_shulker_box", - "english_translation": "Shulker Boxes Opened" - }, - { - "key": "stat.minecraft.pig_one_cm", - "english_translation": "Distance by Pig" - }, - { - "key": "stat.minecraft.play_noteblock", - "english_translation": "Note Blocks Played" - }, - { - "key": "stat.minecraft.play_record", - "english_translation": "Music Discs Played" - }, - { - "key": "stat.minecraft.play_time", - "english_translation": "Time Played" - }, - { - "key": "stat.minecraft.player_kills", - "english_translation": "Player Kills" - }, - { - "key": "stat.minecraft.pot_flower", - "english_translation": "Plants Potted" - }, - { - "key": "stat.minecraft.raid_trigger", - "english_translation": "Raids Triggered" - }, - { - "key": "stat.minecraft.raid_win", - "english_translation": "Raids Won" - }, - { - "key": "stat.minecraft.ring_bell", - "english_translation": "Bells Rung" - }, - { - "key": "stat.minecraft.sleep_in_bed", - "english_translation": "Times Slept in a Bed" - }, - { - "key": "stat.minecraft.sneak_time", - "english_translation": "Sneak Time" - }, - { - "key": "stat.minecraft.sprint_one_cm", - "english_translation": "Distance Sprinted" - }, - { - "key": "stat.minecraft.strider_one_cm", - "english_translation": "Distance by Strider" - }, - { - "key": "stat.minecraft.swim_one_cm", - "english_translation": "Distance Swum" - }, - { - "key": "stat.minecraft.talked_to_villager", - "english_translation": "Talked to Villagers" - }, - { - "key": "stat.minecraft.target_hit", - "english_translation": "Targets Hit" - }, - { - "key": "stat.minecraft.time_since_death", - "english_translation": "Time Since Last Death" - }, - { - "key": "stat.minecraft.time_since_rest", - "english_translation": "Time Since Last Rest" - }, - { - "key": "stat.minecraft.total_world_time", - "english_translation": "Time with World Open" - }, - { - "key": "stat.minecraft.traded_with_villager", - "english_translation": "Traded with Villagers" - }, - { - "key": "stat.minecraft.treasure_fished", - "english_translation": "Treasure Fished" - }, - { - "key": "stat.minecraft.trigger_trapped_chest", - "english_translation": "Trapped Chests Triggered" - }, - { - "key": "stat.minecraft.tune_noteblock", - "english_translation": "Note Blocks Tuned" - }, - { - "key": "stat.minecraft.use_cauldron", - "english_translation": "Water Taken from Cauldron" - }, - { - "key": "stat.minecraft.walk_on_water_one_cm", - "english_translation": "Distance Walked on Water" - }, - { - "key": "stat.minecraft.walk_one_cm", - "english_translation": "Distance Walked" - }, - { - "key": "stat.minecraft.walk_under_water_one_cm", - "english_translation": "Distance Walked under Water" - }, - { - "key": "stat.mobsButton", - "english_translation": "Mobs" - }, - { - "key": "stats.tooltip.type.statistic", - "english_translation": "Statistic" - }, - { - "key": "structure_block.button.detect_size", - "english_translation": "DETECT" - }, - { - "key": "structure_block.button.load", - "english_translation": "LOAD" - }, - { - "key": "structure_block.button.save", - "english_translation": "SAVE" - }, - { - "key": "structure_block.custom_data", - "english_translation": "Custom Data Tag Name" - }, - { - "key": "structure_block.detect_size", - "english_translation": "Detect structure size and position:" - }, - { - "key": "structure_block.hover.corner", - "english_translation": "Corner: %s" - }, - { - "key": "structure_block.hover.data", - "english_translation": "Data: %s" - }, - { - "key": "structure_block.hover.load", - "english_translation": "Load: %s" - }, - { - "key": "structure_block.hover.save", - "english_translation": "Save: %s" - }, - { - "key": "structure_block.include_entities", - "english_translation": "Include entities:" - }, - { - "key": "structure_block.integrity", - "english_translation": "Structure Integrity and Seed" - }, - { - "key": "structure_block.integrity.integrity", - "english_translation": "Structure Integrity" - }, - { - "key": "structure_block.integrity.seed", - "english_translation": "Structure Seed" - }, - { - "key": "structure_block.invalid_structure_name", - "english_translation": "Invalid structure name '%s'" - }, - { - "key": "structure_block.load_not_found", - "english_translation": "Structure '%s' is not available" - }, - { - "key": "structure_block.load_prepare", - "english_translation": "Structure '%s' position prepared" - }, - { - "key": "structure_block.load_success", - "english_translation": "Structure loaded from '%s'" - }, - { - "key": "structure_block.mode_info.corner", - "english_translation": "Corner Mode - Placement and Size Marker" - }, - { - "key": "structure_block.mode_info.data", - "english_translation": "Data Mode - Game Logic Marker" - }, - { - "key": "structure_block.mode_info.load", - "english_translation": "Load Mode - Load from File" - }, - { - "key": "structure_block.mode_info.save", - "english_translation": "Save Mode - Write to File" - }, - { - "key": "structure_block.mode.corner", - "english_translation": "Corner" - }, - { - "key": "structure_block.mode.data", - "english_translation": "Data" - }, - { - "key": "structure_block.mode.load", - "english_translation": "Load" - }, - { - "key": "structure_block.mode.save", - "english_translation": "Save" - }, - { - "key": "structure_block.position", - "english_translation": "Relative Position" - }, - { - "key": "structure_block.position.x", - "english_translation": "relative Position x" - }, - { - "key": "structure_block.position.y", - "english_translation": "relative position y" - }, - { - "key": "structure_block.position.z", - "english_translation": "relative position z" - }, - { - "key": "structure_block.save_failure", - "english_translation": "Unable to save structure '%s'" - }, - { - "key": "structure_block.save_success", - "english_translation": "Structure saved as '%s'" - }, - { - "key": "structure_block.show_air", - "english_translation": "Show Invisible Blocks:" - }, - { - "key": "structure_block.show_boundingbox", - "english_translation": "Show Bounding Box:" - }, - { - "key": "structure_block.size", - "english_translation": "Structure Size" - }, - { - "key": "structure_block.size_failure", - "english_translation": "Unable to detect structure size. Add corners with matching structure names" - }, - { - "key": "structure_block.size_success", - "english_translation": "Size successfully detected for '%s'" + "key": "structure_block.size.z", + "english_translation": "structure size z" }, { "key": "structure_block.size.x", @@ -20912,3343 +24188,727 @@ "english_translation": "structure size y" }, { - "key": "structure_block.size.z", - "english_translation": "structure size z" + "key": "entity.minecraft.glow_item_frame", + "english_translation": "Glow Item Frame" }, { - "key": "structure_block.structure_name", - "english_translation": "Structure Name" + "key": "biome.minecraft.end_highlands", + "english_translation": "End Highlands" }, { - "key": "subtitles.ambient.cave", - "english_translation": "Eerie noise" + "key": "gamerule.doMobLoot.description", + "english_translation": "Controls resource drops from mobs, including experience orbs." }, { - "key": "subtitles.block.amethyst_block.chime", - "english_translation": "Amethyst chimes" - }, - { - "key": "subtitles.block.anvil.destroy", - "english_translation": "Anvil destroyed" - }, - { - "key": "subtitles.block.anvil.land", - "english_translation": "Anvil landed" - }, - { - "key": "subtitles.block.anvil.use", - "english_translation": "Anvil used" - }, - { - "key": "subtitles.block.barrel.close", - "english_translation": "Barrel closes" - }, - { - "key": "subtitles.block.barrel.open", - "english_translation": "Barrel opens" - }, - { - "key": "subtitles.block.beacon.activate", - "english_translation": "Beacon activates" - }, - { - "key": "subtitles.block.beacon.ambient", - "english_translation": "Beacon hums" - }, - { - "key": "subtitles.block.beacon.deactivate", - "english_translation": "Beacon deactivates" - }, - { - "key": "subtitles.block.beacon.power_select", - "english_translation": "Beacon power selected" - }, - { - "key": "subtitles.block.beehive.drip", - "english_translation": "Honey drips" - }, - { - "key": "subtitles.block.beehive.enter", - "english_translation": "Bee enters hive" - }, - { - "key": "subtitles.block.beehive.exit", - "english_translation": "Bee leaves hive" - }, - { - "key": "subtitles.block.beehive.shear", - "english_translation": "Shears scrape" - }, - { - "key": "subtitles.block.beehive.work", - "english_translation": "Bees work" - }, - { - "key": "subtitles.block.bell.resonate", - "english_translation": "Bell resonates" - }, - { - "key": "subtitles.block.bell.use", - "english_translation": "Bell rings" - }, - { - "key": "subtitles.block.big_dripleaf.tilt_down", - "english_translation": "Dripleaf tilts down" - }, - { - "key": "subtitles.block.big_dripleaf.tilt_up", - "english_translation": "Dripleaf tilts up" - }, - { - "key": "subtitles.block.blastfurnace.fire_crackle", - "english_translation": "Blast Furnace crackles" - }, - { - "key": "subtitles.block.brewing_stand.brew", - "english_translation": "Brewing Stand bubbles" - }, - { - "key": "subtitles.block.bubble_column.bubble_pop", - "english_translation": "Bubbles pop" - }, - { - "key": "subtitles.block.bubble_column.upwards_ambient", - "english_translation": "Bubbles flow" - }, - { - "key": "subtitles.block.bubble_column.upwards_inside", - "english_translation": "Bubbles woosh" - }, - { - "key": "subtitles.block.bubble_column.whirlpool_ambient", - "english_translation": "Bubbles whirl" - }, - { - "key": "subtitles.block.bubble_column.whirlpool_inside", - "english_translation": "Bubbles zoom" - }, - { - "key": "subtitles.block.button.click", - "english_translation": "Button clicks" - }, - { - "key": "subtitles.block.cake.add_candle", - "english_translation": "Cake squishes" - }, - { - "key": "subtitles.block.campfire.crackle", - "english_translation": "Campfire crackles" - }, - { - "key": "subtitles.block.candle.crackle", - "english_translation": "Candle crackles" - }, - { - "key": "subtitles.block.chest.close", - "english_translation": "Chest closes" - }, - { - "key": "subtitles.block.chest.locked", - "english_translation": "Chest locked" - }, - { - "key": "subtitles.block.chest.open", - "english_translation": "Chest opens" - }, - { - "key": "subtitles.block.chorus_flower.death", - "english_translation": "Chorus Flower withers" - }, - { - "key": "subtitles.block.chorus_flower.grow", - "english_translation": "Chorus Flower grows" - }, - { - "key": "subtitles.block.comparator.click", - "english_translation": "Comparator clicks" - }, - { - "key": "subtitles.block.composter.empty", - "english_translation": "Composter emptied" - }, - { - "key": "subtitles.block.composter.fill", - "english_translation": "Composter filled" - }, - { - "key": "subtitles.block.composter.ready", - "english_translation": "Composter composts" - }, - { - "key": "subtitles.block.conduit.activate", - "english_translation": "Conduit activates" - }, - { - "key": "subtitles.block.conduit.ambient", - "english_translation": "Conduit pulses" - }, - { - "key": "subtitles.block.conduit.attack.target", - "english_translation": "Conduit attacks" - }, - { - "key": "subtitles.block.conduit.deactivate", - "english_translation": "Conduit deactivates" - }, - { - "key": "subtitles.block.decorated_pot.shatter", - "english_translation": "Pot shatters" - }, - { - "key": "subtitles.block.dispenser.dispense", - "english_translation": "Dispensed item" - }, - { - "key": "subtitles.block.dispenser.fail", - "english_translation": "Dispenser failed" - }, - { - "key": "subtitles.block.door.toggle", - "english_translation": "Door creaks" - }, - { - "key": "subtitles.block.enchantment_table.use", - "english_translation": "Enchanting Table used" - }, - { - "key": "subtitles.block.end_portal_frame.fill", - "english_translation": "Eye of Ender attaches" - }, - { - "key": "subtitles.block.end_portal.spawn", - "english_translation": "End Portal opens" - }, - { - "key": "subtitles.block.fence_gate.toggle", - "english_translation": "Fence Gate creaks" - }, - { - "key": "subtitles.block.fire.ambient", - "english_translation": "Fire crackles" - }, - { - "key": "subtitles.block.fire.extinguish", - "english_translation": "Fire extinguished" - }, - { - "key": "subtitles.block.frogspawn.hatch", - "english_translation": "Tadpole hatches" - }, - { - "key": "subtitles.block.furnace.fire_crackle", - "english_translation": "Furnace crackles" - }, - { - "key": "subtitles.block.generic.break", - "english_translation": "Block broken" - }, - { - "key": "subtitles.block.generic.footsteps", - "english_translation": "Footsteps" - }, - { - "key": "subtitles.block.generic.hit", - "english_translation": "Block breaking" - }, - { - "key": "subtitles.block.generic.place", - "english_translation": "Block placed" - }, - { - "key": "subtitles.block.grindstone.use", - "english_translation": "Grindstone used" - }, - { - "key": "subtitles.block.growing_plant.crop", - "english_translation": "Plant cropped" - }, - { - "key": "subtitles.block.honey_block.slide", - "english_translation": "Sliding down a honey block" - }, - { - "key": "subtitles.block.iron_trapdoor.close", - "english_translation": "Trapdoor closes" - }, - { - "key": "subtitles.block.iron_trapdoor.open", - "english_translation": "Trapdoor opens" - }, - { - "key": "subtitles.block.lava.ambient", - "english_translation": "Lava pops" - }, - { - "key": "subtitles.block.lava.extinguish", - "english_translation": "Lava hisses" - }, - { - "key": "subtitles.block.lever.click", - "english_translation": "Lever clicks" - }, - { - "key": "subtitles.block.note_block.note", - "english_translation": "Note Block plays" - }, - { - "key": "subtitles.block.piston.move", - "english_translation": "Piston moves" - }, - { - "key": "subtitles.block.pointed_dripstone.drip_lava", - "english_translation": "Lava drips" - }, - { - "key": "subtitles.block.pointed_dripstone.drip_lava_into_cauldron", - "english_translation": "Lava drips into Cauldron" - }, - { - "key": "subtitles.block.pointed_dripstone.drip_water", - "english_translation": "Water drips" - }, - { - "key": "subtitles.block.pointed_dripstone.drip_water_into_cauldron", - "english_translation": "Water drips into Cauldron" - }, - { - "key": "subtitles.block.pointed_dripstone.land", - "english_translation": "Stalactite crashes down" - }, - { - "key": "subtitles.block.portal.ambient", - "english_translation": "Portal whooshes" - }, - { - "key": "subtitles.block.portal.travel", - "english_translation": "Portal noise fades" - }, - { - "key": "subtitles.block.portal.trigger", - "english_translation": "Portal noise intensifies" - }, - { - "key": "subtitles.block.pressure_plate.click", - "english_translation": "Pressure Plate clicks" - }, - { - "key": "subtitles.block.pumpkin.carve", - "english_translation": "Shears carve" - }, - { - "key": "subtitles.block.redstone_torch.burnout", - "english_translation": "Torch fizzes" - }, - { - "key": "subtitles.block.respawn_anchor.ambient", - "english_translation": "Portal whooshes" - }, - { - "key": "subtitles.block.respawn_anchor.charge", - "english_translation": "Respawn Anchor is charged" - }, - { - "key": "subtitles.block.respawn_anchor.deplete", - "english_translation": "Respawn Anchor depletes" - }, - { - "key": "subtitles.block.respawn_anchor.set_spawn", - "english_translation": "Respawn Anchor sets spawn" - }, - { - "key": "subtitles.block.sculk_catalyst.bloom", - "english_translation": "Sculk Catalyst blooms" - }, - { - "key": "subtitles.block.sculk_sensor.clicking", - "english_translation": "Sculk Sensor starts clicking" - }, - { - "key": "subtitles.block.sculk_sensor.clicking_stop", - "english_translation": "Sculk Sensor stops clicking" - }, - { - "key": "subtitles.block.sculk_shrieker.shriek", - "english_translation": "Sculk Shrieker shrieks" - }, - { - "key": "subtitles.block.sculk.charge", - "english_translation": "Sculk bubbles" - }, - { - "key": "subtitles.block.sculk.spread", - "english_translation": "Sculk spreads" - }, - { - "key": "subtitles.block.shulker_box.close", - "english_translation": "Shulker closes" - }, - { - "key": "subtitles.block.shulker_box.open", - "english_translation": "Shulker opens" - }, - { - "key": "subtitles.block.smithing_table.use", - "english_translation": "Smithing Table used" - }, - { - "key": "subtitles.block.smoker.smoke", - "english_translation": "Smoker smokes" - }, - { - "key": "subtitles.block.sweet_berry_bush.pick_berries", - "english_translation": "Berries pop" - }, - { - "key": "subtitles.block.trapdoor.toggle", - "english_translation": "Trapdoor creaks" - }, - { - "key": "subtitles.block.tripwire.attach", - "english_translation": "Tripwire attaches" - }, - { - "key": "subtitles.block.tripwire.click", - "english_translation": "Tripwire clicks" - }, - { - "key": "subtitles.block.tripwire.detach", - "english_translation": "Tripwire detaches" - }, - { - "key": "subtitles.block.water.ambient", - "english_translation": "Water flows" - }, - { - "key": "subtitles.chiseled_bookshelf.insert", - "english_translation": "Book placed" - }, - { - "key": "subtitles.chiseled_bookshelf.insert_enchanted", - "english_translation": "Enchanted book placed" - }, - { - "key": "subtitles.chiseled_bookshelf.take", - "english_translation": "Book taken" - }, - { - "key": "subtitles.chiseled_bookshelf.take_enchanted", - "english_translation": "Enchanted book taken" - }, - { - "key": "subtitles.enchant.thorns.hit", - "english_translation": "Thorns prick" - }, - { - "key": "subtitles.entity.allay.ambient_with_item", - "english_translation": "Allay seeks" - }, - { - "key": "subtitles.entity.allay.ambient_without_item", - "english_translation": "Allay yearns" - }, - { - "key": "subtitles.entity.allay.death", - "english_translation": "Allay dies" - }, - { - "key": "subtitles.entity.allay.hurt", - "english_translation": "Allay hurts" - }, - { - "key": "subtitles.entity.allay.item_given", - "english_translation": "Allay chortles" - }, - { - "key": "subtitles.entity.allay.item_taken", - "english_translation": "Allay allays" - }, - { - "key": "subtitles.entity.allay.item_thrown", - "english_translation": "Allay tosses" - }, - { - "key": "subtitles.entity.armor_stand.fall", - "english_translation": "Something fell" - }, - { - "key": "subtitles.entity.arrow.hit", - "english_translation": "Arrow hits" - }, - { - "key": "subtitles.entity.arrow.hit_player", - "english_translation": "Player hit" - }, - { - "key": "subtitles.entity.arrow.shoot", - "english_translation": "Arrow fired" - }, - { - "key": "subtitles.entity.axolotl.attack", - "english_translation": "Axolotl attacks" - }, - { - "key": "subtitles.entity.axolotl.death", - "english_translation": "Axolotl dies" - }, - { - "key": "subtitles.entity.axolotl.hurt", - "english_translation": "Axolotl hurts" - }, - { - "key": "subtitles.entity.axolotl.idle_air", - "english_translation": "Axolotl chirps" - }, - { - "key": "subtitles.entity.axolotl.idle_water", - "english_translation": "Axolotl chirps" - }, - { - "key": "subtitles.entity.axolotl.splash", - "english_translation": "Axolotl splashes" - }, - { - "key": "subtitles.entity.axolotl.swim", - "english_translation": "Axolotl swims" - }, - { - "key": "subtitles.entity.bat.ambient", - "english_translation": "Bat screeches" - }, - { - "key": "subtitles.entity.bat.death", - "english_translation": "Bat dies" - }, - { - "key": "subtitles.entity.bat.hurt", - "english_translation": "Bat hurts" - }, - { - "key": "subtitles.entity.bat.takeoff", - "english_translation": "Bat takes off" - }, - { - "key": "subtitles.entity.bee.ambient", - "english_translation": "Bee buzzes" - }, - { - "key": "subtitles.entity.bee.death", - "english_translation": "Bee dies" - }, - { - "key": "subtitles.entity.bee.hurt", - "english_translation": "Bee hurts" - }, - { - "key": "subtitles.entity.bee.loop", - "english_translation": "Bee buzzes" - }, - { - "key": "subtitles.entity.bee.loop_aggressive", - "english_translation": "Bee buzzes angrily" - }, - { - "key": "subtitles.entity.bee.pollinate", - "english_translation": "Bee buzzes happily" - }, - { - "key": "subtitles.entity.bee.sting", - "english_translation": "Bee stings" - }, - { - "key": "subtitles.entity.blaze.ambient", - "english_translation": "Blaze breathes" - }, - { - "key": "subtitles.entity.blaze.burn", - "english_translation": "Blaze crackles" - }, - { - "key": "subtitles.entity.blaze.death", - "english_translation": "Blaze dies" - }, - { - "key": "subtitles.entity.blaze.hurt", - "english_translation": "Blaze hurts" - }, - { - "key": "subtitles.entity.blaze.shoot", - "english_translation": "Blaze shoots" - }, - { - "key": "subtitles.entity.boat.paddle_land", - "english_translation": "Rowing" - }, - { - "key": "subtitles.entity.boat.paddle_water", - "english_translation": "Rowing" - }, - { - "key": "subtitles.entity.camel.ambient", - "english_translation": "Camel grunts" - }, - { - "key": "subtitles.entity.camel.dash", - "english_translation": "Camel yeets" - }, - { - "key": "subtitles.entity.camel.dash_ready", - "english_translation": "Camel recovers" - }, - { - "key": "subtitles.entity.camel.death", - "english_translation": "Camel dies" - }, - { - "key": "subtitles.entity.camel.eat", - "english_translation": "Camel eats" - }, - { - "key": "subtitles.entity.camel.hurt", - "english_translation": "Camel hurts" - }, - { - "key": "subtitles.entity.camel.saddle", - "english_translation": "Saddle equips" - }, - { - "key": "subtitles.entity.camel.sit", - "english_translation": "Camel sits down" - }, - { - "key": "subtitles.entity.camel.stand", - "english_translation": "Camel stands up" - }, - { - "key": "subtitles.entity.camel.step", - "english_translation": "Camel steps" - }, - { - "key": "subtitles.entity.camel.step_sand", - "english_translation": "Camel sands" - }, - { - "key": "subtitles.entity.cat.ambient", - "english_translation": "Cat meows" - }, - { - "key": "subtitles.entity.cat.beg_for_food", - "english_translation": "Cat begs" - }, - { - "key": "subtitles.entity.cat.death", - "english_translation": "Cat dies" - }, - { - "key": "subtitles.entity.cat.eat", - "english_translation": "Cat eats" - }, - { - "key": "subtitles.entity.cat.hiss", - "english_translation": "Cat hisses" - }, - { - "key": "subtitles.entity.cat.hurt", - "english_translation": "Cat hurts" - }, - { - "key": "subtitles.entity.cat.purr", - "english_translation": "Cat purrs" - }, - { - "key": "subtitles.entity.chicken.ambient", - "english_translation": "Chicken clucks" - }, - { - "key": "subtitles.entity.chicken.death", - "english_translation": "Chicken dies" - }, - { - "key": "subtitles.entity.chicken.egg", - "english_translation": "Chicken plops" - }, - { - "key": "subtitles.entity.chicken.hurt", - "english_translation": "Chicken hurts" - }, - { - "key": "subtitles.entity.cod.death", - "english_translation": "Cod dies" - }, - { - "key": "subtitles.entity.cod.flop", - "english_translation": "Cod flops" - }, - { - "key": "subtitles.entity.cod.hurt", - "english_translation": "Cod hurts" - }, - { - "key": "subtitles.entity.cow.ambient", - "english_translation": "Cow moos" - }, - { - "key": "subtitles.entity.cow.death", - "english_translation": "Cow dies" - }, - { - "key": "subtitles.entity.cow.hurt", - "english_translation": "Cow hurts" - }, - { - "key": "subtitles.entity.cow.milk", - "english_translation": "Cow gets milked" - }, - { - "key": "subtitles.entity.creeper.death", - "english_translation": "Creeper dies" - }, - { - "key": "subtitles.entity.creeper.hurt", - "english_translation": "Creeper hurts" - }, - { - "key": "subtitles.entity.creeper.primed", - "english_translation": "Creeper hisses" - }, - { - "key": "subtitles.entity.dolphin.ambient", - "english_translation": "Dolphin chirps" - }, - { - "key": "subtitles.entity.dolphin.ambient_water", - "english_translation": "Dolphin whistles" - }, - { - "key": "subtitles.entity.dolphin.attack", - "english_translation": "Dolphin attacks" - }, - { - "key": "subtitles.entity.dolphin.death", - "english_translation": "Dolphin dies" - }, - { - "key": "subtitles.entity.dolphin.eat", - "english_translation": "Dolphin eats" - }, - { - "key": "subtitles.entity.dolphin.hurt", - "english_translation": "Dolphin hurts" - }, - { - "key": "subtitles.entity.dolphin.jump", - "english_translation": "Dolphin jumps" - }, - { - "key": "subtitles.entity.dolphin.play", - "english_translation": "Dolphin plays" - }, - { - "key": "subtitles.entity.dolphin.splash", - "english_translation": "Dolphin splashes" - }, - { - "key": "subtitles.entity.dolphin.swim", - "english_translation": "Dolphin swims" - }, - { - "key": "subtitles.entity.donkey.ambient", - "english_translation": "Donkey hee-haws" - }, - { - "key": "subtitles.entity.donkey.angry", - "english_translation": "Donkey neighs" - }, - { - "key": "subtitles.entity.donkey.chest", - "english_translation": "Donkey Chest equips" - }, - { - "key": "subtitles.entity.donkey.death", - "english_translation": "Donkey dies" - }, - { - "key": "subtitles.entity.donkey.eat", - "english_translation": "Donkey eats" - }, - { - "key": "subtitles.entity.donkey.hurt", - "english_translation": "Donkey hurts" - }, - { - "key": "subtitles.entity.drowned.ambient", - "english_translation": "Drowned gurgles" - }, - { - "key": "subtitles.entity.drowned.ambient_water", - "english_translation": "Drowned gurgles" - }, - { - "key": "subtitles.entity.drowned.death", - "english_translation": "Drowned dies" - }, - { - "key": "subtitles.entity.drowned.hurt", - "english_translation": "Drowned hurts" - }, - { - "key": "subtitles.entity.drowned.shoot", - "english_translation": "Drowned throws Trident" - }, - { - "key": "subtitles.entity.drowned.step", - "english_translation": "Drowned steps" - }, - { - "key": "subtitles.entity.drowned.swim", - "english_translation": "Drowned swims" - }, - { - "key": "subtitles.entity.egg.throw", - "english_translation": "Egg flies" - }, - { - "key": "subtitles.entity.elder_guardian.ambient", - "english_translation": "Elder Guardian moans" - }, - { - "key": "subtitles.entity.elder_guardian.ambient_land", - "english_translation": "Elder Guardian flaps" - }, - { - "key": "subtitles.entity.elder_guardian.curse", - "english_translation": "Elder Guardian curses" - }, - { - "key": "subtitles.entity.elder_guardian.death", - "english_translation": "Elder Guardian dies" - }, - { - "key": "subtitles.entity.elder_guardian.flop", - "english_translation": "Elder Guardian flops" - }, - { - "key": "subtitles.entity.elder_guardian.hurt", - "english_translation": "Elder Guardian hurts" - }, - { - "key": "subtitles.entity.ender_dragon.ambient", - "english_translation": "Dragon roars" - }, - { - "key": "subtitles.entity.ender_dragon.death", - "english_translation": "Dragon dies" - }, - { - "key": "subtitles.entity.ender_dragon.flap", - "english_translation": "Dragon flaps" - }, - { - "key": "subtitles.entity.ender_dragon.growl", - "english_translation": "Dragon growls" - }, - { - "key": "subtitles.entity.ender_dragon.hurt", - "english_translation": "Dragon hurts" - }, - { - "key": "subtitles.entity.ender_dragon.shoot", - "english_translation": "Dragon shoots" - }, - { - "key": "subtitles.entity.ender_eye.death", - "english_translation": "Eye of Ender falls" - }, - { - "key": "subtitles.entity.ender_eye.launch", - "english_translation": "Eye of Ender shoots" - }, - { - "key": "subtitles.entity.ender_pearl.throw", - "english_translation": "Ender Pearl flies" - }, - { - "key": "subtitles.entity.enderman.ambient", - "english_translation": "Enderman vwoops" - }, - { - "key": "subtitles.entity.enderman.death", - "english_translation": "Enderman dies" - }, - { - "key": "subtitles.entity.enderman.hurt", - "english_translation": "Enderman hurts" - }, - { - "key": "subtitles.entity.enderman.scream", - "english_translation": "Enderman screams" - }, - { - "key": "subtitles.entity.enderman.stare", - "english_translation": "Enderman cries out" - }, - { - "key": "subtitles.entity.enderman.teleport", - "english_translation": "Enderman teleports" - }, - { - "key": "subtitles.entity.endermite.ambient", - "english_translation": "Endermite scuttles" - }, - { - "key": "subtitles.entity.endermite.death", - "english_translation": "Endermite dies" - }, - { - "key": "subtitles.entity.endermite.hurt", - "english_translation": "Endermite hurts" - }, - { - "key": "subtitles.entity.evoker_fangs.attack", - "english_translation": "Fangs snap" - }, - { - "key": "subtitles.entity.evoker.ambient", - "english_translation": "Evoker murmurs" - }, - { - "key": "subtitles.entity.evoker.cast_spell", - "english_translation": "Evoker casts spell" - }, - { - "key": "subtitles.entity.evoker.celebrate", - "english_translation": "Evoker cheers" - }, - { - "key": "subtitles.entity.evoker.death", - "english_translation": "Evoker dies" - }, - { - "key": "subtitles.entity.evoker.hurt", - "english_translation": "Evoker hurts" - }, - { - "key": "subtitles.entity.evoker.prepare_attack", - "english_translation": "Evoker prepares attack" - }, - { - "key": "subtitles.entity.evoker.prepare_summon", - "english_translation": "Evoker prepares summoning" - }, - { - "key": "subtitles.entity.evoker.prepare_wololo", - "english_translation": "Evoker prepares charming" - }, - { - "key": "subtitles.entity.experience_orb.pickup", - "english_translation": "Experience gained" - }, - { - "key": "subtitles.entity.firework_rocket.blast", - "english_translation": "Firework blasts" - }, - { - "key": "subtitles.entity.firework_rocket.launch", - "english_translation": "Firework launches" - }, - { - "key": "subtitles.entity.firework_rocket.twinkle", - "english_translation": "Firework twinkles" - }, - { - "key": "subtitles.entity.fishing_bobber.retrieve", - "english_translation": "Bobber retrieved" - }, - { - "key": "subtitles.entity.fishing_bobber.splash", - "english_translation": "Fishing Bobber splashes" - }, - { - "key": "subtitles.entity.fishing_bobber.throw", - "english_translation": "Bobber thrown" - }, - { - "key": "subtitles.entity.fox.aggro", - "english_translation": "Fox angers" - }, - { - "key": "subtitles.entity.fox.ambient", - "english_translation": "Fox squeaks" - }, - { - "key": "subtitles.entity.fox.bite", - "english_translation": "Fox bites" - }, - { - "key": "subtitles.entity.fox.death", - "english_translation": "Fox dies" - }, - { - "key": "subtitles.entity.fox.eat", - "english_translation": "Fox eats" - }, - { - "key": "subtitles.entity.fox.hurt", - "english_translation": "Fox hurts" - }, - { - "key": "subtitles.entity.fox.screech", - "english_translation": "Fox screeches" - }, - { - "key": "subtitles.entity.fox.sleep", - "english_translation": "Fox snores" - }, - { - "key": "subtitles.entity.fox.sniff", - "english_translation": "Fox sniffs" - }, - { - "key": "subtitles.entity.fox.spit", - "english_translation": "Fox spits" - }, - { - "key": "subtitles.entity.fox.teleport", - "english_translation": "Fox teleports" - }, - { - "key": "subtitles.entity.frog.ambient", - "english_translation": "Frog croaks" - }, - { - "key": "subtitles.entity.frog.death", - "english_translation": "Frog dies" - }, - { - "key": "subtitles.entity.frog.eat", - "english_translation": "Frog eats" - }, - { - "key": "subtitles.entity.frog.hurt", - "english_translation": "Frog hurts" - }, - { - "key": "subtitles.entity.frog.lay_spawn", - "english_translation": "Frog lays spawn" - }, - { - "key": "subtitles.entity.frog.long_jump", - "english_translation": "Frog jumps" - }, - { - "key": "subtitles.entity.generic.big_fall", - "english_translation": "Something fell" - }, - { - "key": "subtitles.entity.generic.burn", - "english_translation": "Burning" - }, - { - "key": "subtitles.entity.generic.death", - "english_translation": "Dying" - }, - { - "key": "subtitles.entity.generic.drink", - "english_translation": "Sipping" - }, - { - "key": "subtitles.entity.generic.eat", - "english_translation": "Eating" - }, - { - "key": "subtitles.entity.generic.explode", - "english_translation": "Explosion" - }, - { - "key": "subtitles.entity.generic.extinguish_fire", - "english_translation": "Fire extinguishes" - }, - { - "key": "subtitles.entity.generic.hurt", - "english_translation": "Something hurts" - }, - { - "key": "subtitles.entity.generic.small_fall", - "english_translation": "Something trips" - }, - { - "key": "subtitles.entity.generic.splash", - "english_translation": "Splashing" - }, - { - "key": "subtitles.entity.generic.swim", - "english_translation": "Swimming" - }, - { - "key": "subtitles.entity.ghast.ambient", - "english_translation": "Ghast cries" - }, - { - "key": "subtitles.entity.ghast.death", - "english_translation": "Ghast dies" - }, - { - "key": "subtitles.entity.ghast.hurt", - "english_translation": "Ghast hurts" - }, - { - "key": "subtitles.entity.ghast.shoot", - "english_translation": "Ghast shoots" - }, - { - "key": "subtitles.entity.glow_item_frame.add_item", - "english_translation": "Glow Item Frame fills" - }, - { - "key": "subtitles.entity.glow_item_frame.break", - "english_translation": "Glow Item Frame breaks" - }, - { - "key": "subtitles.entity.glow_item_frame.place", - "english_translation": "Glow Item Frame placed" - }, - { - "key": "subtitles.entity.glow_item_frame.remove_item", - "english_translation": "Glow Item Frame empties" - }, - { - "key": "subtitles.entity.glow_item_frame.rotate_item", - "english_translation": "Glow Item Frame clicks" - }, - { - "key": "subtitles.entity.glow_squid.ambient", - "english_translation": "Glow Squid swims" - }, - { - "key": "subtitles.entity.glow_squid.death", - "english_translation": "Glow Squid dies" - }, - { - "key": "subtitles.entity.glow_squid.hurt", - "english_translation": "Glow Squid hurts" - }, - { - "key": "subtitles.entity.glow_squid.squirt", - "english_translation": "Glow Squid shoots ink" - }, - { - "key": "subtitles.entity.goat.ambient", - "english_translation": "Goat bleats" - }, - { - "key": "subtitles.entity.goat.death", - "english_translation": "Goat dies" - }, - { - "key": "subtitles.entity.goat.eat", - "english_translation": "Goat eats" - }, - { - "key": "subtitles.entity.goat.horn_break", - "english_translation": "Goat Horn breaks off" - }, - { - "key": "subtitles.entity.goat.hurt", - "english_translation": "Goat hurts" - }, - { - "key": "subtitles.entity.goat.long_jump", - "english_translation": "Goat leaps" - }, - { - "key": "subtitles.entity.goat.milk", - "english_translation": "Goat gets milked" - }, - { - "key": "subtitles.entity.goat.prepare_ram", - "english_translation": "Goat stomps" - }, - { - "key": "subtitles.entity.goat.ram_impact", - "english_translation": "Goat rams" - }, - { - "key": "subtitles.entity.goat.screaming.ambient", - "english_translation": "Goat bellows" - }, - { - "key": "subtitles.entity.goat.step", - "english_translation": "Goat steps" - }, - { - "key": "subtitles.entity.guardian.ambient", - "english_translation": "Guardian moans" - }, - { - "key": "subtitles.entity.guardian.ambient_land", - "english_translation": "Guardian flaps" - }, - { - "key": "subtitles.entity.guardian.attack", - "english_translation": "Guardian shoots" - }, - { - "key": "subtitles.entity.guardian.death", - "english_translation": "Guardian dies" - }, - { - "key": "subtitles.entity.guardian.flop", - "english_translation": "Guardian flops" - }, - { - "key": "subtitles.entity.guardian.hurt", - "english_translation": "Guardian hurts" - }, - { - "key": "subtitles.entity.hoglin.ambient", - "english_translation": "Hoglin growls" - }, - { - "key": "subtitles.entity.hoglin.angry", - "english_translation": "Hoglin growls angrily" - }, - { - "key": "subtitles.entity.hoglin.attack", - "english_translation": "Hoglin attacks" - }, - { - "key": "subtitles.entity.hoglin.converted_to_zombified", - "english_translation": "Hoglin converts to Zoglin" - }, - { - "key": "subtitles.entity.hoglin.death", - "english_translation": "Hoglin dies" - }, - { - "key": "subtitles.entity.hoglin.hurt", - "english_translation": "Hoglin hurts" - }, - { - "key": "subtitles.entity.hoglin.retreat", - "english_translation": "Hoglin retreats" - }, - { - "key": "subtitles.entity.hoglin.step", - "english_translation": "Hoglin steps" - }, - { - "key": "subtitles.entity.horse.ambient", - "english_translation": "Horse neighs" - }, - { - "key": "subtitles.entity.horse.angry", - "english_translation": "Horse neighs" - }, - { - "key": "subtitles.entity.horse.armor", - "english_translation": "Horse armor equips" - }, - { - "key": "subtitles.entity.horse.breathe", - "english_translation": "Horse breathes" - }, - { - "key": "subtitles.entity.horse.death", - "english_translation": "Horse dies" - }, - { - "key": "subtitles.entity.horse.eat", - "english_translation": "Horse eats" - }, - { - "key": "subtitles.entity.horse.gallop", - "english_translation": "Horse gallops" - }, - { - "key": "subtitles.entity.horse.hurt", - "english_translation": "Horse hurts" - }, - { - "key": "subtitles.entity.horse.jump", - "english_translation": "Horse jumps" - }, - { - "key": "subtitles.entity.horse.saddle", - "english_translation": "Saddle equips" - }, - { - "key": "subtitles.entity.husk.ambient", - "english_translation": "Husk groans" - }, - { - "key": "subtitles.entity.husk.converted_to_zombie", - "english_translation": "Husk converts to Zombie" - }, - { - "key": "subtitles.entity.husk.death", - "english_translation": "Husk dies" - }, - { - "key": "subtitles.entity.husk.hurt", - "english_translation": "Husk hurts" - }, - { - "key": "subtitles.entity.illusioner.ambient", - "english_translation": "Illusioner murmurs" - }, - { - "key": "subtitles.entity.illusioner.cast_spell", - "english_translation": "Illusioner casts spell" - }, - { - "key": "subtitles.entity.illusioner.death", - "english_translation": "Illusioner dies" - }, - { - "key": "subtitles.entity.illusioner.hurt", - "english_translation": "Illusioner hurts" - }, - { - "key": "subtitles.entity.illusioner.mirror_move", - "english_translation": "Illusioner displaces" - }, - { - "key": "subtitles.entity.illusioner.prepare_blindness", - "english_translation": "Illusioner prepares blindness" - }, - { - "key": "subtitles.entity.illusioner.prepare_mirror", - "english_translation": "Illusioner prepares mirror image" - }, - { - "key": "subtitles.entity.iron_golem.attack", - "english_translation": "Iron Golem attacks" - }, - { - "key": "subtitles.entity.iron_golem.damage", - "english_translation": "Iron Golem breaks" - }, - { - "key": "subtitles.entity.iron_golem.death", - "english_translation": "Iron Golem dies" - }, - { - "key": "subtitles.entity.iron_golem.hurt", - "english_translation": "Iron Golem hurts" - }, - { - "key": "subtitles.entity.iron_golem.repair", - "english_translation": "Iron Golem repaired" - }, - { - "key": "subtitles.entity.item_frame.add_item", - "english_translation": "Item Frame fills" - }, - { - "key": "subtitles.entity.item_frame.break", - "english_translation": "Item Frame breaks" - }, - { - "key": "subtitles.entity.item_frame.place", - "english_translation": "Item Frame placed" - }, - { - "key": "subtitles.entity.item_frame.remove_item", - "english_translation": "Item Frame empties" - }, - { - "key": "subtitles.entity.item_frame.rotate_item", - "english_translation": "Item Frame clicks" - }, - { - "key": "subtitles.entity.item.break", - "english_translation": "Item breaks" - }, - { - "key": "subtitles.entity.item.pickup", - "english_translation": "Item plops" - }, - { - "key": "subtitles.entity.leash_knot.break", - "english_translation": "Leash knot breaks" - }, - { - "key": "subtitles.entity.leash_knot.place", - "english_translation": "Leash knot tied" - }, - { - "key": "subtitles.entity.lightning_bolt.impact", - "english_translation": "Lightning strikes" - }, - { - "key": "subtitles.entity.lightning_bolt.thunder", - "english_translation": "Thunder roars" - }, - { - "key": "subtitles.entity.llama.ambient", - "english_translation": "Llama bleats" - }, - { - "key": "subtitles.entity.llama.angry", - "english_translation": "Llama bleats angrily" - }, - { - "key": "subtitles.entity.llama.chest", - "english_translation": "Llama Chest equips" - }, - { - "key": "subtitles.entity.llama.death", - "english_translation": "Llama dies" - }, - { - "key": "subtitles.entity.llama.eat", - "english_translation": "Llama eats" - }, - { - "key": "subtitles.entity.llama.hurt", - "english_translation": "Llama hurts" - }, - { - "key": "subtitles.entity.llama.spit", - "english_translation": "Llama spits" - }, - { - "key": "subtitles.entity.llama.step", - "english_translation": "Llama steps" - }, - { - "key": "subtitles.entity.llama.swag", - "english_translation": "Llama is decorated" - }, - { - "key": "subtitles.entity.magma_cube.death", - "english_translation": "Magma Cube dies" - }, - { - "key": "subtitles.entity.magma_cube.hurt", - "english_translation": "Magma Cube hurts" - }, - { - "key": "subtitles.entity.magma_cube.squish", - "english_translation": "Magma Cube squishes" - }, - { - "key": "subtitles.entity.minecart.riding", - "english_translation": "Minecart rolls" - }, - { - "key": "subtitles.entity.mooshroom.convert", - "english_translation": "Mooshroom transforms" - }, - { - "key": "subtitles.entity.mooshroom.eat", - "english_translation": "Mooshroom eats" - }, - { - "key": "subtitles.entity.mooshroom.milk", - "english_translation": "Mooshroom gets milked" - }, - { - "key": "subtitles.entity.mooshroom.suspicious_milk", - "english_translation": "Mooshroom gets milked suspiciously" - }, - { - "key": "subtitles.entity.mule.ambient", - "english_translation": "Mule hee-haws" - }, - { - "key": "subtitles.entity.mule.angry", - "english_translation": "Mule neighs" - }, - { - "key": "subtitles.entity.mule.chest", - "english_translation": "Mule Chest equips" - }, - { - "key": "subtitles.entity.mule.death", - "english_translation": "Mule dies" - }, - { - "key": "subtitles.entity.mule.eat", - "english_translation": "Mule eats" - }, - { - "key": "subtitles.entity.mule.hurt", - "english_translation": "Mule hurts" - }, - { - "key": "subtitles.entity.painting.break", - "english_translation": "Painting breaks" - }, - { - "key": "subtitles.entity.painting.place", - "english_translation": "Painting placed" - }, - { - "key": "subtitles.entity.panda.aggressive_ambient", - "english_translation": "Panda huffs" - }, - { - "key": "subtitles.entity.panda.ambient", - "english_translation": "Panda pants" - }, - { - "key": "subtitles.entity.panda.bite", - "english_translation": "Panda bites" - }, - { - "key": "subtitles.entity.panda.cant_breed", - "english_translation": "Panda bleats" - }, - { - "key": "subtitles.entity.panda.death", - "english_translation": "Panda dies" - }, - { - "key": "subtitles.entity.panda.eat", - "english_translation": "Panda eats" - }, - { - "key": "subtitles.entity.panda.hurt", - "english_translation": "Panda hurts" - }, - { - "key": "subtitles.entity.panda.pre_sneeze", - "english_translation": "Panda's nose tickles" - }, - { - "key": "subtitles.entity.panda.sneeze", - "english_translation": "Panda sneezes" - }, - { - "key": "subtitles.entity.panda.step", - "english_translation": "Panda steps" - }, - { - "key": "subtitles.entity.panda.worried_ambient", - "english_translation": "Panda whimpers" - }, - { - "key": "subtitles.entity.parrot.ambient", - "english_translation": "Parrot talks" - }, - { - "key": "subtitles.entity.parrot.death", - "english_translation": "Parrot dies" - }, - { - "key": "subtitles.entity.parrot.eats", - "english_translation": "Parrot eats" - }, - { - "key": "subtitles.entity.parrot.fly", - "english_translation": "Parrot flutters" - }, - { - "key": "subtitles.entity.parrot.hurts", - "english_translation": "Parrot hurts" - }, - { - "key": "subtitles.entity.parrot.imitate.blaze", - "english_translation": "Parrot breathes" - }, - { - "key": "subtitles.entity.parrot.imitate.creeper", - "english_translation": "Parrot hisses" - }, - { - "key": "subtitles.entity.parrot.imitate.drowned", - "english_translation": "Parrot gurgles" - }, - { - "key": "subtitles.entity.parrot.imitate.elder_guardian", - "english_translation": "Parrot moans" - }, - { - "key": "subtitles.entity.parrot.imitate.ender_dragon", - "english_translation": "Parrot roars" - }, - { - "key": "subtitles.entity.parrot.imitate.endermite", - "english_translation": "Parrot scuttles" - }, - { - "key": "subtitles.entity.parrot.imitate.evoker", - "english_translation": "Parrot murmurs" - }, - { - "key": "subtitles.entity.parrot.imitate.ghast", - "english_translation": "Parrot cries" - }, - { - "key": "subtitles.entity.parrot.imitate.guardian", - "english_translation": "Parrot moans" - }, - { - "key": "subtitles.entity.parrot.imitate.hoglin", - "english_translation": "Parrot growls" - }, - { - "key": "subtitles.entity.parrot.imitate.husk", - "english_translation": "Parrot groans" - }, - { - "key": "subtitles.entity.parrot.imitate.illusioner", - "english_translation": "Parrot murmurs" - }, - { - "key": "subtitles.entity.parrot.imitate.magma_cube", - "english_translation": "Parrot squishes" - }, - { - "key": "subtitles.entity.parrot.imitate.phantom", - "english_translation": "Parrot screeches" - }, - { - "key": "subtitles.entity.parrot.imitate.piglin", - "english_translation": "Parrot snorts" - }, - { - "key": "subtitles.entity.parrot.imitate.piglin_brute", - "english_translation": "Parrot snorts" - }, - { - "key": "subtitles.entity.parrot.imitate.pillager", - "english_translation": "Parrot murmurs" - }, - { - "key": "subtitles.entity.parrot.imitate.ravager", - "english_translation": "Parrot grunts" - }, - { - "key": "subtitles.entity.parrot.imitate.shulker", - "english_translation": "Parrot lurks" - }, - { - "key": "subtitles.entity.parrot.imitate.silverfish", - "english_translation": "Parrot hisses" - }, - { - "key": "subtitles.entity.parrot.imitate.skeleton", - "english_translation": "Parrot rattles" - }, - { - "key": "subtitles.entity.parrot.imitate.slime", - "english_translation": "Parrot squishes" - }, - { - "key": "subtitles.entity.parrot.imitate.spider", - "english_translation": "Parrot hisses" - }, - { - "key": "subtitles.entity.parrot.imitate.stray", - "english_translation": "Parrot rattles" - }, - { - "key": "subtitles.entity.parrot.imitate.vex", - "english_translation": "Parrot vexes" - }, - { - "key": "subtitles.entity.parrot.imitate.vindicator", - "english_translation": "Parrot mutters" - }, - { - "key": "subtitles.entity.parrot.imitate.warden", - "english_translation": "Parrot whines" - }, - { - "key": "subtitles.entity.parrot.imitate.witch", - "english_translation": "Parrot giggles" - }, - { - "key": "subtitles.entity.parrot.imitate.wither", - "english_translation": "Parrot angers" - }, - { - "key": "subtitles.entity.parrot.imitate.wither_skeleton", - "english_translation": "Parrot rattles" - }, - { - "key": "subtitles.entity.parrot.imitate.zoglin", - "english_translation": "Parrot growls" - }, - { - "key": "subtitles.entity.parrot.imitate.zombie", - "english_translation": "Parrot groans" - }, - { - "key": "subtitles.entity.parrot.imitate.zombie_villager", - "english_translation": "Parrot groans" - }, - { - "key": "subtitles.entity.phantom.ambient", - "english_translation": "Phantom screeches" - }, - { - "key": "subtitles.entity.phantom.bite", - "english_translation": "Phantom bites" - }, - { - "key": "subtitles.entity.phantom.death", - "english_translation": "Phantom dies" - }, - { - "key": "subtitles.entity.phantom.flap", - "english_translation": "Phantom flaps" - }, - { - "key": "subtitles.entity.phantom.hurt", - "english_translation": "Phantom hurts" - }, - { - "key": "subtitles.entity.phantom.swoop", - "english_translation": "Phantom swoops" - }, - { - "key": "subtitles.entity.pig.ambient", - "english_translation": "Pig oinks" - }, - { - "key": "subtitles.entity.pig.death", - "english_translation": "Pig dies" - }, - { - "key": "subtitles.entity.pig.hurt", - "english_translation": "Pig hurts" - }, - { - "key": "subtitles.entity.pig.saddle", - "english_translation": "Saddle equips" - }, - { - "key": "subtitles.entity.piglin_brute.ambient", - "english_translation": "Piglin Brute snorts" - }, - { - "key": "subtitles.entity.piglin_brute.angry", - "english_translation": "Piglin Brute snorts angrily" - }, - { - "key": "subtitles.entity.piglin_brute.converted_to_zombified", - "english_translation": "Piglin Brute converts to Zombified Piglin" - }, - { - "key": "subtitles.entity.piglin_brute.death", - "english_translation": "Piglin Brute dies" - }, - { - "key": "subtitles.entity.piglin_brute.hurt", - "english_translation": "Piglin Brute hurts" - }, - { - "key": "subtitles.entity.piglin_brute.step", - "english_translation": "Piglin Brute steps" - }, - { - "key": "subtitles.entity.piglin.admiring_item", - "english_translation": "Piglin admires item" - }, - { - "key": "subtitles.entity.piglin.ambient", - "english_translation": "Piglin snorts" - }, - { - "key": "subtitles.entity.piglin.angry", - "english_translation": "Piglin snorts angrily" - }, - { - "key": "subtitles.entity.piglin.celebrate", - "english_translation": "Piglin celebrates" - }, - { - "key": "subtitles.entity.piglin.converted_to_zombified", - "english_translation": "Piglin converts to Zombified Piglin" - }, - { - "key": "subtitles.entity.piglin.death", - "english_translation": "Piglin dies" - }, - { - "key": "subtitles.entity.piglin.hurt", - "english_translation": "Piglin hurts" - }, - { - "key": "subtitles.entity.piglin.jealous", - "english_translation": "Piglin snorts enviously" - }, - { - "key": "subtitles.entity.piglin.retreat", - "english_translation": "Piglin retreats" - }, - { - "key": "subtitles.entity.piglin.step", - "english_translation": "Piglin steps" - }, - { - "key": "subtitles.entity.pillager.ambient", - "english_translation": "Pillager murmurs" - }, - { - "key": "subtitles.entity.pillager.celebrate", - "english_translation": "Pillager cheers" - }, - { - "key": "subtitles.entity.pillager.death", - "english_translation": "Pillager dies" - }, - { - "key": "subtitles.entity.pillager.hurt", - "english_translation": "Pillager hurts" - }, - { - "key": "subtitles.entity.player.attack.crit", - "english_translation": "Critical attack" - }, - { - "key": "subtitles.entity.player.attack.knockback", - "english_translation": "Knockback attack" - }, - { - "key": "subtitles.entity.player.attack.strong", - "english_translation": "Strong attack" - }, - { - "key": "subtitles.entity.player.attack.sweep", - "english_translation": "Sweeping attack" - }, - { - "key": "subtitles.entity.player.attack.weak", - "english_translation": "Weak attack" - }, - { - "key": "subtitles.entity.player.burp", - "english_translation": "Burp" - }, - { - "key": "subtitles.entity.player.death", - "english_translation": "Player dies" - }, - { - "key": "subtitles.entity.player.freeze_hurt", - "english_translation": "Player freezes" - }, - { - "key": "subtitles.entity.player.hurt", - "english_translation": "Player hurts" - }, - { - "key": "subtitles.entity.player.hurt_drown", - "english_translation": "Player drowning" - }, - { - "key": "subtitles.entity.player.hurt_on_fire", - "english_translation": "Player burns" - }, - { - "key": "subtitles.entity.player.levelup", - "english_translation": "Player dings" - }, - { - "key": "subtitles.entity.polar_bear.ambient", - "english_translation": "Polar Bear groans" - }, - { - "key": "subtitles.entity.polar_bear.ambient_baby", - "english_translation": "Polar Bear hums" - }, - { - "key": "subtitles.entity.polar_bear.death", - "english_translation": "Polar Bear dies" - }, - { - "key": "subtitles.entity.polar_bear.hurt", - "english_translation": "Polar Bear hurts" - }, - { - "key": "subtitles.entity.polar_bear.warning", - "english_translation": "Polar Bear roars" - }, - { - "key": "subtitles.entity.potion.splash", - "english_translation": "Bottle smashes" - }, - { - "key": "subtitles.entity.potion.throw", - "english_translation": "Bottle thrown" - }, - { - "key": "subtitles.entity.puffer_fish.blow_out", - "english_translation": "Pufferfish deflates" - }, - { - "key": "subtitles.entity.puffer_fish.blow_up", - "english_translation": "Pufferfish inflates" - }, - { - "key": "subtitles.entity.puffer_fish.death", - "english_translation": "Pufferfish dies" - }, - { - "key": "subtitles.entity.puffer_fish.flop", - "english_translation": "Pufferfish flops" - }, - { - "key": "subtitles.entity.puffer_fish.hurt", - "english_translation": "Pufferfish hurts" - }, - { - "key": "subtitles.entity.puffer_fish.sting", - "english_translation": "Pufferfish stings" - }, - { - "key": "subtitles.entity.rabbit.ambient", - "english_translation": "Rabbit squeaks" - }, - { - "key": "subtitles.entity.rabbit.attack", - "english_translation": "Rabbit attacks" - }, - { - "key": "subtitles.entity.rabbit.death", - "english_translation": "Rabbit dies" - }, - { - "key": "subtitles.entity.rabbit.hurt", - "english_translation": "Rabbit hurts" - }, - { - "key": "subtitles.entity.rabbit.jump", - "english_translation": "Rabbit hops" - }, - { - "key": "subtitles.entity.ravager.ambient", - "english_translation": "Ravager grunts" - }, - { - "key": "subtitles.entity.ravager.attack", - "english_translation": "Ravager bites" - }, - { - "key": "subtitles.entity.ravager.celebrate", - "english_translation": "Ravager cheers" - }, - { - "key": "subtitles.entity.ravager.death", - "english_translation": "Ravager dies" - }, - { - "key": "subtitles.entity.ravager.hurt", - "english_translation": "Ravager hurts" - }, - { - "key": "subtitles.entity.ravager.roar", - "english_translation": "Ravager roars" - }, - { - "key": "subtitles.entity.ravager.step", - "english_translation": "Ravager steps" - }, - { - "key": "subtitles.entity.ravager.stunned", - "english_translation": "Ravager stunned" - }, - { - "key": "subtitles.entity.salmon.death", - "english_translation": "Salmon dies" - }, - { - "key": "subtitles.entity.salmon.flop", - "english_translation": "Salmon flops" - }, - { - "key": "subtitles.entity.salmon.hurt", - "english_translation": "Salmon hurts" - }, - { - "key": "subtitles.entity.sheep.ambient", - "english_translation": "Sheep baahs" - }, - { - "key": "subtitles.entity.sheep.death", - "english_translation": "Sheep dies" - }, - { - "key": "subtitles.entity.sheep.hurt", - "english_translation": "Sheep hurts" - }, - { - "key": "subtitles.entity.shulker_bullet.hit", - "english_translation": "Shulker Bullet explodes" - }, - { - "key": "subtitles.entity.shulker_bullet.hurt", - "english_translation": "Shulker Bullet breaks" - }, - { - "key": "subtitles.entity.shulker.ambient", - "english_translation": "Shulker lurks" - }, - { - "key": "subtitles.entity.shulker.close", - "english_translation": "Shulker closes" - }, - { - "key": "subtitles.entity.shulker.death", - "english_translation": "Shulker dies" - }, - { - "key": "subtitles.entity.shulker.hurt", - "english_translation": "Shulker hurts" - }, - { - "key": "subtitles.entity.shulker.open", - "english_translation": "Shulker opens" - }, - { - "key": "subtitles.entity.shulker.shoot", - "english_translation": "Shulker shoots" - }, - { - "key": "subtitles.entity.shulker.teleport", - "english_translation": "Shulker teleports" - }, - { - "key": "subtitles.entity.silverfish.ambient", - "english_translation": "Silverfish hisses" - }, - { - "key": "subtitles.entity.silverfish.death", - "english_translation": "Silverfish dies" - }, - { - "key": "subtitles.entity.silverfish.hurt", - "english_translation": "Silverfish hurts" - }, - { - "key": "subtitles.entity.skeleton_horse.ambient", - "english_translation": "Skeleton Horse cries" - }, - { - "key": "subtitles.entity.skeleton_horse.death", - "english_translation": "Skeleton Horse dies" - }, - { - "key": "subtitles.entity.skeleton_horse.hurt", - "english_translation": "Skeleton Horse hurts" - }, - { - "key": "subtitles.entity.skeleton_horse.swim", - "english_translation": "Skeleton Horse swims" - }, - { - "key": "subtitles.entity.skeleton.ambient", - "english_translation": "Skeleton rattles" - }, - { - "key": "subtitles.entity.skeleton.converted_to_stray", - "english_translation": "Skeleton converts to Stray" - }, - { - "key": "subtitles.entity.skeleton.death", - "english_translation": "Skeleton dies" - }, - { - "key": "subtitles.entity.skeleton.hurt", - "english_translation": "Skeleton hurts" - }, - { - "key": "subtitles.entity.skeleton.shoot", - "english_translation": "Skeleton shoots" - }, - { - "key": "subtitles.entity.slime.attack", - "english_translation": "Slime attacks" - }, - { - "key": "subtitles.entity.slime.death", - "english_translation": "Slime dies" - }, - { - "key": "subtitles.entity.slime.hurt", - "english_translation": "Slime hurts" - }, - { - "key": "subtitles.entity.slime.squish", - "english_translation": "Slime squishes" - }, - { - "key": "subtitles.entity.sniffer.death", - "english_translation": "Sniffer dies" - }, - { - "key": "subtitles.entity.sniffer.digging", - "english_translation": "Sniffer digs" - }, - { - "key": "subtitles.entity.sniffer.digging_stop", - "english_translation": "Sniffer stands up" - }, - { - "key": "subtitles.entity.sniffer.drop_seed", - "english_translation": "Sniffer drops seed" - }, - { - "key": "subtitles.entity.sniffer.eat", - "english_translation": "Sniffer eats" - }, - { - "key": "subtitles.entity.sniffer.happy", - "english_translation": "Sniffer delights" - }, - { - "key": "subtitles.entity.sniffer.hurt", - "english_translation": "Sniffer hurts" - }, - { - "key": "subtitles.entity.sniffer.idle", - "english_translation": "Sniffer grunts" - }, - { - "key": "subtitles.entity.sniffer.scenting", - "english_translation": "Sniffer scents" - }, - { - "key": "subtitles.entity.sniffer.searching", - "english_translation": "Sniffer searches" - }, - { - "key": "subtitles.entity.sniffer.sniffing", - "english_translation": "Sniffer sniffs" - }, - { - "key": "subtitles.entity.sniffer.step", - "english_translation": "Sniffer steps" - }, - { - "key": "subtitles.entity.snow_golem.death", - "english_translation": "Snow Golem dies" - }, - { - "key": "subtitles.entity.snow_golem.hurt", - "english_translation": "Snow Golem hurts" - }, - { - "key": "subtitles.entity.snowball.throw", - "english_translation": "Snowball flies" - }, - { - "key": "subtitles.entity.spider.ambient", - "english_translation": "Spider hisses" - }, - { - "key": "subtitles.entity.spider.death", - "english_translation": "Spider dies" - }, - { - "key": "subtitles.entity.spider.hurt", - "english_translation": "Spider hurts" - }, - { - "key": "subtitles.entity.squid.ambient", - "english_translation": "Squid swims" - }, - { - "key": "subtitles.entity.squid.death", - "english_translation": "Squid dies" - }, - { - "key": "subtitles.entity.squid.hurt", - "english_translation": "Squid hurts" - }, - { - "key": "subtitles.entity.squid.squirt", - "english_translation": "Squid shoots ink" - }, - { - "key": "subtitles.entity.stray.ambient", - "english_translation": "Stray rattles" - }, - { - "key": "subtitles.entity.stray.death", - "english_translation": "Stray dies" - }, - { - "key": "subtitles.entity.stray.hurt", - "english_translation": "Stray hurts" - }, - { - "key": "subtitles.entity.strider.death", - "english_translation": "Strider dies" - }, - { - "key": "subtitles.entity.strider.eat", - "english_translation": "Strider eats" - }, - { - "key": "subtitles.entity.strider.happy", - "english_translation": "Strider warbles" - }, - { - "key": "subtitles.entity.strider.hurt", - "english_translation": "Strider hurts" - }, - { - "key": "subtitles.entity.strider.idle", - "english_translation": "Strider chirps" - }, - { - "key": "subtitles.entity.strider.retreat", - "english_translation": "Strider retreats" - }, - { - "key": "subtitles.entity.tadpole.death", - "english_translation": "Tadpole dies" - }, - { - "key": "subtitles.entity.tadpole.flop", - "english_translation": "Tadpole flops" - }, - { - "key": "subtitles.entity.tadpole.grow_up", - "english_translation": "Tadpole grows up" - }, - { - "key": "subtitles.entity.tadpole.hurt", - "english_translation": "Tadpole hurts" - }, - { - "key": "subtitles.entity.tnt.primed", - "english_translation": "TNT fizzes" - }, - { - "key": "subtitles.entity.tropical_fish.death", - "english_translation": "Tropical Fish dies" - }, - { - "key": "subtitles.entity.tropical_fish.flop", - "english_translation": "Tropical Fish flops" - }, - { - "key": "subtitles.entity.tropical_fish.hurt", - "english_translation": "Tropical Fish hurts" - }, - { - "key": "subtitles.entity.turtle.ambient_land", - "english_translation": "Turtle chirps" - }, - { - "key": "subtitles.entity.turtle.death", - "english_translation": "Turtle dies" - }, - { - "key": "subtitles.entity.turtle.death_baby", - "english_translation": "Turtle baby dies" - }, - { - "key": "subtitles.entity.turtle.egg_break", - "english_translation": "Turtle Egg breaks" - }, - { - "key": "subtitles.entity.turtle.egg_crack", - "english_translation": "Turtle Egg cracks" - }, - { - "key": "subtitles.entity.turtle.egg_hatch", - "english_translation": "Turtle Egg hatches" - }, - { - "key": "subtitles.entity.turtle.hurt", - "english_translation": "Turtle hurts" - }, - { - "key": "subtitles.entity.turtle.hurt_baby", - "english_translation": "Turtle baby hurts" - }, - { - "key": "subtitles.entity.turtle.lay_egg", - "english_translation": "Turtle lays egg" - }, - { - "key": "subtitles.entity.turtle.shamble", - "english_translation": "Turtle shambles" - }, - { - "key": "subtitles.entity.turtle.shamble_baby", - "english_translation": "Turtle baby shambles" - }, - { - "key": "subtitles.entity.turtle.swim", - "english_translation": "Turtle swims" - }, - { - "key": "subtitles.entity.vex.ambient", - "english_translation": "Vex vexes" - }, - { - "key": "subtitles.entity.vex.charge", - "english_translation": "Vex shrieks" - }, - { - "key": "subtitles.entity.vex.death", - "english_translation": "Vex dies" - }, - { - "key": "subtitles.entity.vex.hurt", - "english_translation": "Vex hurts" - }, - { - "key": "subtitles.entity.villager.ambient", - "english_translation": "Villager mumbles" - }, - { - "key": "subtitles.entity.villager.celebrate", - "english_translation": "Villager cheers" - }, - { - "key": "subtitles.entity.villager.death", - "english_translation": "Villager dies" - }, - { - "key": "subtitles.entity.villager.hurt", - "english_translation": "Villager hurts" - }, - { - "key": "subtitles.entity.villager.no", - "english_translation": "Villager disagrees" - }, - { - "key": "subtitles.entity.villager.trade", - "english_translation": "Villager trades" - }, - { - "key": "subtitles.entity.villager.work_armorer", - "english_translation": "Armorer works" - }, - { - "key": "subtitles.entity.villager.work_butcher", - "english_translation": "Butcher works" - }, - { - "key": "subtitles.entity.villager.work_cartographer", - "english_translation": "Cartographer works" - }, - { - "key": "subtitles.entity.villager.work_cleric", - "english_translation": "Cleric works" - }, - { - "key": "subtitles.entity.villager.work_farmer", - "english_translation": "Farmer works" - }, - { - "key": "subtitles.entity.villager.work_fisherman", - "english_translation": "Fisherman works" - }, - { - "key": "subtitles.entity.villager.work_fletcher", - "english_translation": "Fletcher works" - }, - { - "key": "subtitles.entity.villager.work_leatherworker", - "english_translation": "Leatherworker works" - }, - { - "key": "subtitles.entity.villager.work_librarian", - "english_translation": "Librarian works" - }, - { - "key": "subtitles.entity.villager.work_mason", - "english_translation": "Mason works" - }, - { - "key": "subtitles.entity.villager.work_shepherd", - "english_translation": "Shepherd works" - }, - { - "key": "subtitles.entity.villager.work_toolsmith", - "english_translation": "Toolsmith works" - }, - { - "key": "subtitles.entity.villager.work_weaponsmith", - "english_translation": "Weaponsmith works" - }, - { - "key": "subtitles.entity.villager.yes", - "english_translation": "Villager agrees" - }, - { - "key": "subtitles.entity.vindicator.ambient", - "english_translation": "Vindicator mutters" - }, - { - "key": "subtitles.entity.vindicator.celebrate", - "english_translation": "Vindicator cheers" - }, - { - "key": "subtitles.entity.vindicator.death", - "english_translation": "Vindicator dies" - }, - { - "key": "subtitles.entity.vindicator.hurt", - "english_translation": "Vindicator hurts" - }, - { - "key": "subtitles.entity.wandering_trader.ambient", - "english_translation": "Wandering Trader mumbles" - }, - { - "key": "subtitles.entity.wandering_trader.death", - "english_translation": "Wandering Trader dies" - }, - { - "key": "subtitles.entity.wandering_trader.disappeared", - "english_translation": "Wandering Trader disappears" - }, - { - "key": "subtitles.entity.wandering_trader.drink_milk", - "english_translation": "Wandering Trader drinks milk" - }, - { - "key": "subtitles.entity.wandering_trader.drink_potion", - "english_translation": "Wandering Trader drinks potion" - }, - { - "key": "subtitles.entity.wandering_trader.hurt", - "english_translation": "Wandering Trader hurts" - }, - { - "key": "subtitles.entity.wandering_trader.no", - "english_translation": "Wandering Trader disagrees" - }, - { - "key": "subtitles.entity.wandering_trader.reappeared", - "english_translation": "Wandering Trader appears" - }, - { - "key": "subtitles.entity.wandering_trader.trade", - "english_translation": "Wandering Trader trades" - }, - { - "key": "subtitles.entity.wandering_trader.yes", - "english_translation": "Wandering Trader agrees" - }, - { - "key": "subtitles.entity.warden.agitated", - "english_translation": "Warden groans angrily" - }, - { - "key": "subtitles.entity.warden.ambient", - "english_translation": "Warden whines" - }, - { - "key": "subtitles.entity.warden.angry", - "english_translation": "Warden rages" - }, - { - "key": "subtitles.entity.warden.attack_impact", - "english_translation": "Warden lands hit" - }, - { - "key": "subtitles.entity.warden.death", - "english_translation": "Warden dies" - }, - { - "key": "subtitles.entity.warden.dig", - "english_translation": "Warden digs" - }, - { - "key": "subtitles.entity.warden.emerge", - "english_translation": "Warden emerges" - }, - { - "key": "subtitles.entity.warden.heartbeat", - "english_translation": "Warden's heart beats" - }, - { - "key": "subtitles.entity.warden.hurt", - "english_translation": "Warden hurts" - }, - { - "key": "subtitles.entity.warden.listening", - "english_translation": "Warden takes notice" - }, - { - "key": "subtitles.entity.warden.listening_angry", - "english_translation": "Warden takes notice angrily" - }, - { - "key": "subtitles.entity.warden.nearby_close", - "english_translation": "Warden approaches" - }, - { - "key": "subtitles.entity.warden.nearby_closer", - "english_translation": "Warden advances" - }, - { - "key": "subtitles.entity.warden.nearby_closest", - "english_translation": "Warden draws close" - }, - { - "key": "subtitles.entity.warden.roar", - "english_translation": "Warden roars" - }, - { - "key": "subtitles.entity.warden.sniff", - "english_translation": "Warden sniffs" - }, - { - "key": "subtitles.entity.warden.sonic_boom", - "english_translation": "Warden booms" - }, - { - "key": "subtitles.entity.warden.sonic_charge", - "english_translation": "Warden charges" - }, - { - "key": "subtitles.entity.warden.step", - "english_translation": "Warden steps" - }, - { - "key": "subtitles.entity.warden.tendril_clicks", - "english_translation": "Warden's tendrils click" - }, - { - "key": "subtitles.entity.witch.ambient", - "english_translation": "Witch giggles" - }, - { - "key": "subtitles.entity.witch.celebrate", - "english_translation": "Witch cheers" - }, - { - "key": "subtitles.entity.witch.death", - "english_translation": "Witch dies" - }, - { - "key": "subtitles.entity.witch.drink", - "english_translation": "Witch drinks" - }, - { - "key": "subtitles.entity.witch.hurt", - "english_translation": "Witch hurts" - }, - { - "key": "subtitles.entity.witch.throw", - "english_translation": "Witch throws" - }, - { - "key": "subtitles.entity.wither_skeleton.ambient", - "english_translation": "Wither Skeleton rattles" - }, - { - "key": "subtitles.entity.wither_skeleton.death", - "english_translation": "Wither Skeleton dies" - }, - { - "key": "subtitles.entity.wither_skeleton.hurt", - "english_translation": "Wither Skeleton hurts" - }, - { - "key": "subtitles.entity.wither.ambient", - "english_translation": "Wither angers" - }, - { - "key": "subtitles.entity.wither.death", - "english_translation": "Wither dies" - }, - { - "key": "subtitles.entity.wither.hurt", - "english_translation": "Wither hurts" - }, - { - "key": "subtitles.entity.wither.shoot", - "english_translation": "Wither attacks" - }, - { - "key": "subtitles.entity.wither.spawn", - "english_translation": "Wither released" - }, - { - "key": "subtitles.entity.wolf.ambient", - "english_translation": "Wolf pants" - }, - { - "key": "subtitles.entity.wolf.death", - "english_translation": "Wolf dies" - }, - { - "key": "subtitles.entity.wolf.growl", - "english_translation": "Wolf growls" - }, - { - "key": "subtitles.entity.wolf.hurt", - "english_translation": "Wolf hurts" - }, - { - "key": "subtitles.entity.wolf.shake", - "english_translation": "Wolf shakes" - }, - { - "key": "subtitles.entity.zoglin.ambient", - "english_translation": "Zoglin growls" - }, - { - "key": "subtitles.entity.zoglin.angry", - "english_translation": "Zoglin growls angrily" - }, - { - "key": "subtitles.entity.zoglin.attack", - "english_translation": "Zoglin attacks" - }, - { - "key": "subtitles.entity.zoglin.death", - "english_translation": "Zoglin dies" - }, - { - "key": "subtitles.entity.zoglin.hurt", - "english_translation": "Zoglin hurts" - }, - { - "key": "subtitles.entity.zoglin.step", - "english_translation": "Zoglin steps" - }, - { - "key": "subtitles.entity.zombie_horse.ambient", - "english_translation": "Zombie Horse cries" - }, - { - "key": "subtitles.entity.zombie_horse.death", - "english_translation": "Zombie Horse dies" - }, - { - "key": "subtitles.entity.zombie_horse.hurt", - "english_translation": "Zombie Horse hurts" - }, - { - "key": "subtitles.entity.zombie_villager.ambient", - "english_translation": "Zombie Villager groans" - }, - { - "key": "subtitles.entity.zombie_villager.converted", - "english_translation": "Zombie Villager vociferates" - }, - { - "key": "subtitles.entity.zombie_villager.cure", - "english_translation": "Zombie Villager snuffles" - }, - { - "key": "subtitles.entity.zombie_villager.death", - "english_translation": "Zombie Villager dies" - }, - { - "key": "subtitles.entity.zombie_villager.hurt", - "english_translation": "Zombie Villager hurts" - }, - { - "key": "subtitles.entity.zombie.ambient", - "english_translation": "Zombie groans" - }, - { - "key": "subtitles.entity.zombie.attack_wooden_door", - "english_translation": "Door shakes" - }, - { - "key": "subtitles.entity.zombie.break_wooden_door", - "english_translation": "Door breaks" - }, - { - "key": "subtitles.entity.zombie.converted_to_drowned", - "english_translation": "Zombie converts to Drowned" - }, - { - "key": "subtitles.entity.zombie.death", - "english_translation": "Zombie dies" - }, - { - "key": "subtitles.entity.zombie.destroy_egg", - "english_translation": "Turtle Egg stomped" - }, - { - "key": "subtitles.entity.zombie.hurt", - "english_translation": "Zombie hurts" - }, - { - "key": "subtitles.entity.zombie.infect", - "english_translation": "Zombie infects" - }, - { - "key": "subtitles.entity.zombified_piglin.ambient", - "english_translation": "Zombified Piglin grunts" - }, - { - "key": "subtitles.entity.zombified_piglin.angry", - "english_translation": "Zombified Piglin grunts angrily" - }, - { - "key": "subtitles.entity.zombified_piglin.death", - "english_translation": "Zombified Piglin dies" - }, - { - "key": "subtitles.entity.zombified_piglin.hurt", - "english_translation": "Zombified Piglin hurts" - }, - { - "key": "subtitles.event.raid.horn", - "english_translation": "Ominous horn blares" - }, - { - "key": "subtitles.item.armor.equip", - "english_translation": "Gear equips" - }, - { - "key": "subtitles.item.armor.equip_chain", - "english_translation": "Chain armor jingles" - }, - { - "key": "subtitles.item.armor.equip_diamond", - "english_translation": "Diamond armor clangs" - }, - { - "key": "subtitles.item.armor.equip_elytra", - "english_translation": "Elytra rustle" - }, - { - "key": "subtitles.item.armor.equip_gold", - "english_translation": "Gold armor clinks" - }, - { - "key": "subtitles.item.armor.equip_iron", - "english_translation": "Iron armor clanks" - }, - { - "key": "subtitles.item.armor.equip_leather", - "english_translation": "Leather armor rustles" - }, - { - "key": "subtitles.item.armor.equip_netherite", - "english_translation": "Netherite armor clanks" - }, - { - "key": "subtitles.item.armor.equip_turtle", - "english_translation": "Turtle Shell thunks" - }, - { - "key": "subtitles.item.axe.scrape", - "english_translation": "Axe scrapes" - }, - { - "key": "subtitles.item.axe.strip", - "english_translation": "Axe strips" - }, - { - "key": "subtitles.item.axe.wax_off", - "english_translation": "Wax off" - }, - { - "key": "subtitles.item.bone_meal.use", - "english_translation": "Bone Meal crinkles" - }, - { - "key": "subtitles.item.book.page_turn", - "english_translation": "Page rustles" - }, - { - "key": "subtitles.item.book.put", - "english_translation": "Book thumps" - }, - { - "key": "subtitles.item.bottle.empty", - "english_translation": "Bottle empties" - }, - { - "key": "subtitles.item.bottle.fill", - "english_translation": "Bottle fills" - }, - { - "key": "subtitles.item.brush.brush_sand_completed", - "english_translation": "Brushing sand completed" - }, - { - "key": "subtitles.item.brush.brushing", - "english_translation": "Brushing" - }, - { - "key": "subtitles.item.bucket.empty", - "english_translation": "Bucket empties" - }, - { - "key": "subtitles.item.bucket.fill", - "english_translation": "Bucket fills" - }, - { - "key": "subtitles.item.bucket.fill_axolotl", - "english_translation": "Axolotl scooped" - }, - { - "key": "subtitles.item.bucket.fill_fish", - "english_translation": "Fish captured" - }, - { - "key": "subtitles.item.bucket.fill_tadpole", - "english_translation": "Tadpole captured" - }, - { - "key": "subtitles.item.bundle.drop_contents", - "english_translation": "Bundle empties" - }, - { - "key": "subtitles.item.bundle.insert", - "english_translation": "Item packed" - }, - { - "key": "subtitles.item.bundle.remove_one", - "english_translation": "Item unpacked" - }, - { - "key": "subtitles.item.chorus_fruit.teleport", - "english_translation": "Player teleports" - }, - { - "key": "subtitles.item.crop.plant", - "english_translation": "Crop planted" - }, - { - "key": "subtitles.item.crossbow.charge", - "english_translation": "Crossbow charges up" - }, - { - "key": "subtitles.item.crossbow.hit", - "english_translation": "Arrow hits" - }, - { - "key": "subtitles.item.crossbow.load", - "english_translation": "Crossbow loads" - }, - { - "key": "subtitles.item.crossbow.shoot", - "english_translation": "Crossbow fires" - }, - { - "key": "subtitles.item.dye.use", - "english_translation": "Dye stains" - }, - { - "key": "subtitles.item.firecharge.use", - "english_translation": "Fireball whooshes" - }, - { - "key": "subtitles.item.flintandsteel.use", - "english_translation": "Flint and Steel click" - }, - { - "key": "subtitles.item.glow_ink_sac.use", - "english_translation": "Glow Ink Sac splotches" - }, - { - "key": "subtitles.item.goat_horn.play", - "english_translation": "Goat Horn plays" - }, - { - "key": "subtitles.item.hoe.till", - "english_translation": "Hoe tills" - }, - { - "key": "subtitles.item.honey_bottle.drink", - "english_translation": "Gulping" - }, - { - "key": "subtitles.item.honeycomb.wax_on", - "english_translation": "Wax on" - }, - { - "key": "subtitles.item.ink_sac.use", - "english_translation": "Ink Sac splotches" - }, - { - "key": "subtitles.item.lodestone_compass.lock", - "english_translation": "Lodestone Compass locks onto Lodestone" - }, - { - "key": "subtitles.item.nether_wart.plant", - "english_translation": "Crop planted" - }, - { - "key": "subtitles.item.shears.shear", - "english_translation": "Shears click" - }, - { - "key": "subtitles.item.shield.block", - "english_translation": "Shield blocks" - }, - { - "key": "subtitles.item.shovel.flatten", - "english_translation": "Shovel flattens" - }, - { - "key": "subtitles.item.spyglass.stop_using", - "english_translation": "Spyglass retracts" - }, - { - "key": "subtitles.item.spyglass.use", - "english_translation": "Spyglass expands" - }, - { - "key": "subtitles.item.totem.use", - "english_translation": "Totem activates" - }, - { - "key": "subtitles.item.trident.hit", - "english_translation": "Trident stabs" - }, - { - "key": "subtitles.item.trident.hit_ground", - "english_translation": "Trident vibrates" - }, - { - "key": "subtitles.item.trident.return", - "english_translation": "Trident returns" - }, - { - "key": "subtitles.item.trident.riptide", - "english_translation": "Trident zooms" - }, - { - "key": "subtitles.item.trident.throw", - "english_translation": "Trident clangs" - }, - { - "key": "subtitles.item.trident.thunder", - "english_translation": "Trident thunder cracks" - }, - { - "key": "subtitles.particle.soul_escape", - "english_translation": "Soul escapes" - }, - { - "key": "subtitles.ui.cartography_table.take_result", - "english_translation": "Map drawn" - }, - { - "key": "subtitles.ui.loom.take_result", - "english_translation": "Loom used" - }, - { - "key": "subtitles.ui.stonecutter.take_result", - "english_translation": "Stonecutter used" - }, - { - "key": "subtitles.weather.rain", - "english_translation": "Rain falls" - }, - { - "key": "team.collision.always", - "english_translation": "Always" - }, - { - "key": "team.collision.never", - "english_translation": "Never" - }, - { - "key": "team.collision.pushOtherTeams", - "english_translation": "Push other teams" - }, - { - "key": "team.collision.pushOwnTeam", - "english_translation": "Push own team" - }, - { - "key": "team.notFound", - "english_translation": "Unknown team '%s'" - }, - { - "key": "team.visibility.always", - "english_translation": "Always" - }, - { - "key": "team.visibility.hideForOtherTeams", - "english_translation": "Hide for other teams" - }, - { - "key": "team.visibility.hideForOwnTeam", - "english_translation": "Hide for own team" - }, - { - "key": "team.visibility.never", - "english_translation": "Never" - }, - { - "key": "telemetry_info.button.give_feedback", - "english_translation": "Give Feedback" - }, - { - "key": "telemetry_info.button.show_data", - "english_translation": "Open My Data" - }, - { - "key": "telemetry_info.property_title", - "english_translation": "Included Data" - }, - { - "key": "telemetry_info.screen.description", - "english_translation": "Collecting this data helps us improve Minecraft by guiding us in directions that are relevant to our players.\nYou can also send in additional feedback to help us keep improving Minecraft." - }, - { - "key": "telemetry_info.screen.title", - "english_translation": "Telemetry Data Collection" - }, - { - "key": "telemetry.event.optional", - "english_translation": "%s (Optional)" - }, - { - "key": "telemetry.event.performance_metrics.description", - "english_translation": "Knowing the overall performance profile of Minecraft helps us tune and optimize the game for a wide range of machine specifications and operating systems. \nGame version is included to help us compare the performance profile for new versions of Minecraft." - }, - { - "key": "telemetry.event.performance_metrics.title", - "english_translation": "Performance Metrics" - }, - { - "key": "telemetry.event.required", - "english_translation": "%s (Required)" + "key": "mco.reset.world.title", + "english_translation": "Reset world" }, { "key": "telemetry.event.world_load_times.description", "english_translation": "It’s important for us to understand how long it takes to join a world, and how that changes over time. For example, when we add new features or do larger technical changes, we need to see what impact that had on load times." }, { - "key": "telemetry.event.world_load_times.title", - "english_translation": "World Load Times" + "key": "block.minecraft.banner.half_horizontal.red", + "english_translation": "Red Per Fess" }, { - "key": "telemetry.event.world_loaded.description", - "english_translation": "Knowing how players play Minecraft (such as Game Mode, client or server modded, and game version) allows us to focus game updates to improve the areas that players care about most.\nThe World Loaded event is paired with the World Unloaded event to calculate how long the play session has lasted." + "key": "key.keyboard.scroll.lock", + "english_translation": "Scroll Lock" }, { - "key": "telemetry.event.world_loaded.title", - "english_translation": "World Loaded" + "key": "block.minecraft.bamboo_fence_gate", + "english_translation": "Bamboo Fence Gate" }, { - "key": "telemetry.event.world_unloaded.description", - "english_translation": "This event is paired with the World Loaded event to calculate how long the world session has lasted.\nThe duration (in seconds and ticks) is measured when a world session has ended (quitting to title, disconnecting from a server)." + "key": "entity.minecraft.wandering_trader", + "english_translation": "Wandering Trader" }, { - "key": "telemetry.event.world_unloaded.title", - "english_translation": "World Unloaded" + "key": "argument.entity.options.mode.invalid", + "english_translation": "Invalid or unknown game mode '%s'" }, { - "key": "telemetry.property.client_id.title", - "english_translation": "Client ID" + "key": "advancements.adventure.kill_all_mobs.description", + "english_translation": "Kill one of every hostile monster" }, { - "key": "telemetry.property.client_modded.title", - "english_translation": "Client Modded" + "key": "effect.minecraft.fire_resistance", + "english_translation": "Fire Resistance" }, { - "key": "telemetry.property.dedicated_memory_kb.title", - "english_translation": "Dedicated Memory (kB)" + "key": "block.minecraft.ominous_banner", + "english_translation": "Ominous Banner" }, { - "key": "telemetry.property.event_timestamp_utc.title", - "english_translation": "Event Timestamp (UTC)" + "key": "block.minecraft.white_concrete_powder", + "english_translation": "White Concrete Powder" }, { - "key": "telemetry.property.frame_rate_samples.title", - "english_translation": "Frame Rate Samples (FPS)" + "key": "block.minecraft.banner.cross.pink", + "english_translation": "Pink Saltire" }, { - "key": "telemetry.property.game_mode.title", - "english_translation": "Game Mode" + "key": "narration.edit_box", + "english_translation": "Edit box: %s" }, { - "key": "telemetry.property.game_version.title", - "english_translation": "Game Version" + "key": "block.minecraft.crimson_slab", + "english_translation": "Crimson Slab" }, { - "key": "telemetry.property.minecraft_session_id.title", - "english_translation": "Minecraft Session ID" + "key": "commands.bossbar.get.value", + "english_translation": "Custom bossbar %s has a value of %s" }, { - "key": "telemetry.property.new_world.title", - "english_translation": "New World" + "key": "commands.tag.list.multiple.success", + "english_translation": "The %s entities have %s total tags: %s" }, { - "key": "telemetry.property.number_of_samples.title", - "english_translation": "Sample Count" + "key": "selectWorld.recreate", + "english_translation": "Re-Create" }, { - "key": "telemetry.property.operating_system.title", - "english_translation": "Operating System" + "key": "item.minecraft.stone_pickaxe", + "english_translation": "Stone Pickaxe" }, { - "key": "telemetry.property.opt_in.title", - "english_translation": "Opt-In" + "key": "subtitles.entity.fox.screech", + "english_translation": "Fox screeches" }, { - "key": "telemetry.property.platform.title", - "english_translation": "Platform" + "key": "options.biomeBlendRadius.9", + "english_translation": "9x9 (Very High)" }, { - "key": "telemetry.property.render_distance.title", - "english_translation": "Render Distance" + "key": "options.biomeBlendRadius.7", + "english_translation": "7x7 (High)" }, { - "key": "telemetry.property.render_time_samples.title", - "english_translation": "Render Time Samples" + "key": "options.biomeBlendRadius.5", + "english_translation": "5x5 (Normal)" }, { - "key": "telemetry.property.seconds_since_load.title", - "english_translation": "Time Since Load (Seconds)" + "key": "options.biomeBlendRadius.3", + "english_translation": "3x3 (Fast)" }, { - "key": "telemetry.property.server_modded.title", - "english_translation": "Server Modded" + "key": "commands.advancement.grant.one.to.one.failure", + "english_translation": "Couldn't grant advancement %s to %s as they already have it" }, { - "key": "telemetry.property.server_type.title", - "english_translation": "Server Type" + "key": "options.biomeBlendRadius.1", + "english_translation": "OFF (Fastest)" }, { - "key": "telemetry.property.ticks_since_load.title", - "english_translation": "Time Since Load (Ticks)" + "key": "block.minecraft.cherry_wood", + "english_translation": "Cherry Wood" }, { - "key": "telemetry.property.used_memory_samples.title", - "english_translation": "Used Random Access Memory" + "key": "multiplayer.player.joined.renamed", + "english_translation": "%s (formerly known as %s) joined the game" }, { - "key": "telemetry.property.user_id.title", - "english_translation": "User ID" + "key": "effect.minecraft.slowness", + "english_translation": "Slowness" }, { - "key": "telemetry.property.world_load_time_ms.title", - "english_translation": "World Load Time (Milliseconds)" - }, - { - "key": "telemetry.property.world_session_id.title", - "english_translation": "World Session ID" - }, - { - "key": "title.32bit.deprecation", - "english_translation": "32-bit system detected: this may prevent you from playing in the future as a 64-bit system will be required!" - }, - { - "key": "title.32bit.deprecation.realms", - "english_translation": "Minecraft will soon require a 64-bit system, which will prevent you from playing or using Realms on this device. You will need to manually cancel any Realms subscription." - }, - { - "key": "title.32bit.deprecation.realms.check", - "english_translation": "Do not show this screen again" - }, - { - "key": "title.32bit.deprecation.realms.header", - "english_translation": "32-bit system detected" - }, - { - "key": "title.multiplayer.disabled", - "english_translation": "Multiplayer is disabled. Please check your Microsoft account settings." - }, - { - "key": "title.multiplayer.disabled.banned.permanent", - "english_translation": "Your account is permanently suspended from online play" - }, - { - "key": "title.multiplayer.disabled.banned.temporary", - "english_translation": "Your account is temporarily suspended from online play" - }, - { - "key": "title.multiplayer.lan", - "english_translation": "Multiplayer (LAN)" - }, - { - "key": "title.multiplayer.other", - "english_translation": "Multiplayer (3rd-party Server)" - }, - { - "key": "title.multiplayer.realms", - "english_translation": "Multiplayer (Realms)" - }, - { - "key": "title.singleplayer", - "english_translation": "Singleplayer" - }, - { - "key": "translation.test.args", - "english_translation": "%s %s" - }, - { - "key": "translation.test.complex", - "english_translation": "Prefix, %s%2$s again %s and %1$s lastly %s and also %1$s again!" - }, - { - "key": "translation.test.escape", - "english_translation": "%%s %%%s %%%%s %%%%%s" - }, - { - "key": "translation.test.invalid", - "english_translation": "hi %" - }, - { - "key": "translation.test.invalid2", - "english_translation": "hi % s" - }, - { - "key": "translation.test.none", - "english_translation": "Hello, world!" - }, - { - "key": "translation.test.world", - "english_translation": "world" - }, - { - "key": "trim_material.minecraft.amethyst", - "english_translation": "Amethyst Material" - }, - { - "key": "trim_material.minecraft.copper", - "english_translation": "Copper Material" - }, - { - "key": "trim_material.minecraft.diamond", - "english_translation": "Diamond Material" - }, - { - "key": "trim_material.minecraft.emerald", - "english_translation": "Emerald Material" - }, - { - "key": "trim_material.minecraft.gold", - "english_translation": "Gold Material" + "key": "block.minecraft.potted_red_mushroom", + "english_translation": "Potted Red Mushroom" }, { "key": "trim_material.minecraft.iron", "english_translation": "Iron Material" }, { - "key": "trim_material.minecraft.lapis", - "english_translation": "Lapis Material" + "key": "block.minecraft.banner.border.yellow", + "english_translation": "Yellow Bordure" }, { - "key": "trim_material.minecraft.netherite", - "english_translation": "Netherite Material" + "key": "subtitles.entity.warden.listening", + "english_translation": "Warden takes notice" }, { - "key": "trim_material.minecraft.quartz", - "english_translation": "Quartz Material" + "key": "block.minecraft.banner.stripe_downright.black", + "english_translation": "Black Bend" }, { - "key": "trim_material.minecraft.redstone", - "english_translation": "Redstone Material" + "key": "block.minecraft.banner.stripe_downright.white", + "english_translation": "White Bend" }, { - "key": "trim_pattern.minecraft.coast", - "english_translation": "Coast Armor Trim" + "key": "block.minecraft.banner.gradient.green", + "english_translation": "Green Gradient" }, { - "key": "trim_pattern.minecraft.dune", - "english_translation": "Dune Armor Trim" + "key": "gamerule.commandBlockOutput", + "english_translation": "Broadcast command block output" }, { - "key": "trim_pattern.minecraft.eye", - "english_translation": "Eye Armor Trim" + "key": "selectServer.defaultName", + "english_translation": "Minecraft Server" }, { - "key": "trim_pattern.minecraft.rib", - "english_translation": "Rib Armor Trim" + "key": "gui.abuseReport.send.http_error", + "english_translation": "An unexpected HTTP error occurred while sending your report." }, { - "key": "trim_pattern.minecraft.sentry", - "english_translation": "Sentry Armor Trim" + "key": "block.minecraft.banner.diagonal_up_right.light_gray", + "english_translation": "Light Gray Per Bend Sinister Inverted" }, { - "key": "trim_pattern.minecraft.snout", - "english_translation": "Snout Armor Trim" + "key": "advancements.husbandry.tame_an_animal.title", + "english_translation": "Best Friends Forever" }, { - "key": "trim_pattern.minecraft.spire", - "english_translation": "Spire Armor Trim" + "key": "telemetry.event.world_loaded.description", + "english_translation": "Knowing how players play Minecraft (such as Game Mode, client or server modded, and game version) allows us to focus game updates to improve the areas that players care about most.\nThe World Loaded event is paired with the World Unloaded event to calculate how long the play session has lasted." }, { - "key": "trim_pattern.minecraft.tide", - "english_translation": "Tide Armor Trim" + "key": "options.prioritizeChunkUpdates.byPlayer", + "english_translation": "Semi Blocking" }, { - "key": "trim_pattern.minecraft.vex", - "english_translation": "Vex Armor Trim" + "key": "item.minecraft.nether_wart", + "english_translation": "Nether Wart" }, { - "key": "trim_pattern.minecraft.ward", - "english_translation": "Ward Armor Trim" + "key": "block.minecraft.banner.triangle_top.light_blue", + "english_translation": "Light Blue Inverted Chevron" }, { - "key": "trim_pattern.minecraft.wild", - "english_translation": "Wild Armor Trim" + "key": "gui.socialInteractions.tooltip.report.disabled", + "english_translation": "The reporting service is unavailable" }, { - "key": "tutorial.bundleInsert.description", - "english_translation": "Right Click to add items" + "key": "block.minecraft.banner.stripe_middle.black", + "english_translation": "Black Fess" }, { - "key": "tutorial.bundleInsert.title", - "english_translation": "Use a Bundle" + "key": "item.minecraft.spruce_chest_boat", + "english_translation": "Spruce Boat with Chest" }, { - "key": "tutorial.craft_planks.description", - "english_translation": "The recipe book can help" + "key": "options.biomeBlendRadius", + "english_translation": "Biome Blend" }, { - "key": "tutorial.craft_planks.title", - "english_translation": "Craft wooden planks" + "key": "commands.give.failed.toomanyitems", + "english_translation": "Can't give more than %s of %s" }, { - "key": "tutorial.find_tree.description", - "english_translation": "Punch it to collect wood" + "key": "subtitles.entity.parrot.imitate.ravager", + "english_translation": "Parrot grunts" }, { - "key": "tutorial.find_tree.title", - "english_translation": "Find a tree" + "key": "block.minecraft.powder_snow", + "english_translation": "Powder Snow" }, { - "key": "tutorial.look.description", - "english_translation": "Use your mouse to turn" + "key": "options.guiScale", + "english_translation": "GUI Scale" }, { - "key": "tutorial.look.title", - "english_translation": "Look around" + "key": "compliance.playtime.greaterThan24Hours", + "english_translation": "You've been playing for greater than 24 hours" }, { - "key": "tutorial.move.description", - "english_translation": "Jump with %s" + "key": "entity.minecraft.snowball", + "english_translation": "Snowball" }, { - "key": "tutorial.move.title", - "english_translation": "Move with %s, %s, %s and %s" + "key": "menu.savingLevel", + "english_translation": "Saving world" }, { - "key": "tutorial.open_inventory.description", - "english_translation": "Press %s" + "key": "biome.minecraft.deep_cold_ocean", + "english_translation": "Deep Cold Ocean" }, { - "key": "tutorial.open_inventory.title", - "english_translation": "Open your inventory" + "key": "death.attack.genericKill.player", + "english_translation": "%1$s was killed whilst fighting %2$s" }, { - "key": "tutorial.punch_tree.description", - "english_translation": "Hold down %s" + "key": "block.minecraft.orange_bed", + "english_translation": "Orange Bed" }, { - "key": "tutorial.punch_tree.title", - "english_translation": "Destroy the tree" + "key": "telemetry.event.performance_metrics.title", + "english_translation": "Performance Metrics" }, { - "key": "tutorial.socialInteractions.description", - "english_translation": "Press %s to open" + "key": "block.minecraft.jungle_stairs", + "english_translation": "Jungle Stairs" }, { - "key": "tutorial.socialInteractions.title", - "english_translation": "Social Interactions" + "key": "enchantment.minecraft.smite", + "english_translation": "Smite" }, { - "key": "upgrade.minecraft.netherite_upgrade", - "english_translation": "Netherite Upgrade" + "key": "entity.minecraft.hopper_minecart", + "english_translation": "Minecart with Hopper" + }, + { + "key": "block.minecraft.bamboo_sign", + "english_translation": "Bamboo Sign" + }, + { + "key": "block.minecraft.iron_block", + "english_translation": "Block of Iron" + }, + { + "key": "advancements.adventure.root.description", + "english_translation": "Adventure, exploration and combat" + }, + { + "key": "gui.chatReport.draft.quittotitle.title", + "english_translation": "You have a draft chat report that will be lost if you quit" + }, + { + "key": "block.minecraft.banner.cross.brown", + "english_translation": "Brown Saltire" + }, + { + "key": "instrument.minecraft.call_goat_horn", + "english_translation": "Call" + }, + { + "key": "subtitles.entity.drowned.ambient", + "english_translation": "Drowned gurgles" + }, + { + "key": "trim_pattern.minecraft.raiser", + "english_translation": "Raiser Armor Trim" + }, + { + "key": "block.minecraft.purple_concrete", + "english_translation": "Purple Concrete" + }, + { + "key": "subtitles.entity.item_frame.rotate_item", + "english_translation": "Item Frame clicks" + }, + { + "key": "item.minecraft.shield.pink", + "english_translation": "Pink Shield" + }, + { + "key": "gui.abuseReport.reason.terrorism_or_violent_extremism.description", + "english_translation": "Someone is talking about, promoting, or threatening to commit acts of terrorism or violent extremism for political, religious, ideological, or other reasons." + }, + { + "key": "subtitles.block.furnace.fire_crackle", + "english_translation": "Furnace crackles" + }, + { + "key": "stat.minecraft.interact_with_furnace", + "english_translation": "Interactions with Furnace" + }, + { + "key": "advancements.adventure.sniper_duel.description", + "english_translation": "Kill a Skeleton from at least 50 meters away" + }, + { + "key": "biome.minecraft.mushroom_fields", + "english_translation": "Mushroom Fields" + }, + { + "key": "block.minecraft.red_carpet", + "english_translation": "Red Carpet" + }, + { + "key": "key.keyboard.f8", + "english_translation": "F8" + }, + { + "key": "key.keyboard.f9", + "english_translation": "F9" + }, + { + "key": "key.keyboard.f6", + "english_translation": "F6" + }, + { + "key": "key.keyboard.f7", + "english_translation": "F7" + }, + { + "key": "subtitles.entity.wandering_trader.disappeared", + "english_translation": "Wandering Trader disappears" + }, + { + "key": "debug.inspect.help", + "english_translation": "F3 + I = Copy entity or block data to clipboard" + }, + { + "key": "key.keyboard.f1", + "english_translation": "F1" + }, + { + "key": "options.fovEffectScale.tooltip", + "english_translation": "Controls how much the field of view can change with gameplay effects." + }, + { + "key": "key.keyboard.f4", + "english_translation": "F4" + }, + { + "key": "key.keyboard.f5", + "english_translation": "F5" + }, + { + "key": "multiplayer.disconnect.invalid_vehicle_movement", + "english_translation": "Invalid move vehicle packet received" + }, + { + "key": "key.keyboard.f2", + "english_translation": "F2" + }, + { + "key": "key.keyboard.f3", + "english_translation": "F3" + }, + { + "key": "mco.template.select.none.linkTitle", + "english_translation": "consider submitting something yourself" + }, + { + "key": "block.minecraft.banner.curly_border.light_blue", + "english_translation": "Light Blue Bordure Indented" + }, + { + "key": "advancements.story.smelt_iron.description", + "english_translation": "Smelt an Iron Ingot" + }, + { + "key": "chat_screen.message", + "english_translation": "Message to send: %s" + }, + { + "key": "subtitles.block.redstone_torch.burnout", + "english_translation": "Torch fizzes" + }, + { + "key": "entity.minecraft.villager.nitwit", + "english_translation": "Nitwit" + }, + { + "key": "command.expected.separator", + "english_translation": "Expected whitespace to end one argument, but found trailing data" + }, + { + "key": "block.minecraft.oak_fence_gate", + "english_translation": "Oak Fence Gate" + }, + { + "key": "subtitles.entity.horse.gallop", + "english_translation": "Horse gallops" + }, + { + "key": "gamerule.category.misc", + "english_translation": "Miscellaneous" + }, + { + "key": "commands.locate.biome.success", + "english_translation": "The nearest %s is at %s (%s blocks away)" + }, + { + "key": "block.minecraft.banner.creeper.gray", + "english_translation": "Gray Creeper Charge" + }, + { + "key": "subtitles.item.book.page_turn", + "english_translation": "Page rustles" + }, + { + "key": "painting.minecraft.wanderer.author", + "english_translation": "Kristoffer Zetterstrand" + }, + { + "key": "block.minecraft.cyan_bed", + "english_translation": "Cyan Bed" + }, + { + "key": "subtitles.item.bone_meal.use", + "english_translation": "Bone Meal crinkles" + }, + { + "key": "item.minecraft.golden_chestplate", + "english_translation": "Golden Chestplate" + }, + { + "key": "item.minecraft.rabbit_foot", + "english_translation": "Rabbit's Foot" + }, + { + "key": "entity.minecraft.villager.cleric", + "english_translation": "Cleric" + }, + { + "key": "gamerule.doPatrolSpawning", + "english_translation": "Spawn pillager patrols" + }, + { + "key": "block.minecraft.banner.stripe_middle.light_blue", + "english_translation": "Light Blue Fess" + }, + { + "key": "jigsaw_block.target", + "english_translation": "Target Name:" + }, + { + "key": "block.minecraft.banner.stripe_downright.green", + "english_translation": "Green Bend" + }, + { + "key": "subtitles.entity.horse.hurt", + "english_translation": "Horse hurts" + }, + { + "key": "stat.minecraft.interact_with_grindstone", + "english_translation": "Interactions with Grindstone" + }, + { + "key": "biome.minecraft.old_growth_birch_forest", + "english_translation": "Old Growth Birch Forest" + }, + { + "key": "block.minecraft.player_wall_head", + "english_translation": "Player Wall Head" + }, + { + "key": "optimizeWorld.info.converted", + "english_translation": "Upgraded chunks: %s" + }, + { + "key": "argument.enum.invalid", + "english_translation": "Invalid value \"%s\"" + }, + { + "key": "item.minecraft.miner_pottery_sherd", + "english_translation": "Miner Pottery Sherd" + }, + { + "key": "block.minecraft.brown_glazed_terracotta", + "english_translation": "Brown Glazed Terracotta" + }, + { + "key": "options.modelPart.left_pants_leg", + "english_translation": "Left Pants Leg" + }, + { + "key": "mco.reset.world.template", + "english_translation": "World templates" + }, + { + "key": "effect.minecraft.resistance", + "english_translation": "Resistance" + }, + { + "key": "arguments.function.unknown", + "english_translation": "Unknown function %s" + }, + { + "key": "subtitles.entity.zombie_villager.hurt", + "english_translation": "Zombie Villager hurts" + }, + { + "key": "block.minecraft.cave_vines", + "english_translation": "Cave Vines" + }, + { + "key": "container.enchant", + "english_translation": "Enchant" + }, + { + "key": "item.minecraft.frog_spawn_egg", + "english_translation": "Frog Spawn Egg" + }, + { + "key": "commands.bossbar.set.visible.success.hidden", + "english_translation": "Custom bossbar %s is now hidden" + }, + { + "key": "stat.minecraft.interact_with_smoker", + "english_translation": "Interactions with Smoker" + }, + { + "key": "createWorld.customize.flat.title", + "english_translation": "Superflat Customization" + }, + { + "key": "telemetry.property.load_time_bootstrap_ms.title", + "english_translation": "Bootstrap Time (Milliseconds)" + }, + { + "key": "item.minecraft.lingering_potion.effect.awkward", + "english_translation": "Awkward Lingering Potion" + }, + { + "key": "block.minecraft.waxed_weathered_copper", + "english_translation": "Waxed Weathered Copper" + }, + { + "key": "argument.player.unknown", + "english_translation": "That player does not exist" + }, + { + "key": "block.minecraft.mangrove_trapdoor", + "english_translation": "Mangrove Trapdoor" + }, + { + "key": "mco.minigame.world.selected", + "english_translation": "Selected minigame:" + }, + { + "key": "item.minecraft.sniffer_spawn_egg", + "english_translation": "Sniffer Spawn Egg" + }, + { + "key": "block.minecraft.banner.half_horizontal_bottom.purple", + "english_translation": "Purple Per Fess Inverted" + }, + { + "key": "block.minecraft.fletching_table", + "english_translation": "Fletching Table" + }, + { + "key": "block.minecraft.banner.stripe_downleft.gray", + "english_translation": "Gray Bend Sinister" + }, + { + "key": "argument.range.swapped", + "english_translation": "Min cannot be bigger than max" + }, + { + "key": "commands.setblock.success", + "english_translation": "Changed the block at %s, %s, %s" + }, + { + "key": "item.minecraft.leather_chestplate", + "english_translation": "Leather Tunic" + }, + { + "key": "item.minecraft.chicken_spawn_egg", + "english_translation": "Chicken Spawn Egg" + }, + { + "key": "item.minecraft.porkchop", + "english_translation": "Raw Porkchop" + }, + { + "key": "attribute.modifier.take.1", + "english_translation": "-%s%% %s" + }, + { + "key": "attribute.modifier.take.0", + "english_translation": "-%s %s" + }, + { + "key": "selectWorld.gameMode.survival.info", + "english_translation": "Explore a mysterious world where you build, collect, craft, and fight monsters." + }, + { + "key": "item.minecraft.flower_banner_pattern.desc", + "english_translation": "Flower Charge" + }, + { + "key": "block.minecraft.granite_slab", + "english_translation": "Granite Slab" + }, + { + "key": "argument.entity.options.x.description", + "english_translation": "x position" + }, + { + "key": "subtitles.entity.skeleton.shoot", + "english_translation": "Skeleton shoots" + }, + { + "key": "chat.coordinates.tooltip", + "english_translation": "Click to teleport" + }, + { + "key": "argument.pos2d.incomplete", + "english_translation": "Incomplete (expected 2 coordinates)" + }, + { + "key": "block.minecraft.banner.triangles_bottom.red", + "english_translation": "Red Base Indented" + }, + { + "key": "item.minecraft.beef", + "english_translation": "Raw Beef" + }, + { + "key": "attribute.modifier.take.2", + "english_translation": "-%s%% %s" + }, + { + "key": "block.minecraft.fern", + "english_translation": "Fern" + }, + { + "key": "item.minecraft.rotten_flesh", + "english_translation": "Rotten Flesh" + }, + { + "key": "stat.minecraft.sleep_in_bed", + "english_translation": "Times Slept in a Bed" + }, + { + "key": "block.minecraft.banner.border.cyan", + "english_translation": "Cyan Bordure" + }, + { + "key": "credits_and_attribution.screen.title", + "english_translation": "Credits and Attribution" + }, + { + "key": "item.minecraft.brewing_stand", + "english_translation": "Brewing Stand" + }, + { + "key": "subtitles.entity.fox.ambient", + "english_translation": "Fox squeaks" + }, + { + "key": "subtitles.entity.generic.drink", + "english_translation": "Sipping" + }, + { + "key": "subtitles.entity.tadpole.hurt", + "english_translation": "Tadpole hurts" + }, + { + "key": "commands.advancement.revoke.many.to.one.success", + "english_translation": "Revoked %s advancements from %s" + }, + { + "key": "item.minecraft.potion", + "english_translation": "Potion" + }, + { + "key": "mco.info", + "english_translation": "Info!" + }, + { + "key": "gamerule.category.player", + "english_translation": "Player" + }, + { + "key": "block.minecraft.blue_wool", + "english_translation": "Blue Wool" + }, + { + "key": "block.minecraft.fire_coral", + "english_translation": "Fire Coral" + }, + { + "key": "advancements.husbandry.ride_a_boat_with_a_goat.description", + "english_translation": "Get in a Boat and float with a Goat" + }, + { + "key": "entity.minecraft.wolf", + "english_translation": "Wolf" } ] \ No newline at end of file diff --git a/extractor/README.md b/extractor/README.md index ac8882b..3d27f1a 100644 --- a/extractor/README.md +++ b/extractor/README.md @@ -12,7 +12,7 @@ From this directory, run the following ./gradlew runServer ``` -This will run the extractor and immediately exit, outputting the files that are listed in the logs. +This will run the extractor and immediately exit, outputting the files that are listed in the logs. Next, run `copy_extractor_output.sh`. This copies the files to `extracted` so that they can be comitted. @@ -20,6 +20,28 @@ Next, run `copy_extractor_output.sh`. This copies the files to `extracted` so th ./copy_extractor_output.sh ``` +## How to update valence to a new version of Minecraft + +The general process should go something like this: +1. Update `gradle.properties` to the new version of Minecraft using https://fabricmc.net/develop +2. Update `src/main/resources/fabric.mod.json` to reference new version of Minecraft +3. Update `PROTOCOL_VERSION` and `MINECRAFT_VERSION` constants in `valence_core/src/lib.rs` +4. Attempt to run `./gradlew runServer` and fix any errors that come up +5. Run `./copy_extractor_output.sh` +6. In `*.toml`s, replace all strings of the old mc version with the new mc version +7. Try all the examples. If they work, you're probably done. + + +If you need to update gradle, running this will automatically update the wrapper to the specified version, and update `gradle/gradle-wrapper.properties`. +```sh +./gradlew wrapper --gradle-version VERSION +``` + +You may also need to update the fabric mappings in the mod. +```sh +./gradlew migrateMappings --mappings "VERSION" +``` + ## Contributing Run `./gradlew genSources` to generate Minecraft Java source files for your IDE. diff --git a/extractor/build.gradle b/extractor/build.gradle index c570c2e..3181fb3 100644 --- a/extractor/build.gradle +++ b/extractor/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '1.0-SNAPSHOT' + id 'fabric-loom' version '1.2-SNAPSHOT' } sourceCompatibility = JavaVersion.VERSION_17 diff --git a/extractor/gradle.properties b/extractor/gradle.properties index b4b8edb..f75e331 100644 --- a/extractor/gradle.properties +++ b/extractor/gradle.properties @@ -2,12 +2,12 @@ org.gradle.jvmargs=-Xmx1G # Fabric Properties # check these on https://fabricmc.net/develop -minecraft_version=1.19.4 -yarn_mappings=1.19.4+build.1 -loader_version=0.14.18 +minecraft_version=1.20.1 +yarn_mappings=1.20.1+build.1 +loader_version=0.14.21 # Mod Properties mod_version=1.0.0 maven_group=dev.00a archives_base_name=valence-extractor # Dependencies -fabric_version=0.76.0+1.19.4 +fabric_version=0.83.0+1.20.1 diff --git a/extractor/gradle/wrapper/gradle-wrapper.properties b/extractor/gradle/wrapper/gradle-wrapper.properties index ae04661..59bc51a 100644 --- a/extractor/gradle/wrapper/gradle-wrapper.properties +++ b/extractor/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/extractor/src/main/java/rs/valence/extractor/DummyPlayerEntity.java b/extractor/src/main/java/rs/valence/extractor/DummyPlayerEntity.java index 9e8a497..ef27b94 100644 --- a/extractor/src/main/java/rs/valence/extractor/DummyPlayerEntity.java +++ b/extractor/src/main/java/rs/valence/extractor/DummyPlayerEntity.java @@ -1,6 +1,7 @@ package rs.valence.extractor; import com.mojang.authlib.GameProfile; +import java.lang.reflect.Field; import net.minecraft.entity.Entity; import net.minecraft.entity.data.DataTracker; import net.minecraft.entity.player.PlayerEntity; diff --git a/extractor/src/main/java/rs/valence/extractor/DummyWorld.java b/extractor/src/main/java/rs/valence/extractor/DummyWorld.java index 5e3186b..a803132 100644 --- a/extractor/src/main/java/rs/valence/extractor/DummyWorld.java +++ b/extractor/src/main/java/rs/valence/extractor/DummyWorld.java @@ -31,7 +31,7 @@ import net.minecraft.world.entity.EntityLookup; import net.minecraft.world.event.GameEvent; import net.minecraft.world.tick.QueryableTickScheduler; import org.jetbrains.annotations.Nullable; - +import java.lang.reflect.Field; import java.util.List; import java.util.function.Supplier; @@ -159,7 +159,7 @@ public class DummyWorld extends World { @Override public FeatureSet getEnabledFeatures() { - return FeatureSet.of(FeatureFlags.VANILLA, FeatureFlags.BUNDLE, FeatureFlags.UPDATE_1_20); + return FeatureSet.of(FeatureFlags.VANILLA, FeatureFlags.BUNDLE); } @Override diff --git a/extractor/src/main/java/rs/valence/extractor/Main.java b/extractor/src/main/java/rs/valence/extractor/Main.java index b314331..389b8c0 100644 --- a/extractor/src/main/java/rs/valence/extractor/Main.java +++ b/extractor/src/main/java/rs/valence/extractor/Main.java @@ -1,10 +1,12 @@ package rs.valence.extractor; +import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.JsonElement; import io.netty.handler.codec.EncoderException; import net.fabricmc.api.ModInitializer; import net.fabricmc.fabric.api.event.lifecycle.v1.ServerLifecycleEvents; +import net.minecraft.nbt.NbtCompound; import net.minecraft.nbt.NbtIo; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -13,6 +15,7 @@ import sun.reflect.ReflectionFactory; import java.io.FileWriter; import java.io.IOException; +import java.lang.reflect.Constructor; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; diff --git a/extractor/src/main/java/rs/valence/extractor/extractors/Blocks.java b/extractor/src/main/java/rs/valence/extractor/extractors/Blocks.java index b514ea2..75c7541 100644 --- a/extractor/src/main/java/rs/valence/extractor/extractors/Blocks.java +++ b/extractor/src/main/java/rs/valence/extractor/extractors/Blocks.java @@ -4,8 +4,13 @@ import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import net.minecraft.registry.Registries; +import net.minecraft.state.property.Property; +import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.entity.BlockEntityType; import net.minecraft.item.VerticallyAttachableBlockItem; import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.Box; import net.minecraft.world.EmptyBlockView; import rs.valence.extractor.Main; import rs.valence.extractor.mixin.ExposeWallBlock; @@ -69,7 +74,7 @@ public class Blocks implements Main.Extractor { stateJson.addProperty("id", id); stateJson.addProperty("luminance", state.getLuminance()); stateJson.addProperty("opaque", state.isOpaque()); - stateJson.addProperty("replaceable", state.getMaterial().isReplaceable()); + stateJson.addProperty("replaceable", state.isReplaceable()); if (block.getDefaultState().equals(state)) { blockJson.addProperty("default_state_id", id); diff --git a/extractor/src/main/java/rs/valence/extractor/extractors/Enchants.java b/extractor/src/main/java/rs/valence/extractor/extractors/Enchants.java index 8bf9bdb..113b509 100644 --- a/extractor/src/main/java/rs/valence/extractor/extractors/Enchants.java +++ b/extractor/src/main/java/rs/valence/extractor/extractors/Enchants.java @@ -3,6 +3,7 @@ package rs.valence.extractor.extractors; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; +import net.minecraft.enchantment.Enchantment; import net.minecraft.registry.Registries; import rs.valence.extractor.Main; diff --git a/extractor/src/main/java/rs/valence/extractor/extractors/Entities.java b/extractor/src/main/java/rs/valence/extractor/extractors/Entities.java index f0002a9..23544eb 100644 --- a/extractor/src/main/java/rs/valence/extractor/extractors/Entities.java +++ b/extractor/src/main/java/rs/valence/extractor/extractors/Entities.java @@ -8,6 +8,7 @@ import net.minecraft.entity.EntityPose; import net.minecraft.entity.EntityType; import net.minecraft.entity.data.DataTracker; import net.minecraft.entity.data.TrackedData; +import net.minecraft.entity.data.TrackedDataHandler; import net.minecraft.entity.data.TrackedDataHandlerRegistry; import net.minecraft.entity.passive.CatVariant; import net.minecraft.entity.passive.FrogVariant; @@ -17,7 +18,9 @@ import net.minecraft.particle.ParticleEffect; import net.minecraft.registry.Registries; import net.minecraft.registry.entry.RegistryEntry; import net.minecraft.text.Text; +import net.minecraft.util.Identifier; import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.Box; import net.minecraft.util.math.EulerAngle; import net.minecraft.util.math.GlobalPos; import net.minecraft.village.VillagerData; @@ -30,9 +33,10 @@ import rs.valence.extractor.DummyPlayerEntity; import rs.valence.extractor.DummyWorld; import rs.valence.extractor.Main; import rs.valence.extractor.Main.Pair; - +import java.lang.reflect.Field; import java.lang.reflect.ParameterizedType; import java.util.*; +import java.util.Map.Entry; public class Entities implements Main.Extractor { public Entities() { diff --git a/extractor/src/main/java/rs/valence/extractor/extractors/Items.java b/extractor/src/main/java/rs/valence/extractor/extractors/Items.java index ed745ba..cd79751 100644 --- a/extractor/src/main/java/rs/valence/extractor/extractors/Items.java +++ b/extractor/src/main/java/rs/valence/extractor/extractors/Items.java @@ -3,6 +3,10 @@ package rs.valence.extractor.extractors; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; +import com.mojang.datafixers.util.Pair; +import net.minecraft.entity.effect.StatusEffectInstance; +import net.minecraft.item.FoodComponent; +import net.minecraft.item.Item; import net.minecraft.registry.Registries; import rs.valence.extractor.Main; diff --git a/extractor/src/main/java/rs/valence/extractor/extractors/Misc.java b/extractor/src/main/java/rs/valence/extractor/extractors/Misc.java index f03bbd9..e92b17d 100644 --- a/extractor/src/main/java/rs/valence/extractor/extractors/Misc.java +++ b/extractor/src/main/java/rs/valence/extractor/extractors/Misc.java @@ -4,14 +4,22 @@ import com.google.gson.JsonElement; import com.google.gson.JsonObject; import net.minecraft.entity.EntityPose; import net.minecraft.entity.EntityStatuses; +import net.minecraft.entity.EntityType; import net.minecraft.entity.data.TrackedDataHandler; import net.minecraft.entity.data.TrackedDataHandlerRegistry; +import net.minecraft.entity.decoration.painting.PaintingVariant; +import net.minecraft.entity.passive.CatVariant; +import net.minecraft.entity.passive.FrogVariant; import net.minecraft.entity.passive.SnifferEntity; +import net.minecraft.entity.passive.SnifferEntity.State; import net.minecraft.network.packet.s2c.play.EntityAnimationS2CPacket; +import net.minecraft.particle.ParticleType; import net.minecraft.registry.Registries; import net.minecraft.util.math.Direction; +import net.minecraft.village.VillagerProfession; +import net.minecraft.village.VillagerType; import rs.valence.extractor.Main; - +import java.lang.reflect.Field; import java.lang.reflect.Modifier; import java.util.Locale; diff --git a/extractor/src/main/java/rs/valence/extractor/extractors/Packets.java b/extractor/src/main/java/rs/valence/extractor/extractors/Packets.java index 9f1ae64..0e32f26 100644 --- a/extractor/src/main/java/rs/valence/extractor/extractors/Packets.java +++ b/extractor/src/main/java/rs/valence/extractor/extractors/Packets.java @@ -3,6 +3,7 @@ package rs.valence.extractor.extractors; import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; +import it.unimi.dsi.fastutil.ints.Int2ObjectMap; import net.minecraft.network.NetworkSide; import net.minecraft.network.NetworkState; import rs.valence.extractor.Main; diff --git a/extractor/src/main/java/rs/valence/extractor/extractors/Sounds.java b/extractor/src/main/java/rs/valence/extractor/extractors/Sounds.java index a204be7..0c78419 100644 --- a/extractor/src/main/java/rs/valence/extractor/extractors/Sounds.java +++ b/extractor/src/main/java/rs/valence/extractor/extractors/Sounds.java @@ -4,6 +4,7 @@ import com.google.gson.JsonArray; import com.google.gson.JsonElement; import com.google.gson.JsonObject; import net.minecraft.registry.Registries; +import net.minecraft.sound.SoundEvent; import rs.valence.extractor.Main; public class Sounds implements Main.Extractor { diff --git a/extractor/src/main/java/rs/valence/extractor/extractors/Tags.java b/extractor/src/main/java/rs/valence/extractor/extractors/Tags.java index d35394f..80d0364 100644 --- a/extractor/src/main/java/rs/valence/extractor/extractors/Tags.java +++ b/extractor/src/main/java/rs/valence/extractor/extractors/Tags.java @@ -24,6 +24,7 @@ import net.minecraft.registry.entry.RegistryEntryList; import net.minecraft.registry.SerializableRegistries; import java.util.Map; +import java.util.Map.Entry; import java.util.HashMap; import java.util.stream.Collectors; diff --git a/extractor/src/main/java/rs/valence/extractor/extractors/TranslationKeys.java b/extractor/src/main/java/rs/valence/extractor/extractors/TranslationKeys.java index a44ee34..40ad6d7 100644 --- a/extractor/src/main/java/rs/valence/extractor/extractors/TranslationKeys.java +++ b/extractor/src/main/java/rs/valence/extractor/extractors/TranslationKeys.java @@ -8,6 +8,7 @@ import rs.valence.extractor.Main; import java.lang.reflect.Field; import java.util.Map; +import java.util.Map.Entry; public class TranslationKeys implements Main.Extractor { diff --git a/extractor/src/main/resources/fabric.mod.json b/extractor/src/main/resources/fabric.mod.json index c975a17..89a8967 100644 --- a/extractor/src/main/resources/fabric.mod.json +++ b/extractor/src/main/resources/fabric.mod.json @@ -22,10 +22,10 @@ ], "depends": { "fabricloader": ">=0.14.6", - "minecraft": "~1.19", + "minecraft": "~1.20.1", "java": ">=17" }, "suggests": { "another-mod": "*" } -} +} \ No newline at end of file